body {
  font-family: 'Azeret Mono', monospace;
}
.display-1 {
  font-family: 'Azeret Mono', monospace;
  font-size: 4.6rem;
  line-height: 70px;
  letter-spacing: 0.08em;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Azeret Mono', monospace;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Azeret Mono', monospace;
  font-size: 20px;
  line-height: 34px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Azeret Mono', monospace;
  font-size: 28px;
  line-height: 44px;
  letter-spacing: 0.08em;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Azeret Mono', monospace;
  font-size: 20px;
  line-height: 34px;
}
.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: 80px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 80px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 80px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 80px;
}
.bg-primary {
  background-color: #191919 !important;
}
.bg-success {
  background-color: #464646 !important;
}
.bg-info {
  background-color: #191919 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #191919 !important;
  border-color: #191919 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e8ebe8 !important;
  border-color: #e8ebe8 !important;
  color: #637163 !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: #bac3ba !important;
  border-color: #bac3ba !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #637163 !important;
  background-color: #bac3ba !important;
  border-color: #bac3ba !important;
}
.btn-info,
.btn-info:active {
  background-color: #191919 !important;
  border-color: #191919 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #464646 !important;
  border-color: #464646 !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: #1b1b1b !important;
  border-color: #1b1b1b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1b1b1b !important;
  border-color: #1b1b1b !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: #191919 !important;
  border-color: #191919 !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: #191919;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #191919 !important;
  border-color: #191919 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e8ebe8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bac3ba !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #637163 !important;
  background-color: #e8ebe8 !important;
  border-color: #e8ebe8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #191919;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !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: #191919 !important;
  border-color: #191919 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #464646;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1b1b1b !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: #464646 !important;
  border-color: #464646 !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: #191919;
}
.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: #191919 !important;
  border-color: #191919 !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: #191919 !important;
}
.text-secondary {
  color: #e8ebe8 !important;
}
.text-success {
  color: #464646 !important;
}
.text-info {
  color: #191919 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #191919 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b1bcb1 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #131313 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !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-color: 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: #191919;
}
.nav-tabs .nav-link:not(.active) {
  color: #191919;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #191919;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #191919;
  border-color: #191919;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #191919;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbcbcb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b9b9b9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cbcbcb;
}
.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: 'Azeret Mono', monospace;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control::-webkit-input-placeholder {
  font-family: 'Azeret Mono', monospace;
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
}
.form-control::-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #191919;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #191919;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #191919;
}
.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: #191919;
  border-bottom-color: #191919;
}
.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: #191919 !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: #e8ebe8 !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='%23191919' %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-sLQJNl6WCd .navbar-dropdown {
  position: relative !important;
}
.cid-sLQJNl6WCd .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-sLQJNl6WCd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-sLQJNl6WCd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sLQJNl6WCd .dropdown-item:hover,
.cid-sLQJNl6WCd .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-sLQJNl6WCd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sLQJNl6WCd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sLQJNl6WCd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sLQJNl6WCd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sLQJNl6WCd .nav-link {
  position: relative;
}
.cid-sLQJNl6WCd .container {
  display: flex;
  margin: auto;
}
.cid-sLQJNl6WCd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sLQJNl6WCd .nav-item:focus,
.cid-sLQJNl6WCd .nav-link:focus {
  outline: none;
}
.cid-sLQJNl6WCd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sLQJNl6WCd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLQJNl6WCd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sLQJNl6WCd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sLQJNl6WCd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLQJNl6WCd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLQJNl6WCd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-sLQJNl6WCd .navbar.opened {
  transition: all 0.3s;
}
.cid-sLQJNl6WCd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sLQJNl6WCd .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-sLQJNl6WCd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sLQJNl6WCd .navbar.collapsed {
  justify-content: center;
}
.cid-sLQJNl6WCd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sLQJNl6WCd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sLQJNl6WCd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sLQJNl6WCd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sLQJNl6WCd .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-sLQJNl6WCd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sLQJNl6WCd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sLQJNl6WCd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sLQJNl6WCd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sLQJNl6WCd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sLQJNl6WCd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sLQJNl6WCd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sLQJNl6WCd .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-sLQJNl6WCd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sLQJNl6WCd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sLQJNl6WCd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sLQJNl6WCd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sLQJNl6WCd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sLQJNl6WCd .navbar.navbar-short {
  min-height: 60px;
}
.cid-sLQJNl6WCd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sLQJNl6WCd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sLQJNl6WCd .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sLQJNl6WCd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sLQJNl6WCd .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-sLQJNl6WCd .navbar-brand {
    width: 85%;
  }
}
.cid-sLQJNl6WCd .dropdown-item.active,
.cid-sLQJNl6WCd .dropdown-item:active {
  background-color: transparent;
}
.cid-sLQJNl6WCd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sLQJNl6WCd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sLQJNl6WCd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sLQJNl6WCd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-sLQJNl6WCd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sLQJNl6WCd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLQJNl6WCd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sLQJNl6WCd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sLQJNl6WCd button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sLQJNl6WCd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-sLQJNl6WCd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLQJNl6WCd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLQJNl6WCd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLQJNl6WCd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLQJNl6WCd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLQJNl6WCd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLQJNl6WCd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLQJNl6WCd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLQJNl6WCd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sLQJNl6WCd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sLQJNl6WCd .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-sLQJNl6WCd .navbar {
    height: 70px;
  }
  .cid-sLQJNl6WCd .navbar.opened {
    height: auto;
  }
  .cid-sLQJNl6WCd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMyEBEM0DU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e8ebe8;
}
.cid-sMyEBEM0DU .header-title {
  height: 100%;
  position: relative;
  width: 180%;
  padding: 20% 45% 20% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-sMyEBEM0DU .header-button {
  width: 100%;
  height: 100%;
}
.cid-sMyEBEM0DU .header-button a {
  width: 300px;
  height: 76px;
}
.cid-sMyEBEM0DU .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-sMyEBEM0DU .header-ml {
  margin-left: -40px;
}
@media (max-width: 992px) {
  .cid-sMyEBEM0DU .header-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .cid-sMyEBEM0DU .header-ml {
    margin-left: 0;
  }
  .cid-sMyEBEM0DU .header-title {
    width: 100%;
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .cid-sMyEBEM0DU .header-button a {
    width: 200px;
    height: 60px;
  }
}
.cid-sMyEBEM0DU .mbr-text {
  text-align: left;
}
.cid-tqDwHJwwbu .navbar-dropdown {
  position: relative !important;
}
.cid-tqDwHJwwbu .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-tqDwHJwwbu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tqDwHJwwbu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqDwHJwwbu .dropdown-item:hover,
.cid-tqDwHJwwbu .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tqDwHJwwbu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqDwHJwwbu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqDwHJwwbu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqDwHJwwbu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqDwHJwwbu .nav-link {
  position: relative;
}
.cid-tqDwHJwwbu .container {
  display: flex;
  margin: auto;
}
.cid-tqDwHJwwbu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqDwHJwwbu .nav-item:focus,
.cid-tqDwHJwwbu .nav-link:focus {
  outline: none;
}
.cid-tqDwHJwwbu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqDwHJwwbu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqDwHJwwbu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqDwHJwwbu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqDwHJwwbu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqDwHJwwbu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqDwHJwwbu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tqDwHJwwbu .navbar.opened {
  transition: all 0.3s;
}
.cid-tqDwHJwwbu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqDwHJwwbu .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tqDwHJwwbu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqDwHJwwbu .navbar.collapsed {
  justify-content: center;
}
.cid-tqDwHJwwbu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqDwHJwwbu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqDwHJwwbu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqDwHJwwbu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqDwHJwwbu .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-tqDwHJwwbu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqDwHJwwbu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqDwHJwwbu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqDwHJwwbu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqDwHJwwbu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqDwHJwwbu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqDwHJwwbu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqDwHJwwbu .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-tqDwHJwwbu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqDwHJwwbu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqDwHJwwbu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tqDwHJwwbu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqDwHJwwbu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqDwHJwwbu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqDwHJwwbu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqDwHJwwbu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqDwHJwwbu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tqDwHJwwbu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqDwHJwwbu .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tqDwHJwwbu .navbar-brand {
    width: 85%;
  }
}
.cid-tqDwHJwwbu .dropdown-item.active,
.cid-tqDwHJwwbu .dropdown-item:active {
  background-color: transparent;
}
.cid-tqDwHJwwbu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqDwHJwwbu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqDwHJwwbu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqDwHJwwbu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tqDwHJwwbu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqDwHJwwbu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqDwHJwwbu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqDwHJwwbu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqDwHJwwbu button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqDwHJwwbu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tqDwHJwwbu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqDwHJwwbu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqDwHJwwbu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqDwHJwwbu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqDwHJwwbu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqDwHJwwbu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqDwHJwwbu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqDwHJwwbu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqDwHJwwbu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tqDwHJwwbu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqDwHJwwbu .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-tqDwHJwwbu .navbar {
    height: 70px;
  }
  .cid-tqDwHJwwbu .navbar.opened {
    height: auto;
  }
  .cid-tqDwHJwwbu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqDwXtVG0E {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tqDwXtVG0E .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-tqDwXtVG0E .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tqDwXtVG0E .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-tqDwXtVG0E .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-tqDyKwbaoi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tqDyKwbaoi .row {
  flex-direction: row-reverse;
}
.cid-tqDyKwbaoi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1.01);
}
.cid-tqDyKwbaoi p {
  padding: 0 1rem;
}
.cid-tqDyKwbaoi .container-fluid {
  padding: 0;
}
.cid-tqDyKwbaoi .col-12 {
  padding: 0;
}
.cid-tqDyKwbaoi .image-wrapper {
  overflow: hidden;
  height: 800px;
}
.cid-tqDyKwbaoi .image-wrapper:hover img {
  transform: scale(1.04);
}
@media (max-width: 992px) {
  .cid-tqDyKwbaoi .image-wrapper {
    height: 400px;
  }
}
.cid-tqE2tYfpE7 .navbar-dropdown {
  position: relative !important;
}
.cid-tqE2tYfpE7 .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-tqE2tYfpE7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tqE2tYfpE7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tqE2tYfpE7 .dropdown-item:hover,
.cid-tqE2tYfpE7 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tqE2tYfpE7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tqE2tYfpE7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tqE2tYfpE7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tqE2tYfpE7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tqE2tYfpE7 .nav-link {
  position: relative;
}
.cid-tqE2tYfpE7 .container {
  display: flex;
  margin: auto;
}
.cid-tqE2tYfpE7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tqE2tYfpE7 .nav-item:focus,
.cid-tqE2tYfpE7 .nav-link:focus {
  outline: none;
}
.cid-tqE2tYfpE7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tqE2tYfpE7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqE2tYfpE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tqE2tYfpE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tqE2tYfpE7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqE2tYfpE7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqE2tYfpE7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tqE2tYfpE7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tqE2tYfpE7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tqE2tYfpE7 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tqE2tYfpE7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqE2tYfpE7 .navbar.collapsed {
  justify-content: center;
}
.cid-tqE2tYfpE7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqE2tYfpE7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tqE2tYfpE7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqE2tYfpE7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqE2tYfpE7 .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-tqE2tYfpE7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqE2tYfpE7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tqE2tYfpE7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tqE2tYfpE7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqE2tYfpE7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqE2tYfpE7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqE2tYfpE7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqE2tYfpE7 .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-tqE2tYfpE7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqE2tYfpE7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqE2tYfpE7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tqE2tYfpE7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tqE2tYfpE7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tqE2tYfpE7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tqE2tYfpE7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tqE2tYfpE7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tqE2tYfpE7 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tqE2tYfpE7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqE2tYfpE7 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tqE2tYfpE7 .navbar-brand {
    width: 85%;
  }
}
.cid-tqE2tYfpE7 .dropdown-item.active,
.cid-tqE2tYfpE7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tqE2tYfpE7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqE2tYfpE7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqE2tYfpE7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqE2tYfpE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tqE2tYfpE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqE2tYfpE7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqE2tYfpE7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tqE2tYfpE7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tqE2tYfpE7 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tqE2tYfpE7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tqE2tYfpE7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tqE2tYfpE7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqE2tYfpE7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tqE2tYfpE7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tqE2tYfpE7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqE2tYfpE7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tqE2tYfpE7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tqE2tYfpE7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tqE2tYfpE7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tqE2tYfpE7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tqE2tYfpE7 .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-tqE2tYfpE7 .navbar {
    height: 70px;
  }
  .cid-tqE2tYfpE7 .navbar.opened {
    height: auto;
  }
  .cid-tqE2tYfpE7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGoahfdyUG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGoahfdyUG .mbr-link p {
  border-bottom: 2px #191919 solid;
}
.cid-tGoahfdyUG .mbr-link p {
  display: inline;
  padding-bottom: 2px;
}
.cid-tGoahfdyUG .mbr-link p span {
  margin-left: 12px;
}
.cid-tGoahfdyUG .item-img {
  overflow: hidden;
}
.cid-tGoahfdyUG .item-img img {
  transition: all .5s ease;
}
.cid-tGoahfdyUG img,
.cid-tGoahfdyUG .item-img {
  width: 100%;
}
.cid-tGoahfdyUG .mbr-section-subtitle {
  margin-bottom: 80px;
  text-align: left;
  color: #464646;
}
.cid-tGoahfdyUG .item:focus,
.cid-tGoahfdyUG span:focus {
  outline: none;
}
.cid-tGoahfdyUG .item {
  cursor: pointer;
  margin-bottom: 100px;
}
.cid-tGoahfdyUG .item-wrapper:nth-child(odd) {
  margin-right: 30px;
}
.cid-tGoahfdyUG .item-wrapper:nth-child(even) {
  margin-left: 30px;
}
.cid-tGoahfdyUG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8ebe8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGoahfdyUG .item-wrapper .item-content {
    padding-top: 24px;
  }
  .cid-tGoahfdyUG .item-wrapper .item-footer {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .cid-tGoahfdyUG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGoahfdyUG .item-wrapper .mbr-link {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .cid-tGoahfdyUG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGoahfdyUG .item-wrapper:hover .item-img img {
  transform: scale3d(1.1, 1.1, 1);
}
.cid-tGoahfdyUG .item-wrapper:hover .item-title,
.cid-tGoahfdyUG .item-wrapper:hover .mbr-link p {
  opacity: .85;
}
@media (max-width: 768px) {
  .cid-tGoahfdyUG .item {
    margin-bottom: 80px;
  }
  .cid-tGoahfdyUG .item-wrapper {
    margin-bottom: 2px;
  }
  .cid-tGoahfdyUG .item-wrapper:nth-child(odd) {
    margin-right: 0;
  }
  .cid-tGoahfdyUG .item-wrapper:nth-child(even) {
    margin-left: 0;
  }
}
.cid-tGoahfdyUG .mbr-text,
.cid-tGoahfdyUG .mbr-section-btn {
  color: #464646;
}
.cid-tqE2tXxfbV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tqE2tXxfbV .row {
  flex-direction: row-reverse;
}
.cid-tqE2tXxfbV img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1.01);
}
.cid-tqE2tXxfbV p {
  padding: 0 1rem;
}
.cid-tqE2tXxfbV .container-fluid {
  padding: 0;
}
.cid-tqE2tXxfbV .col-12 {
  padding: 0;
}
.cid-tqE2tXxfbV .image-wrapper {
  overflow: hidden;
  height: 800px;
}
.cid-tqE2tXxfbV .image-wrapper:hover img {
  transform: scale(1.04);
}
@media (max-width: 992px) {
  .cid-tqE2tXxfbV .image-wrapper {
    height: 400px;
  }
}
.cid-tqE2tY3hGu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tqE2tY3hGu .article-wrapper {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.cid-tqE2tY3hGu .article-btn {
  width: 430px;
  height: 74px;
}
@media (max-width: 991px) {
  .cid-tqE2tY3hGu .article-wrapper {
    display: block;
  }
  .cid-tqE2tY3hGu .article-btn {
    margin: 10px 0 0;
  }
  .cid-tqE2tY3hGu .mbr-section-title {
    text-align: center;
  }
  .cid-tqE2tY3hGu .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .cid-tqE2tY3hGu .article-btn {
    width: 300px;
  }
}
@media (max-width: 425px) {
  .cid-tqE2tY3hGu .article-btn {
    width: 220px;
    height: 60px;
    margin: 0;
  }
}
@media (max-width: 320px) {
  .cid-tqE2tY3hGu .article-btn {
    width: 177px;
    height: 50px;
  }
}
.cid-tGo7d0pyO3 .navbar-dropdown {
  position: relative !important;
}
.cid-tGo7d0pyO3 .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-tGo7d0pyO3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGo7d0pyO3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGo7d0pyO3 .dropdown-item:hover,
.cid-tGo7d0pyO3 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGo7d0pyO3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGo7d0pyO3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGo7d0pyO3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGo7d0pyO3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGo7d0pyO3 .nav-link {
  position: relative;
}
.cid-tGo7d0pyO3 .container {
  display: flex;
  margin: auto;
}
.cid-tGo7d0pyO3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGo7d0pyO3 .nav-item:focus,
.cid-tGo7d0pyO3 .nav-link:focus {
  outline: none;
}
.cid-tGo7d0pyO3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGo7d0pyO3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGo7d0pyO3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGo7d0pyO3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGo7d0pyO3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGo7d0pyO3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGo7d0pyO3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGo7d0pyO3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGo7d0pyO3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGo7d0pyO3 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGo7d0pyO3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGo7d0pyO3 .navbar.collapsed {
  justify-content: center;
}
.cid-tGo7d0pyO3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGo7d0pyO3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGo7d0pyO3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGo7d0pyO3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGo7d0pyO3 .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-tGo7d0pyO3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGo7d0pyO3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGo7d0pyO3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGo7d0pyO3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGo7d0pyO3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGo7d0pyO3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGo7d0pyO3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGo7d0pyO3 .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-tGo7d0pyO3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGo7d0pyO3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGo7d0pyO3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGo7d0pyO3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGo7d0pyO3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGo7d0pyO3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGo7d0pyO3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGo7d0pyO3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGo7d0pyO3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGo7d0pyO3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGo7d0pyO3 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGo7d0pyO3 .navbar-brand {
    width: 85%;
  }
}
.cid-tGo7d0pyO3 .dropdown-item.active,
.cid-tGo7d0pyO3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGo7d0pyO3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGo7d0pyO3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGo7d0pyO3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGo7d0pyO3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGo7d0pyO3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGo7d0pyO3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGo7d0pyO3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGo7d0pyO3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGo7d0pyO3 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGo7d0pyO3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGo7d0pyO3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGo7d0pyO3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGo7d0pyO3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGo7d0pyO3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGo7d0pyO3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGo7d0pyO3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGo7d0pyO3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGo7d0pyO3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGo7d0pyO3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGo7d0pyO3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGo7d0pyO3 .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-tGo7d0pyO3 .navbar {
    height: 70px;
  }
  .cid-tGo7d0pyO3 .navbar.opened {
    height: auto;
  }
  .cid-tGo7d0pyO3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGo7cZtg9g {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGo7cZtg9g .article-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 60px 0 200px;
}
@media (max-width: 992px) {
  .cid-tGo7cZtg9g .article-wrap {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tGo7cZtg9g .article-wrap {
    display: block;
    margin: 40px 0 100px;
  }
}
@media (max-width: 375px) {
  .cid-tGo7cZtg9g .article-wrap {
    display: block;
    margin: 20px 0 100px;
  }
}
.cid-tGo7cZKmnt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tGo7cZKmnt .row {
  flex-direction: row-reverse;
}
.cid-tGo7cZKmnt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1.01);
}
.cid-tGo7cZKmnt p {
  padding: 0 1rem;
}
.cid-tGo7cZKmnt .container-fluid {
  padding: 0;
}
.cid-tGo7cZKmnt .col-12 {
  padding: 0;
}
.cid-tGo7cZKmnt .image-wrapper {
  overflow: hidden;
  height: 800px;
}
.cid-tGo7cZKmnt .image-wrapper:hover img {
  transform: scale(1.04);
}
@media (max-width: 992px) {
  .cid-tGo7cZKmnt .image-wrapper {
    height: 400px;
  }
}
.cid-tGoblA7BLV .navbar-dropdown {
  position: relative !important;
}
.cid-tGoblA7BLV .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-tGoblA7BLV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGoblA7BLV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGoblA7BLV .dropdown-item:hover,
.cid-tGoblA7BLV .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGoblA7BLV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGoblA7BLV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGoblA7BLV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGoblA7BLV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGoblA7BLV .nav-link {
  position: relative;
}
.cid-tGoblA7BLV .container {
  display: flex;
  margin: auto;
}
.cid-tGoblA7BLV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGoblA7BLV .nav-item:focus,
.cid-tGoblA7BLV .nav-link:focus {
  outline: none;
}
.cid-tGoblA7BLV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGoblA7BLV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGoblA7BLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGoblA7BLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGoblA7BLV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGoblA7BLV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGoblA7BLV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGoblA7BLV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGoblA7BLV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGoblA7BLV .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGoblA7BLV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGoblA7BLV .navbar.collapsed {
  justify-content: center;
}
.cid-tGoblA7BLV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGoblA7BLV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGoblA7BLV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGoblA7BLV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGoblA7BLV .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-tGoblA7BLV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGoblA7BLV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGoblA7BLV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGoblA7BLV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGoblA7BLV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGoblA7BLV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGoblA7BLV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGoblA7BLV .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-tGoblA7BLV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGoblA7BLV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGoblA7BLV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGoblA7BLV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGoblA7BLV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGoblA7BLV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGoblA7BLV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGoblA7BLV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGoblA7BLV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGoblA7BLV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGoblA7BLV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGoblA7BLV .navbar-brand {
    width: 85%;
  }
}
.cid-tGoblA7BLV .dropdown-item.active,
.cid-tGoblA7BLV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGoblA7BLV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGoblA7BLV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGoblA7BLV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGoblA7BLV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGoblA7BLV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGoblA7BLV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGoblA7BLV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGoblA7BLV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGoblA7BLV button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGoblA7BLV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGoblA7BLV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGoblA7BLV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoblA7BLV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGoblA7BLV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGoblA7BLV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoblA7BLV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGoblA7BLV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGoblA7BLV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGoblA7BLV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGoblA7BLV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGoblA7BLV .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-tGoblA7BLV .navbar {
    height: 70px;
  }
  .cid-tGoblA7BLV .navbar.opened {
    height: auto;
  }
  .cid-tGoblA7BLV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGp4rbRMNp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGp4rbRMNp .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #000000;
}
.cid-tGp4rbRMNp .image-wrap img {
  transition: all .5s ease;
}
.cid-tGp4rbRMNp .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGp4rbRMNp .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGp4rbRMNp .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGp4rbRMNp .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGobDjPRPe {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGobDjPRPe .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGobDjPRPe .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGobDjPRPe .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGobDjPRPe .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGobDjPRPe .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGobDjPRPe .mbr-text,
.cid-tGobDjPRPe .mbr-section-btn {
  color: #626462;
}
.cid-tRQpYMkSCu {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8ebe8;
}
.cid-tRQpYMkSCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQpYMkSCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRQpYMkSCu .container-fluid {
  padding: 0 0 0 100px;
}
@media (max-width: 1440px) {
  .cid-tRQpYMkSCu .container-fluid {
    padding: 0 0 0 45px;
  }
}
@media (max-width: 992px) {
  .cid-tRQpYMkSCu .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tRQpYMkSCu .container {
    padding: 0 30px;
  }
}
.cid-tRQpYMkSCu .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tRQpYMkSCu .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tRQpYMkSCu .box .mbr-media img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRQpYMkSCu .box .mbr-media img {
    height: 350px;
  }
}
.cid-tRQpYMkSCu .box .mbr-media .mbr-iconfont {
  color: #000000;
}
.cid-tRQpYMkSCu .mbr-media {
  position: relative;
}
.cid-tRQpYMkSCu .mbr-media img {
  width: 200vh;
  object-fit: cover;
}
.cid-tRQpYMkSCu a:hover {
  background-image: none !important;
}
.cid-tRQpYMkSCu .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tRQpYMkSCu .icon-wrap:hover {
  cursor: pointer;
}
.cid-tRQpYMkSCu .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-tRQpYMkSCu .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tRQpYMkSCu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tRQpYMkSCu .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tRQpYMkSCu .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tRQpYMkSCu .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRQpYMkSCu .mbr-section-title {
  color: #ffffff;
}
.cid-tGoWz0vx77 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGoWz0vx77 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGoWz0vx77 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGoWz0vx77 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGoWz0vx77 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGoWz0vx77 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGoWz0vx77 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGoWz0vx77 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGoWz0vx77 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGoWz0vx77 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGoWz0vx77 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGoWz0vx77 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGoWz0vx77 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGoWz0vx77 .mbr-gallery-filter ul {
  display: block;
}
.cid-tGoWz0vx77 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGoWz0vx77 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGoWz0vx77 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGoWz0vx77 .mbr-gallery-filter li.active::after,
.cid-tGoWz0vx77 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGoWz0vx77 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGoWz0vx77 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGoWz0vx77 .icon-focus:before {
  content: '\e95e';
}
.cid-tGoWz0vx77 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGoWz0vx77 .mbr-section-title {
  margin: 0;
}
.cid-tGoWz0vx77 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGoWz0vx77 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGoceAyDNT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGoceAyDNT .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGoceAyDNT .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGoceAyDNT .article-list li p {
  margin-bottom: 0;
}
.cid-tGoceAyDNT .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGoceAyDNT .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGoceAyDNT .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGoceAyDNT .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGoceAyDNT .mbr-text {
  color: #626462;
}
.cid-tGof30vL1E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGof30vL1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGof30vL1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGof30vL1E .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGof30vL1E .container-fluid {
    padding: 0;
  }
}
.cid-tGof30vL1E .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGof30vL1E .container {
    padding: 0 20px;
  }
}
.cid-tGof30vL1E .row {
  justify-content: center;
}
.cid-tGof30vL1E .card {
  padding: 0;
}
.cid-tGof30vL1E .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGof30vL1E .card img {
    height: 300px;
  }
}
.cid-tGof30vL1E .row.cards {
  margin: 0;
}
.cid-tGof30vL1E .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGof30vL1E .row.cards img {
    height: 300px;
  }
}
.cid-tGpeLFPXWV .navbar-dropdown {
  position: relative !important;
}
.cid-tGpeLFPXWV .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-tGpeLFPXWV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGpeLFPXWV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGpeLFPXWV .dropdown-item:hover,
.cid-tGpeLFPXWV .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGpeLFPXWV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGpeLFPXWV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGpeLFPXWV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGpeLFPXWV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGpeLFPXWV .nav-link {
  position: relative;
}
.cid-tGpeLFPXWV .container {
  display: flex;
  margin: auto;
}
.cid-tGpeLFPXWV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGpeLFPXWV .nav-item:focus,
.cid-tGpeLFPXWV .nav-link:focus {
  outline: none;
}
.cid-tGpeLFPXWV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGpeLFPXWV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGpeLFPXWV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGpeLFPXWV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGpeLFPXWV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGpeLFPXWV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGpeLFPXWV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGpeLFPXWV .navbar.opened {
  transition: all 0.3s;
}
.cid-tGpeLFPXWV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGpeLFPXWV .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGpeLFPXWV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGpeLFPXWV .navbar.collapsed {
  justify-content: center;
}
.cid-tGpeLFPXWV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGpeLFPXWV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGpeLFPXWV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGpeLFPXWV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGpeLFPXWV .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-tGpeLFPXWV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGpeLFPXWV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGpeLFPXWV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGpeLFPXWV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGpeLFPXWV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGpeLFPXWV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGpeLFPXWV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGpeLFPXWV .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-tGpeLFPXWV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGpeLFPXWV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGpeLFPXWV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGpeLFPXWV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGpeLFPXWV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGpeLFPXWV .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGpeLFPXWV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGpeLFPXWV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGpeLFPXWV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGpeLFPXWV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGpeLFPXWV .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGpeLFPXWV .navbar-brand {
    width: 85%;
  }
}
.cid-tGpeLFPXWV .dropdown-item.active,
.cid-tGpeLFPXWV .dropdown-item:active {
  background-color: transparent;
}
.cid-tGpeLFPXWV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGpeLFPXWV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGpeLFPXWV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGpeLFPXWV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGpeLFPXWV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGpeLFPXWV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGpeLFPXWV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGpeLFPXWV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGpeLFPXWV button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGpeLFPXWV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGpeLFPXWV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGpeLFPXWV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpeLFPXWV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpeLFPXWV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGpeLFPXWV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpeLFPXWV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGpeLFPXWV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGpeLFPXWV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpeLFPXWV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGpeLFPXWV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGpeLFPXWV .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-tGpeLFPXWV .navbar {
    height: 70px;
  }
  .cid-tGpeLFPXWV .navbar.opened {
    height: auto;
  }
  .cid-tGpeLFPXWV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGpeLDYVYa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpeLDYVYa .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGpeLDYVYa .image-wrap img {
  transition: all .9s ease;
}
.cid-tGpeLDYVYa .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGpeLDYVYa .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGpeLDYVYa .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGpeLDYVYa .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGpeLEmZAr {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGpeLEmZAr .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpeLEmZAr .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGpeLEmZAr .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpeLEmZAr .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpeLEmZAr .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpeLEmZAr .mbr-text,
.cid-tGpeLEmZAr .mbr-section-btn {
  color: #626462;
}
.cid-tGpeLEGklw {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGpeLEGklw .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGpeLEGklw .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGpeLEGklw .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGpeLEGklw .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGpeLEGklw .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGpeLEGklw .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGpeLEGklw .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGpeLEGklw .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGpeLEGklw .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGpeLEGklw .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGpeLEGklw .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGpeLEGklw .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGpeLEGklw .mbr-gallery-filter ul {
  display: block;
}
.cid-tGpeLEGklw .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGpeLEGklw .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGpeLEGklw .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGpeLEGklw .mbr-gallery-filter li.active::after,
.cid-tGpeLEGklw .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGpeLEGklw .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGpeLEGklw .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGpeLEGklw .icon-focus:before {
  content: '\e95e';
}
.cid-tGpeLEGklw .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGpeLEGklw .mbr-section-title {
  margin: 0;
}
.cid-tGpeLEGklw .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGpeLEGklw .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGpeLFcGjx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGpeLFcGjx .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpeLFcGjx .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGpeLFcGjx .article-list li p {
  margin-bottom: 0;
}
.cid-tGpeLFcGjx .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGpeLFcGjx .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpeLFcGjx .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpeLFcGjx .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpeLFcGjx .mbr-text {
  color: #626462;
}
.cid-tGpeLFt3BR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGpeLFt3BR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGpeLFt3BR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGpeLFt3BR .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGpeLFt3BR .container-fluid {
    padding: 0;
  }
}
.cid-tGpeLFt3BR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGpeLFt3BR .container {
    padding: 0 20px;
  }
}
.cid-tGpeLFt3BR .row {
  justify-content: center;
}
.cid-tGpeLFt3BR .card {
  padding: 0;
}
.cid-tGpeLFt3BR .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpeLFt3BR .card img {
    height: 300px;
  }
}
.cid-tGpeLFt3BR .row.cards {
  margin: 0;
}
.cid-tGpeLFt3BR .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpeLFt3BR .row.cards img {
    height: 300px;
  }
}
.cid-tGpqB7t8sw .navbar-dropdown {
  position: relative !important;
}
.cid-tGpqB7t8sw .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-tGpqB7t8sw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGpqB7t8sw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGpqB7t8sw .dropdown-item:hover,
.cid-tGpqB7t8sw .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGpqB7t8sw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGpqB7t8sw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGpqB7t8sw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGpqB7t8sw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGpqB7t8sw .nav-link {
  position: relative;
}
.cid-tGpqB7t8sw .container {
  display: flex;
  margin: auto;
}
.cid-tGpqB7t8sw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGpqB7t8sw .nav-item:focus,
.cid-tGpqB7t8sw .nav-link:focus {
  outline: none;
}
.cid-tGpqB7t8sw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGpqB7t8sw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGpqB7t8sw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGpqB7t8sw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGpqB7t8sw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGpqB7t8sw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGpqB7t8sw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGpqB7t8sw .navbar.opened {
  transition: all 0.3s;
}
.cid-tGpqB7t8sw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGpqB7t8sw .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGpqB7t8sw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGpqB7t8sw .navbar.collapsed {
  justify-content: center;
}
.cid-tGpqB7t8sw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGpqB7t8sw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGpqB7t8sw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGpqB7t8sw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGpqB7t8sw .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-tGpqB7t8sw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGpqB7t8sw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGpqB7t8sw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGpqB7t8sw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGpqB7t8sw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGpqB7t8sw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGpqB7t8sw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGpqB7t8sw .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-tGpqB7t8sw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGpqB7t8sw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGpqB7t8sw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGpqB7t8sw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGpqB7t8sw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGpqB7t8sw .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGpqB7t8sw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGpqB7t8sw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGpqB7t8sw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGpqB7t8sw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGpqB7t8sw .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGpqB7t8sw .navbar-brand {
    width: 85%;
  }
}
.cid-tGpqB7t8sw .dropdown-item.active,
.cid-tGpqB7t8sw .dropdown-item:active {
  background-color: transparent;
}
.cid-tGpqB7t8sw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGpqB7t8sw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGpqB7t8sw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGpqB7t8sw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGpqB7t8sw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGpqB7t8sw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGpqB7t8sw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGpqB7t8sw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGpqB7t8sw button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGpqB7t8sw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGpqB7t8sw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGpqB7t8sw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpqB7t8sw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpqB7t8sw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGpqB7t8sw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpqB7t8sw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGpqB7t8sw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGpqB7t8sw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpqB7t8sw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGpqB7t8sw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGpqB7t8sw .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-tGpqB7t8sw .navbar {
    height: 70px;
  }
  .cid-tGpqB7t8sw .navbar.opened {
    height: auto;
  }
  .cid-tGpqB7t8sw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGpqB5q4UJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpqB5q4UJ .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGpqB5q4UJ .image-wrap img {
  transition: all .9s ease;
}
.cid-tGpqB5q4UJ .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGpqB5q4UJ .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGpqB5q4UJ .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGpqB5q4UJ .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGpqB5QEVT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGpqB5QEVT .article-wrapper {
  border-bottom: 2px solid #191919;
}
.cid-tGpqB5QEVT .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpqB5QEVT .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGpqB5QEVT .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpqB5QEVT .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpqB5QEVT .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpqB5QEVT .mbr-text,
.cid-tGpqB5QEVT .mbr-section-btn {
  color: #626462;
}
.cid-tGps360xnR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGps360xnR iframe,
.cid-tGps360xnR img,
.cid-tGps360xnR video {
  width: 100%;
}
.cid-tGps360xnR .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGps360xnR .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGps360xnR .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGps360xnR .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGps360xnR .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGps360xnR .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGps360xnR .mbr-media {
  position: relative;
}
.cid-tGps360xnR .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGps360xnR .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGps360xnR .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGps360xnR .box {
  padding: 0 !important;
}
.cid-tGps360xnR .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGps360xnR .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGps360xnR .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGps360xnR .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGps360xnR .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGps360xnR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGps360xnR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGpqB6bhh4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGpqB6bhh4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGpqB6bhh4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGpqB6bhh4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGpqB6bhh4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGpqB6bhh4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGpqB6bhh4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGpqB6bhh4 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter ul {
  display: block;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-filter li.active::after,
.cid-tGpqB6bhh4 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGpqB6bhh4 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGpqB6bhh4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGpqB6bhh4 .icon-focus:before {
  content: '\e95e';
}
.cid-tGpqB6bhh4 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGpqB6bhh4 .mbr-section-title {
  margin: 0;
}
.cid-tGpqB6bhh4 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGpqB6bhh4 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGpv9KIkMW .navbar-dropdown {
  position: relative !important;
}
.cid-tGpv9KIkMW .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-tGpv9KIkMW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGpv9KIkMW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGpv9KIkMW .dropdown-item:hover,
.cid-tGpv9KIkMW .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGpv9KIkMW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGpv9KIkMW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGpv9KIkMW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGpv9KIkMW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGpv9KIkMW .nav-link {
  position: relative;
}
.cid-tGpv9KIkMW .container {
  display: flex;
  margin: auto;
}
.cid-tGpv9KIkMW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGpv9KIkMW .nav-item:focus,
.cid-tGpv9KIkMW .nav-link:focus {
  outline: none;
}
.cid-tGpv9KIkMW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGpv9KIkMW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGpv9KIkMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGpv9KIkMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGpv9KIkMW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGpv9KIkMW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGpv9KIkMW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGpv9KIkMW .navbar.opened {
  transition: all 0.3s;
}
.cid-tGpv9KIkMW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGpv9KIkMW .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGpv9KIkMW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGpv9KIkMW .navbar.collapsed {
  justify-content: center;
}
.cid-tGpv9KIkMW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGpv9KIkMW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGpv9KIkMW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGpv9KIkMW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGpv9KIkMW .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-tGpv9KIkMW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGpv9KIkMW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGpv9KIkMW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGpv9KIkMW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGpv9KIkMW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGpv9KIkMW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGpv9KIkMW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGpv9KIkMW .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-tGpv9KIkMW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGpv9KIkMW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGpv9KIkMW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGpv9KIkMW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGpv9KIkMW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGpv9KIkMW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGpv9KIkMW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGpv9KIkMW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGpv9KIkMW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGpv9KIkMW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGpv9KIkMW .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGpv9KIkMW .navbar-brand {
    width: 85%;
  }
}
.cid-tGpv9KIkMW .dropdown-item.active,
.cid-tGpv9KIkMW .dropdown-item:active {
  background-color: transparent;
}
.cid-tGpv9KIkMW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGpv9KIkMW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGpv9KIkMW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGpv9KIkMW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGpv9KIkMW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGpv9KIkMW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGpv9KIkMW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGpv9KIkMW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGpv9KIkMW button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGpv9KIkMW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGpv9KIkMW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGpv9KIkMW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpv9KIkMW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpv9KIkMW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGpv9KIkMW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpv9KIkMW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGpv9KIkMW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGpv9KIkMW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpv9KIkMW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGpv9KIkMW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGpv9KIkMW .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-tGpv9KIkMW .navbar {
    height: 70px;
  }
  .cid-tGpv9KIkMW .navbar.opened {
    height: auto;
  }
  .cid-tGpv9KIkMW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGpv9IJfSJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpv9IJfSJ .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGpv9IJfSJ .image-wrap img {
  transition: all .9s ease;
}
.cid-tGpv9IJfSJ .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGpv9IJfSJ .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGpv9IJfSJ .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGpv9IJfSJ .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGpv9J41Wc {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGpv9J41Wc .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpv9J41Wc .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGpv9J41Wc .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpv9J41Wc .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpv9J41Wc .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpv9J41Wc .mbr-text,
.cid-tGpv9J41Wc .mbr-section-btn {
  color: #626462;
}
.cid-tGpCae84i4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpCae84i4 iframe,
.cid-tGpCae84i4 img,
.cid-tGpCae84i4 video {
  width: 100%;
}
.cid-tGpCae84i4 .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGpCae84i4 .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGpCae84i4 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGpCae84i4 .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGpCae84i4 .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGpCae84i4 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGpCae84i4 .mbr-media {
  position: relative;
}
.cid-tGpCae84i4 .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGpCae84i4 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGpCae84i4 .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGpCae84i4 .box {
  padding: 0 !important;
}
.cid-tGpCae84i4 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGpCae84i4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGpCae84i4 .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGpCae84i4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGpCae84i4 .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGpCae84i4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGpCae84i4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGpv9JqJ0E {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGpv9JqJ0E .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGpv9JqJ0E .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGpv9JqJ0E .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGpv9JqJ0E .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGpv9JqJ0E .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGpv9JqJ0E .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGpv9JqJ0E .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter ul {
  display: block;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-filter li.active::after,
.cid-tGpv9JqJ0E .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGpv9JqJ0E .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGpv9JqJ0E .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGpv9JqJ0E .icon-focus:before {
  content: '\e95e';
}
.cid-tGpv9JqJ0E .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGpv9JqJ0E .mbr-section-title {
  margin: 0;
}
.cid-tGpv9JqJ0E .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGpv9JqJ0E .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGpv9JYi2b {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGpv9JYi2b .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpv9JYi2b .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGpv9JYi2b .article-list li p {
  margin-bottom: 0;
}
.cid-tGpv9JYi2b .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGpv9JYi2b .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpv9JYi2b .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpv9JYi2b .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpv9JYi2b .mbr-text {
  color: #626462;
}
.cid-tGpv9KkYSF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGpv9KkYSF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGpv9KkYSF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGpv9KkYSF .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGpv9KkYSF .container-fluid {
    padding: 0;
  }
}
.cid-tGpv9KkYSF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGpv9KkYSF .container {
    padding: 0 20px;
  }
}
.cid-tGpv9KkYSF .row {
  justify-content: center;
}
.cid-tGpv9KkYSF .card {
  padding: 0;
}
.cid-tGpv9KkYSF .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpv9KkYSF .card img {
    height: 300px;
  }
}
.cid-tGpv9KkYSF .row.cards {
  margin: 0;
}
.cid-tGpv9KkYSF .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpv9KkYSF .row.cards img {
    height: 300px;
  }
}
.cid-tGpJeJ9QVu .navbar-dropdown {
  position: relative !important;
}
.cid-tGpJeJ9QVu .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-tGpJeJ9QVu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGpJeJ9QVu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGpJeJ9QVu .dropdown-item:hover,
.cid-tGpJeJ9QVu .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGpJeJ9QVu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGpJeJ9QVu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGpJeJ9QVu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGpJeJ9QVu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGpJeJ9QVu .nav-link {
  position: relative;
}
.cid-tGpJeJ9QVu .container {
  display: flex;
  margin: auto;
}
.cid-tGpJeJ9QVu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGpJeJ9QVu .nav-item:focus,
.cid-tGpJeJ9QVu .nav-link:focus {
  outline: none;
}
.cid-tGpJeJ9QVu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGpJeJ9QVu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGpJeJ9QVu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGpJeJ9QVu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGpJeJ9QVu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGpJeJ9QVu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGpJeJ9QVu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGpJeJ9QVu .navbar.opened {
  transition: all 0.3s;
}
.cid-tGpJeJ9QVu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGpJeJ9QVu .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGpJeJ9QVu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGpJeJ9QVu .navbar.collapsed {
  justify-content: center;
}
.cid-tGpJeJ9QVu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGpJeJ9QVu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGpJeJ9QVu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGpJeJ9QVu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGpJeJ9QVu .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-tGpJeJ9QVu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGpJeJ9QVu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGpJeJ9QVu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGpJeJ9QVu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGpJeJ9QVu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGpJeJ9QVu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGpJeJ9QVu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGpJeJ9QVu .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-tGpJeJ9QVu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGpJeJ9QVu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGpJeJ9QVu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGpJeJ9QVu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGpJeJ9QVu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGpJeJ9QVu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGpJeJ9QVu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGpJeJ9QVu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGpJeJ9QVu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGpJeJ9QVu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGpJeJ9QVu .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGpJeJ9QVu .navbar-brand {
    width: 85%;
  }
}
.cid-tGpJeJ9QVu .dropdown-item.active,
.cid-tGpJeJ9QVu .dropdown-item:active {
  background-color: transparent;
}
.cid-tGpJeJ9QVu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGpJeJ9QVu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGpJeJ9QVu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGpJeJ9QVu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGpJeJ9QVu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGpJeJ9QVu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGpJeJ9QVu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGpJeJ9QVu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGpJeJ9QVu button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGpJeJ9QVu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGpJeJ9QVu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGpJeJ9QVu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpJeJ9QVu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGpJeJ9QVu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGpJeJ9QVu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpJeJ9QVu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGpJeJ9QVu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGpJeJ9QVu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGpJeJ9QVu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGpJeJ9QVu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGpJeJ9QVu .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-tGpJeJ9QVu .navbar {
    height: 70px;
  }
  .cid-tGpJeJ9QVu .navbar.opened {
    height: auto;
  }
  .cid-tGpJeJ9QVu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGpJeFOZv7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpJeFOZv7 .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGpJeFOZv7 .image-wrap img {
  transition: all .9s ease;
}
.cid-tGpJeFOZv7 .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGpJeFOZv7 .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGpJeFOZv7 .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGpJeFOZv7 .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGpJeG8TLv {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGpJeG8TLv .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGpJeG8TLv .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGpJeG8TLv .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGpJeG8TLv .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGpJeG8TLv .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGpJeG8TLv .mbr-text,
.cid-tGpJeG8TLv .mbr-section-btn {
  color: #626462;
}
.cid-tGpJeGxrK0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGpJeGxrK0 iframe,
.cid-tGpJeGxrK0 img,
.cid-tGpJeGxrK0 video {
  width: 100%;
}
.cid-tGpJeGxrK0 .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGpJeGxrK0 .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGpJeGxrK0 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGpJeGxrK0 .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGpJeGxrK0 .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGpJeGxrK0 .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGpJeGxrK0 .mbr-media {
  position: relative;
}
.cid-tGpJeGxrK0 .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGpJeGxrK0 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGpJeGxrK0 .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGpJeGxrK0 .box {
  padding: 0 !important;
}
.cid-tGpJeGxrK0 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGpJeGxrK0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGpJeGxrK0 .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGpJeGxrK0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGpJeGxrK0 .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGpJeGxrK0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGpJeGxrK0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGpJeHHAy4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGpJeHHAy4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGpJeHHAy4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGpJeHHAy4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGpJeHHAy4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGpJeHHAy4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGpJeHHAy4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGpJeHHAy4 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter ul {
  display: block;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-filter li.active::after,
.cid-tGpJeHHAy4 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGpJeHHAy4 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGpJeHHAy4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGpJeHHAy4 .icon-focus:before {
  content: '\e95e';
}
.cid-tGpJeHHAy4 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGpJeHHAy4 .mbr-section-title {
  margin: 0;
}
.cid-tGpJeHHAy4 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGpJeHHAy4 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGpJeIIxza {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGpJeIIxza .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGpJeIIxza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGpJeIIxza .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGpJeIIxza .container-fluid {
    padding: 0;
  }
}
.cid-tGpJeIIxza .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGpJeIIxza .container {
    padding: 0 20px;
  }
}
.cid-tGpJeIIxza .row {
  justify-content: center;
}
.cid-tGpJeIIxza .card {
  padding: 0;
}
.cid-tGpJeIIxza .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpJeIIxza .card img {
    height: 300px;
  }
}
.cid-tGpJeIIxza .row.cards {
  margin: 0;
}
.cid-tGpJeIIxza .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGpJeIIxza .row.cards img {
    height: 300px;
  }
}
.cid-tGqIncLoPU .navbar-dropdown {
  position: relative !important;
}
.cid-tGqIncLoPU .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-tGqIncLoPU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGqIncLoPU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGqIncLoPU .dropdown-item:hover,
.cid-tGqIncLoPU .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGqIncLoPU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGqIncLoPU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGqIncLoPU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGqIncLoPU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGqIncLoPU .nav-link {
  position: relative;
}
.cid-tGqIncLoPU .container {
  display: flex;
  margin: auto;
}
.cid-tGqIncLoPU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGqIncLoPU .nav-item:focus,
.cid-tGqIncLoPU .nav-link:focus {
  outline: none;
}
.cid-tGqIncLoPU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGqIncLoPU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGqIncLoPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGqIncLoPU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGqIncLoPU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGqIncLoPU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGqIncLoPU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGqIncLoPU .navbar.opened {
  transition: all 0.3s;
}
.cid-tGqIncLoPU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGqIncLoPU .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGqIncLoPU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGqIncLoPU .navbar.collapsed {
  justify-content: center;
}
.cid-tGqIncLoPU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGqIncLoPU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGqIncLoPU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGqIncLoPU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGqIncLoPU .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-tGqIncLoPU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGqIncLoPU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGqIncLoPU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGqIncLoPU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGqIncLoPU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGqIncLoPU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGqIncLoPU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGqIncLoPU .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-tGqIncLoPU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGqIncLoPU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGqIncLoPU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGqIncLoPU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGqIncLoPU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGqIncLoPU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGqIncLoPU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGqIncLoPU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGqIncLoPU .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGqIncLoPU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGqIncLoPU .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGqIncLoPU .navbar-brand {
    width: 85%;
  }
}
.cid-tGqIncLoPU .dropdown-item.active,
.cid-tGqIncLoPU .dropdown-item:active {
  background-color: transparent;
}
.cid-tGqIncLoPU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGqIncLoPU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGqIncLoPU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGqIncLoPU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGqIncLoPU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGqIncLoPU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGqIncLoPU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGqIncLoPU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGqIncLoPU button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGqIncLoPU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGqIncLoPU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGqIncLoPU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqIncLoPU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqIncLoPU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGqIncLoPU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqIncLoPU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGqIncLoPU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGqIncLoPU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqIncLoPU .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGqIncLoPU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGqIncLoPU .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-tGqIncLoPU .navbar {
    height: 70px;
  }
  .cid-tGqIncLoPU .navbar.opened {
    height: auto;
  }
  .cid-tGqIncLoPU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGqInaYzOj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqInaYzOj .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGqInaYzOj .image-wrap img {
  transition: all .9s ease;
}
.cid-tGqInaYzOj .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGqInaYzOj .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGqInaYzOj .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGqInaYzOj .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGqInb9yp5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGqInb9yp5 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqInb9yp5 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGqInb9yp5 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqInb9yp5 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqInb9yp5 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqInb9yp5 .mbr-text,
.cid-tGqInb9yp5 .mbr-section-btn {
  color: #626462;
}
.cid-tGqInblFGl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqInblFGl iframe,
.cid-tGqInblFGl img,
.cid-tGqInblFGl video {
  width: 100%;
}
.cid-tGqInblFGl .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGqInblFGl .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGqInblFGl .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGqInblFGl .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGqInblFGl .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGqInblFGl .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGqInblFGl .mbr-media {
  position: relative;
}
.cid-tGqInblFGl .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGqInblFGl .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGqInblFGl .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGqInblFGl .box {
  padding: 0 !important;
}
.cid-tGqInblFGl .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGqInblFGl .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGqInblFGl .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGqInblFGl .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGqInblFGl .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGqInblFGl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGqInblFGl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGqInbKAdY {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGqInbKAdY .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGqInbKAdY .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGqInbKAdY .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGqInbKAdY .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGqInbKAdY .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGqInbKAdY .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGqInbKAdY .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGqInbKAdY .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGqInbKAdY .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGqInbKAdY .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGqInbKAdY .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGqInbKAdY .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGqInbKAdY .mbr-gallery-filter ul {
  display: block;
}
.cid-tGqInbKAdY .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGqInbKAdY .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGqInbKAdY .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGqInbKAdY .mbr-gallery-filter li.active::after,
.cid-tGqInbKAdY .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGqInbKAdY .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGqInbKAdY .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGqInbKAdY .icon-focus:before {
  content: '\e95e';
}
.cid-tGqInbKAdY .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGqInbKAdY .mbr-section-title {
  margin: 0;
}
.cid-tGqInbKAdY .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGqInbKAdY .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGqImcaOER .navbar-dropdown {
  position: relative !important;
}
.cid-tGqImcaOER .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-tGqImcaOER .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGqImcaOER .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGqImcaOER .dropdown-item:hover,
.cid-tGqImcaOER .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGqImcaOER .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGqImcaOER .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGqImcaOER .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGqImcaOER .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGqImcaOER .nav-link {
  position: relative;
}
.cid-tGqImcaOER .container {
  display: flex;
  margin: auto;
}
.cid-tGqImcaOER .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGqImcaOER .nav-item:focus,
.cid-tGqImcaOER .nav-link:focus {
  outline: none;
}
.cid-tGqImcaOER .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGqImcaOER .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGqImcaOER .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGqImcaOER .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGqImcaOER .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGqImcaOER .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGqImcaOER .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGqImcaOER .navbar.opened {
  transition: all 0.3s;
}
.cid-tGqImcaOER .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGqImcaOER .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGqImcaOER .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGqImcaOER .navbar.collapsed {
  justify-content: center;
}
.cid-tGqImcaOER .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGqImcaOER .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGqImcaOER .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGqImcaOER .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGqImcaOER .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-tGqImcaOER .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGqImcaOER .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGqImcaOER .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGqImcaOER .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGqImcaOER .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGqImcaOER .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGqImcaOER .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGqImcaOER .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-tGqImcaOER .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGqImcaOER .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGqImcaOER .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGqImcaOER .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGqImcaOER .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGqImcaOER .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGqImcaOER .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGqImcaOER .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGqImcaOER .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGqImcaOER .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGqImcaOER .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGqImcaOER .navbar-brand {
    width: 85%;
  }
}
.cid-tGqImcaOER .dropdown-item.active,
.cid-tGqImcaOER .dropdown-item:active {
  background-color: transparent;
}
.cid-tGqImcaOER .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGqImcaOER .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGqImcaOER .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGqImcaOER .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGqImcaOER .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGqImcaOER .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGqImcaOER ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGqImcaOER .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGqImcaOER button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGqImcaOER button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGqImcaOER button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGqImcaOER button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqImcaOER button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqImcaOER button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGqImcaOER nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqImcaOER nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGqImcaOER nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGqImcaOER nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqImcaOER .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGqImcaOER a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGqImcaOER .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-tGqImcaOER .navbar {
    height: 70px;
  }
  .cid-tGqImcaOER .navbar.opened {
    height: auto;
  }
  .cid-tGqImcaOER .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGqImahqxP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqImahqxP .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGqImahqxP .image-wrap img {
  transition: all .9s ease;
}
.cid-tGqImahqxP .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGqImahqxP .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGqImahqxP .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGqImahqxP .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGqImawJzr {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGqImawJzr .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqImawJzr .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGqImawJzr .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqImawJzr .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqImawJzr .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqImawJzr .mbr-text,
.cid-tGqImawJzr .mbr-section-btn {
  color: #626462;
}
.cid-tGqImaOVti {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqImaOVti iframe,
.cid-tGqImaOVti img,
.cid-tGqImaOVti video {
  width: 100%;
}
.cid-tGqImaOVti .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGqImaOVti .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGqImaOVti .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGqImaOVti .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGqImaOVti .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGqImaOVti .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGqImaOVti .mbr-media {
  position: relative;
}
.cid-tGqImaOVti .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGqImaOVti .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGqImaOVti .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGqImaOVti .box {
  padding: 0 !important;
}
.cid-tGqImaOVti .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGqImaOVti .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGqImaOVti .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGqImaOVti .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGqImaOVti .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGqImaOVti .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGqImaOVti .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGqImbbmA3 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGqImbbmA3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGqImbbmA3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGqImbbmA3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGqImbbmA3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGqImbbmA3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGqImbbmA3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGqImbbmA3 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGqImbbmA3 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGqImbbmA3 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGqImbbmA3 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGqImbbmA3 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGqImbbmA3 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGqImbbmA3 .mbr-gallery-filter ul {
  display: block;
}
.cid-tGqImbbmA3 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGqImbbmA3 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGqImbbmA3 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGqImbbmA3 .mbr-gallery-filter li.active::after,
.cid-tGqImbbmA3 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGqImbbmA3 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGqImbbmA3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGqImbbmA3 .icon-focus:before {
  content: '\e95e';
}
.cid-tGqImbbmA3 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGqImbbmA3 .mbr-section-title {
  margin: 0;
}
.cid-tGqImbbmA3 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGqImbbmA3 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGqQvD5K39 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGqQvD5K39 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqQvD5K39 .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGqQvD5K39 .article-list li p {
  margin-bottom: 0;
}
.cid-tGqQvD5K39 .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGqQvD5K39 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqQvD5K39 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqQvD5K39 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqQvD5K39 .mbr-text {
  color: #626462;
}
.cid-tGqImbDD5y {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGqImbDD5y .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqImbDD5y .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGqImbDD5y .article-list li p {
  margin-bottom: 0;
}
.cid-tGqImbDD5y .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGqImbDD5y .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqImbDD5y .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqImbDD5y .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqImbDD5y .mbr-text {
  color: #626462;
}
.cid-tGqImbSswg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGqImbSswg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGqImbSswg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGqImbSswg .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGqImbSswg .container-fluid {
    padding: 0;
  }
}
.cid-tGqImbSswg .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGqImbSswg .container {
    padding: 0 20px;
  }
}
.cid-tGqImbSswg .row {
  justify-content: center;
}
.cid-tGqImbSswg .card {
  padding: 0;
}
.cid-tGqImbSswg .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGqImbSswg .card img {
    height: 300px;
  }
}
.cid-tGqImbSswg .row.cards {
  margin: 0;
}
.cid-tGqImbSswg .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGqImbSswg .row.cards img {
    height: 300px;
  }
}
.cid-tGqRFVoTBr .navbar-dropdown {
  position: relative !important;
}
.cid-tGqRFVoTBr .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-tGqRFVoTBr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGqRFVoTBr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGqRFVoTBr .dropdown-item:hover,
.cid-tGqRFVoTBr .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGqRFVoTBr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGqRFVoTBr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGqRFVoTBr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGqRFVoTBr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGqRFVoTBr .nav-link {
  position: relative;
}
.cid-tGqRFVoTBr .container {
  display: flex;
  margin: auto;
}
.cid-tGqRFVoTBr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGqRFVoTBr .nav-item:focus,
.cid-tGqRFVoTBr .nav-link:focus {
  outline: none;
}
.cid-tGqRFVoTBr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGqRFVoTBr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGqRFVoTBr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGqRFVoTBr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGqRFVoTBr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGqRFVoTBr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGqRFVoTBr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGqRFVoTBr .navbar.opened {
  transition: all 0.3s;
}
.cid-tGqRFVoTBr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGqRFVoTBr .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGqRFVoTBr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGqRFVoTBr .navbar.collapsed {
  justify-content: center;
}
.cid-tGqRFVoTBr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGqRFVoTBr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGqRFVoTBr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGqRFVoTBr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGqRFVoTBr .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-tGqRFVoTBr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGqRFVoTBr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGqRFVoTBr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGqRFVoTBr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGqRFVoTBr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGqRFVoTBr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGqRFVoTBr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGqRFVoTBr .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-tGqRFVoTBr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGqRFVoTBr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGqRFVoTBr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGqRFVoTBr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGqRFVoTBr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGqRFVoTBr .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGqRFVoTBr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGqRFVoTBr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGqRFVoTBr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGqRFVoTBr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGqRFVoTBr .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGqRFVoTBr .navbar-brand {
    width: 85%;
  }
}
.cid-tGqRFVoTBr .dropdown-item.active,
.cid-tGqRFVoTBr .dropdown-item:active {
  background-color: transparent;
}
.cid-tGqRFVoTBr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGqRFVoTBr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGqRFVoTBr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGqRFVoTBr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGqRFVoTBr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGqRFVoTBr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGqRFVoTBr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGqRFVoTBr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGqRFVoTBr button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGqRFVoTBr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGqRFVoTBr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGqRFVoTBr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqRFVoTBr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqRFVoTBr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGqRFVoTBr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqRFVoTBr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGqRFVoTBr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGqRFVoTBr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqRFVoTBr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGqRFVoTBr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGqRFVoTBr .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-tGqRFVoTBr .navbar {
    height: 70px;
  }
  .cid-tGqRFVoTBr .navbar.opened {
    height: auto;
  }
  .cid-tGqRFVoTBr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGqRFU7nha {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGqRFU7nha .mbr-link p {
  border-bottom: 2px #191919 solid;
}
.cid-tGqRFU7nha .mbr-link p {
  display: inline;
  padding-bottom: 2px;
}
.cid-tGqRFU7nha .mbr-link p span {
  margin-left: 12px;
}
.cid-tGqRFU7nha .item-img {
  overflow: hidden;
}
.cid-tGqRFU7nha .item-img img {
  transition: all .5s ease;
}
.cid-tGqRFU7nha img,
.cid-tGqRFU7nha .item-img {
  width: 100%;
}
.cid-tGqRFU7nha .mbr-section-subtitle {
  margin-bottom: 80px;
  text-align: left;
  color: #464646;
}
.cid-tGqRFU7nha .item:focus,
.cid-tGqRFU7nha span:focus {
  outline: none;
}
.cid-tGqRFU7nha .item {
  cursor: pointer;
  margin-bottom: 100px;
}
.cid-tGqRFU7nha .item-wrapper:nth-child(odd) {
  margin-right: 30px;
}
.cid-tGqRFU7nha .item-wrapper:nth-child(even) {
  margin-left: 30px;
}
.cid-tGqRFU7nha .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e8ebe8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tGqRFU7nha .item-wrapper .item-content {
    padding-top: 24px;
  }
  .cid-tGqRFU7nha .item-wrapper .item-footer {
    padding: 0;
  }
}
@media (max-width: 991px) {
  .cid-tGqRFU7nha .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tGqRFU7nha .item-wrapper .mbr-link {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .cid-tGqRFU7nha .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tGqRFU7nha .item-wrapper:hover .item-img img {
  transform: scale3d(1.1, 1.1, 1);
}
.cid-tGqRFU7nha .item-wrapper:hover .item-title,
.cid-tGqRFU7nha .item-wrapper:hover .mbr-link p {
  opacity: .85;
}
@media (max-width: 768px) {
  .cid-tGqRFU7nha .item {
    margin-bottom: 80px;
  }
  .cid-tGqRFU7nha .item-wrapper {
    margin-bottom: 2px;
  }
  .cid-tGqRFU7nha .item-wrapper:nth-child(odd) {
    margin-right: 0;
  }
  .cid-tGqRFU7nha .item-wrapper:nth-child(even) {
    margin-left: 0;
  }
}
.cid-tGqRFU7nha .mbr-text,
.cid-tGqRFU7nha .mbr-section-btn {
  color: #464646;
}
.cid-tGqRFU7nha .item-title {
  color: #000000;
  text-align: left;
}
.cid-tGqRFUSzTK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tGqRFUSzTK .row {
  flex-direction: row-reverse;
}
.cid-tGqRFUSzTK img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
  transform: scale(1.01);
}
.cid-tGqRFUSzTK p {
  padding: 0 1rem;
}
.cid-tGqRFUSzTK .container-fluid {
  padding: 0;
}
.cid-tGqRFUSzTK .col-12 {
  padding: 0;
}
.cid-tGqRFUSzTK .image-wrapper {
  overflow: hidden;
  height: 800px;
}
.cid-tGqRFUSzTK .image-wrapper:hover img {
  transform: scale(1.04);
}
@media (max-width: 992px) {
  .cid-tGqRFUSzTK .image-wrapper {
    height: 400px;
  }
}
.cid-tGqRFVbVRf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqRFVbVRf .article-wrapper {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.cid-tGqRFVbVRf .article-btn {
  width: 430px;
  height: 74px;
}
@media (max-width: 991px) {
  .cid-tGqRFVbVRf .article-wrapper {
    display: block;
  }
  .cid-tGqRFVbVRf .article-btn {
    margin: 10px 0 0;
  }
  .cid-tGqRFVbVRf .mbr-section-title {
    text-align: center;
  }
  .cid-tGqRFVbVRf .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .cid-tGqRFVbVRf .article-btn {
    width: 300px;
  }
}
@media (max-width: 425px) {
  .cid-tGqRFVbVRf .article-btn {
    width: 220px;
    height: 60px;
    margin: 0;
  }
}
@media (max-width: 320px) {
  .cid-tGqRFVbVRf .article-btn {
    width: 177px;
    height: 50px;
  }
}
.cid-tGqSTYtPGx .navbar-dropdown {
  position: relative !important;
}
.cid-tGqSTYtPGx .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-tGqSTYtPGx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGqSTYtPGx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGqSTYtPGx .dropdown-item:hover,
.cid-tGqSTYtPGx .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGqSTYtPGx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGqSTYtPGx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGqSTYtPGx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGqSTYtPGx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGqSTYtPGx .nav-link {
  position: relative;
}
.cid-tGqSTYtPGx .container {
  display: flex;
  margin: auto;
}
.cid-tGqSTYtPGx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGqSTYtPGx .nav-item:focus,
.cid-tGqSTYtPGx .nav-link:focus {
  outline: none;
}
.cid-tGqSTYtPGx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGqSTYtPGx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGqSTYtPGx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGqSTYtPGx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGqSTYtPGx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGqSTYtPGx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGqSTYtPGx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGqSTYtPGx .navbar.opened {
  transition: all 0.3s;
}
.cid-tGqSTYtPGx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGqSTYtPGx .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGqSTYtPGx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGqSTYtPGx .navbar.collapsed {
  justify-content: center;
}
.cid-tGqSTYtPGx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGqSTYtPGx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGqSTYtPGx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGqSTYtPGx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGqSTYtPGx .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-tGqSTYtPGx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGqSTYtPGx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGqSTYtPGx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGqSTYtPGx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGqSTYtPGx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGqSTYtPGx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGqSTYtPGx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGqSTYtPGx .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-tGqSTYtPGx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGqSTYtPGx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGqSTYtPGx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGqSTYtPGx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGqSTYtPGx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGqSTYtPGx .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGqSTYtPGx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGqSTYtPGx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGqSTYtPGx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGqSTYtPGx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGqSTYtPGx .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGqSTYtPGx .navbar-brand {
    width: 85%;
  }
}
.cid-tGqSTYtPGx .dropdown-item.active,
.cid-tGqSTYtPGx .dropdown-item:active {
  background-color: transparent;
}
.cid-tGqSTYtPGx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGqSTYtPGx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGqSTYtPGx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGqSTYtPGx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGqSTYtPGx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGqSTYtPGx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGqSTYtPGx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGqSTYtPGx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGqSTYtPGx button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGqSTYtPGx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGqSTYtPGx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGqSTYtPGx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqSTYtPGx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGqSTYtPGx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGqSTYtPGx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqSTYtPGx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGqSTYtPGx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGqSTYtPGx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGqSTYtPGx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGqSTYtPGx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGqSTYtPGx .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-tGqSTYtPGx .navbar {
    height: 70px;
  }
  .cid-tGqSTYtPGx .navbar.opened {
    height: auto;
  }
  .cid-tGqSTYtPGx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGqSTWcSlG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGqSTWcSlG .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGqSTWcSlG .image-wrap img {
  transition: all .9s ease;
}
.cid-tGqSTWcSlG .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGqSTWcSlG .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGqSTWcSlG .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGqSTWcSlG .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGqSTWs9W0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGqSTWs9W0 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqSTWs9W0 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGqSTWs9W0 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqSTWs9W0 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqSTWs9W0 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqSTWs9W0 .mbr-text,
.cid-tGqSTWs9W0 .mbr-section-btn {
  color: #626462;
}
.cid-tGqSTXnzpK {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGqSTXnzpK .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGqSTXnzpK .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGqSTXnzpK .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGqSTXnzpK .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGqSTXnzpK .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGqSTXnzpK .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGqSTXnzpK .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGqSTXnzpK .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGqSTXnzpK .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGqSTXnzpK .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGqSTXnzpK .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGqSTXnzpK .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGqSTXnzpK .mbr-gallery-filter ul {
  display: block;
}
.cid-tGqSTXnzpK .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGqSTXnzpK .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGqSTXnzpK .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGqSTXnzpK .mbr-gallery-filter li.active::after,
.cid-tGqSTXnzpK .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGqSTXnzpK .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGqSTXnzpK .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGqSTXnzpK .icon-focus:before {
  content: '\e95e';
}
.cid-tGqSTXnzpK .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGqSTXnzpK .mbr-section-title {
  margin: 0;
}
.cid-tGqSTXnzpK .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGqSTXnzpK .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGqSTXVrh5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGqSTXVrh5 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGqSTXVrh5 .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGqSTXVrh5 .article-list li p {
  margin-bottom: 0;
}
.cid-tGqSTXVrh5 .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGqSTXVrh5 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGqSTXVrh5 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGqSTXVrh5 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGqSTXVrh5 .mbr-text {
  color: #626462;
}
.cid-tGqSTYcP1P {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGqSTYcP1P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGqSTYcP1P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGqSTYcP1P .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGqSTYcP1P .container-fluid {
    padding: 0;
  }
}
.cid-tGqSTYcP1P .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGqSTYcP1P .container {
    padding: 0 20px;
  }
}
.cid-tGqSTYcP1P .row {
  justify-content: center;
}
.cid-tGqSTYcP1P .card {
  padding: 0;
}
.cid-tGqSTYcP1P .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGqSTYcP1P .card img {
    height: 300px;
  }
}
.cid-tGqSTYcP1P .row.cards {
  margin: 0;
}
.cid-tGqSTYcP1P .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGqSTYcP1P .row.cards img {
    height: 300px;
  }
}
.cid-tGvefJYx0I .navbar-dropdown {
  position: relative !important;
}
.cid-tGvefJYx0I .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-tGvefJYx0I .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGvefJYx0I .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGvefJYx0I .dropdown-item:hover,
.cid-tGvefJYx0I .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGvefJYx0I .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGvefJYx0I .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGvefJYx0I .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGvefJYx0I .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGvefJYx0I .nav-link {
  position: relative;
}
.cid-tGvefJYx0I .container {
  display: flex;
  margin: auto;
}
.cid-tGvefJYx0I .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGvefJYx0I .nav-item:focus,
.cid-tGvefJYx0I .nav-link:focus {
  outline: none;
}
.cid-tGvefJYx0I .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGvefJYx0I .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGvefJYx0I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGvefJYx0I .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGvefJYx0I .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGvefJYx0I .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGvefJYx0I .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGvefJYx0I .navbar.opened {
  transition: all 0.3s;
}
.cid-tGvefJYx0I .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGvefJYx0I .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGvefJYx0I .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGvefJYx0I .navbar.collapsed {
  justify-content: center;
}
.cid-tGvefJYx0I .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGvefJYx0I .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGvefJYx0I .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGvefJYx0I .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGvefJYx0I .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-tGvefJYx0I .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGvefJYx0I .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGvefJYx0I .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGvefJYx0I .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGvefJYx0I .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGvefJYx0I .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGvefJYx0I .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGvefJYx0I .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-tGvefJYx0I .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGvefJYx0I .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGvefJYx0I .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGvefJYx0I .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGvefJYx0I .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGvefJYx0I .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGvefJYx0I .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGvefJYx0I .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGvefJYx0I .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGvefJYx0I .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGvefJYx0I .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGvefJYx0I .navbar-brand {
    width: 85%;
  }
}
.cid-tGvefJYx0I .dropdown-item.active,
.cid-tGvefJYx0I .dropdown-item:active {
  background-color: transparent;
}
.cid-tGvefJYx0I .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGvefJYx0I .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGvefJYx0I .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGvefJYx0I .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGvefJYx0I .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGvefJYx0I .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGvefJYx0I ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGvefJYx0I .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGvefJYx0I button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGvefJYx0I button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGvefJYx0I button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGvefJYx0I button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvefJYx0I button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvefJYx0I button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGvefJYx0I nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvefJYx0I nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGvefJYx0I nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGvefJYx0I nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvefJYx0I .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGvefJYx0I a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGvefJYx0I .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-tGvefJYx0I .navbar {
    height: 70px;
  }
  .cid-tGvefJYx0I .navbar.opened {
    height: auto;
  }
  .cid-tGvefJYx0I .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGvefHdIjL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGvefHdIjL .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGvefHdIjL .image-wrap img {
  transition: all .9s ease;
}
.cid-tGvefHdIjL .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGvefHdIjL .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGvefHdIjL .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGvefHdIjL .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGvefHvfH9 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGvefHvfH9 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGvefHvfH9 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGvefHvfH9 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGvefHvfH9 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGvefHvfH9 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGvefHvfH9 .mbr-text,
.cid-tGvefHvfH9 .mbr-section-btn {
  color: #626462;
}
.cid-tGvefHN4HC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGvefHN4HC iframe,
.cid-tGvefHN4HC img,
.cid-tGvefHN4HC video {
  width: 100%;
}
.cid-tGvefHN4HC .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGvefHN4HC .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGvefHN4HC .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGvefHN4HC .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGvefHN4HC .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGvefHN4HC .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGvefHN4HC .mbr-media {
  position: relative;
}
.cid-tGvefHN4HC .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGvefHN4HC .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGvefHN4HC .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGvefHN4HC .box {
  padding: 0 !important;
}
.cid-tGvefHN4HC .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGvefHN4HC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGvefHN4HC .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGvefHN4HC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGvefHN4HC .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGvefHN4HC .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGvefHN4HC .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGvefIFmGD {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGvefIFmGD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGvefIFmGD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGvefIFmGD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGvefIFmGD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGvefIFmGD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGvefIFmGD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGvefIFmGD .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGvefIFmGD .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGvefIFmGD .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGvefIFmGD .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGvefIFmGD .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGvefIFmGD .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGvefIFmGD .mbr-gallery-filter ul {
  display: block;
}
.cid-tGvefIFmGD .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGvefIFmGD .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGvefIFmGD .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGvefIFmGD .mbr-gallery-filter li.active::after,
.cid-tGvefIFmGD .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGvefIFmGD .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGvefIFmGD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGvefIFmGD .icon-focus:before {
  content: '\e95e';
}
.cid-tGvefIFmGD .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGvefIFmGD .mbr-section-title {
  margin: 0;
}
.cid-tGvefIFmGD .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGvefIFmGD .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGvefJGe8a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGvefJGe8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvefJGe8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGvefJGe8a .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGvefJGe8a .container-fluid {
    padding: 0;
  }
}
.cid-tGvefJGe8a .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGvefJGe8a .container {
    padding: 0 20px;
  }
}
.cid-tGvefJGe8a .row {
  justify-content: center;
}
.cid-tGvefJGe8a .card {
  padding: 0;
}
.cid-tGvefJGe8a .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGvefJGe8a .card img {
    height: 300px;
  }
}
.cid-tGvefJGe8a .row.cards {
  margin: 0;
}
.cid-tGvefJGe8a .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGvefJGe8a .row.cards img {
    height: 300px;
  }
}
.cid-tGvlKfglrL .navbar-dropdown {
  position: relative !important;
}
.cid-tGvlKfglrL .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-tGvlKfglrL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tGvlKfglrL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGvlKfglrL .dropdown-item:hover,
.cid-tGvlKfglrL .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tGvlKfglrL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGvlKfglrL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGvlKfglrL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tGvlKfglrL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGvlKfglrL .nav-link {
  position: relative;
}
.cid-tGvlKfglrL .container {
  display: flex;
  margin: auto;
}
.cid-tGvlKfglrL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGvlKfglrL .nav-item:focus,
.cid-tGvlKfglrL .nav-link:focus {
  outline: none;
}
.cid-tGvlKfglrL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGvlKfglrL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGvlKfglrL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGvlKfglrL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGvlKfglrL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGvlKfglrL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGvlKfglrL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tGvlKfglrL .navbar.opened {
  transition: all 0.3s;
}
.cid-tGvlKfglrL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGvlKfglrL .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tGvlKfglrL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGvlKfglrL .navbar.collapsed {
  justify-content: center;
}
.cid-tGvlKfglrL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGvlKfglrL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tGvlKfglrL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGvlKfglrL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGvlKfglrL .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-tGvlKfglrL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGvlKfglrL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGvlKfglrL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGvlKfglrL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGvlKfglrL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGvlKfglrL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGvlKfglrL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGvlKfglrL .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-tGvlKfglrL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGvlKfglrL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGvlKfglrL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tGvlKfglrL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGvlKfglrL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGvlKfglrL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGvlKfglrL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGvlKfglrL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGvlKfglrL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGvlKfglrL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGvlKfglrL .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tGvlKfglrL .navbar-brand {
    width: 85%;
  }
}
.cid-tGvlKfglrL .dropdown-item.active,
.cid-tGvlKfglrL .dropdown-item:active {
  background-color: transparent;
}
.cid-tGvlKfglrL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGvlKfglrL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGvlKfglrL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGvlKfglrL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tGvlKfglrL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGvlKfglrL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGvlKfglrL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGvlKfglrL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGvlKfglrL button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGvlKfglrL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tGvlKfglrL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGvlKfglrL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvlKfglrL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGvlKfglrL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGvlKfglrL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvlKfglrL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGvlKfglrL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGvlKfglrL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGvlKfglrL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGvlKfglrL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGvlKfglrL .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-tGvlKfglrL .navbar {
    height: 70px;
  }
  .cid-tGvlKfglrL .navbar.opened {
    height: auto;
  }
  .cid-tGvlKfglrL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGvlKd2qUk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGvlKd2qUk .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tGvlKd2qUk .image-wrap img {
  transition: all .9s ease;
}
.cid-tGvlKd2qUk .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tGvlKd2qUk .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tGvlKd2qUk .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tGvlKd2qUk .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tGvlKdkvAF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tGvlKdkvAF .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGvlKdkvAF .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tGvlKdkvAF .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGvlKdkvAF .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGvlKdkvAF .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGvlKdkvAF .mbr-text,
.cid-tGvlKdkvAF .mbr-section-btn {
  color: #626462;
}
.cid-tGvlKdCOIn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tGvlKdCOIn iframe,
.cid-tGvlKdCOIn img,
.cid-tGvlKdCOIn video {
  width: 100%;
}
.cid-tGvlKdCOIn .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-tGvlKdCOIn .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tGvlKdCOIn .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tGvlKdCOIn .mbr-section-title {
  color: #e3ebf3;
}
.cid-tGvlKdCOIn .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-tGvlKdCOIn .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-tGvlKdCOIn .mbr-media {
  position: relative;
}
.cid-tGvlKdCOIn .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tGvlKdCOIn .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-tGvlKdCOIn .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-tGvlKdCOIn .box {
  padding: 0 !important;
}
.cid-tGvlKdCOIn .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-tGvlKdCOIn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tGvlKdCOIn .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-tGvlKdCOIn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tGvlKdCOIn .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tGvlKdCOIn .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tGvlKdCOIn .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGvlKeDR02 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGvlKeDR02 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tGvlKeDR02 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGvlKeDR02 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tGvlKeDR02 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tGvlKeDR02 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tGvlKeDR02 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tGvlKeDR02 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tGvlKeDR02 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tGvlKeDR02 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tGvlKeDR02 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tGvlKeDR02 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tGvlKeDR02 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tGvlKeDR02 .mbr-gallery-filter ul {
  display: block;
}
.cid-tGvlKeDR02 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tGvlKeDR02 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tGvlKeDR02 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tGvlKeDR02 .mbr-gallery-filter li.active::after,
.cid-tGvlKeDR02 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tGvlKeDR02 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tGvlKeDR02 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tGvlKeDR02 .icon-focus:before {
  content: '\e95e';
}
.cid-tGvlKeDR02 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tGvlKeDR02 .mbr-section-title {
  margin: 0;
}
.cid-tGvlKeDR02 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tGvlKeDR02 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tGvqjAQmJ0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tGvqjAQmJ0 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tGvqjAQmJ0 .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tGvqjAQmJ0 .article-list li p {
  margin-bottom: 0;
}
.cid-tGvqjAQmJ0 .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tGvqjAQmJ0 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tGvqjAQmJ0 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tGvqjAQmJ0 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tGvqjAQmJ0 .mbr-text {
  color: #626462;
}
.cid-tGvlKf0wVK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tGvlKf0wVK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGvlKf0wVK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGvlKf0wVK .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGvlKf0wVK .container-fluid {
    padding: 0;
  }
}
.cid-tGvlKf0wVK .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGvlKf0wVK .container {
    padding: 0 20px;
  }
}
.cid-tGvlKf0wVK .row {
  justify-content: center;
}
.cid-tGvlKf0wVK .card {
  padding: 0;
}
.cid-tGvlKf0wVK .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGvlKf0wVK .card img {
    height: 300px;
  }
}
.cid-tGvlKf0wVK .row.cards {
  margin: 0;
}
.cid-tGvlKf0wVK .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tGvlKf0wVK .row.cards img {
    height: 300px;
  }
}
.cid-tRPr40C7FY .navbar-dropdown {
  position: relative !important;
}
.cid-tRPr40C7FY .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-tRPr40C7FY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tRPr40C7FY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRPr40C7FY .dropdown-item:hover,
.cid-tRPr40C7FY .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tRPr40C7FY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRPr40C7FY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRPr40C7FY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRPr40C7FY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRPr40C7FY .nav-link {
  position: relative;
}
.cid-tRPr40C7FY .container {
  display: flex;
  margin: auto;
}
.cid-tRPr40C7FY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRPr40C7FY .nav-item:focus,
.cid-tRPr40C7FY .nav-link:focus {
  outline: none;
}
.cid-tRPr40C7FY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRPr40C7FY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRPr40C7FY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRPr40C7FY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRPr40C7FY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRPr40C7FY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRPr40C7FY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tRPr40C7FY .navbar.opened {
  transition: all 0.3s;
}
.cid-tRPr40C7FY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRPr40C7FY .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tRPr40C7FY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRPr40C7FY .navbar.collapsed {
  justify-content: center;
}
.cid-tRPr40C7FY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRPr40C7FY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tRPr40C7FY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRPr40C7FY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRPr40C7FY .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-tRPr40C7FY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRPr40C7FY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRPr40C7FY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRPr40C7FY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRPr40C7FY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRPr40C7FY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRPr40C7FY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRPr40C7FY .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-tRPr40C7FY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRPr40C7FY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRPr40C7FY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRPr40C7FY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRPr40C7FY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRPr40C7FY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRPr40C7FY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRPr40C7FY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRPr40C7FY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRPr40C7FY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRPr40C7FY .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tRPr40C7FY .navbar-brand {
    width: 85%;
  }
}
.cid-tRPr40C7FY .dropdown-item.active,
.cid-tRPr40C7FY .dropdown-item:active {
  background-color: transparent;
}
.cid-tRPr40C7FY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRPr40C7FY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRPr40C7FY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRPr40C7FY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tRPr40C7FY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRPr40C7FY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRPr40C7FY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRPr40C7FY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRPr40C7FY button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRPr40C7FY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tRPr40C7FY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRPr40C7FY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRPr40C7FY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRPr40C7FY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRPr40C7FY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRPr40C7FY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRPr40C7FY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRPr40C7FY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRPr40C7FY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRPr40C7FY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRPr40C7FY .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-tRPr40C7FY .navbar {
    height: 70px;
  }
  .cid-tRPr40C7FY .navbar.opened {
    height: auto;
  }
  .cid-tRPr40C7FY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRPr3YVNae {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tRPr3YVNae .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tRPr3YVNae .image-wrap img {
  transition: all .9s ease;
}
.cid-tRPr3YVNae .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tRPr3YVNae .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tRPr3YVNae .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tRPr3YVNae .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tRPr3ZuiR6 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tRPr3ZuiR6 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRPr3ZuiR6 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tRPr3ZuiR6 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRPr3ZuiR6 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRPr3ZuiR6 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRPr3ZuiR6 .mbr-text,
.cid-tRPr3ZuiR6 .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-tRPr3ZJm9D {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRPr3ZJm9D .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRPr3ZJm9D .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRPr3ZJm9D .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRPr3ZJm9D .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRPr3ZJm9D .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tRPr3ZJm9D .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tRPr3ZJm9D .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter ul {
  display: block;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-filter li.active::after,
.cid-tRPr3ZJm9D .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tRPr3ZJm9D .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRPr3ZJm9D .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tRPr3ZJm9D .icon-focus:before {
  content: '\e95e';
}
.cid-tRPr3ZJm9D .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tRPr3ZJm9D .mbr-section-title {
  margin: 0;
}
.cid-tRPr3ZJm9D .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tRPr3ZJm9D .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tRPr40gcI0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tRPr40gcI0 .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRPr40gcI0 .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tRPr40gcI0 .article-list li p {
  margin-bottom: 0;
}
.cid-tRPr40gcI0 .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tRPr40gcI0 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRPr40gcI0 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRPr40gcI0 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRPr40gcI0 .mbr-text {
  color: #626462;
}
.cid-tRPr40spOF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tRPr40spOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRPr40spOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRPr40spOF .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tRPr40spOF .container-fluid {
    padding: 0;
  }
}
.cid-tRPr40spOF .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tRPr40spOF .container {
    padding: 0 20px;
  }
}
.cid-tRPr40spOF .row {
  justify-content: center;
}
.cid-tRPr40spOF .card {
  padding: 0;
}
.cid-tRPr40spOF .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRPr40spOF .card img {
    height: 300px;
  }
}
.cid-tRPr40spOF .row.cards {
  margin: 0;
}
.cid-tRPr40spOF .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRPr40spOF .row.cards img {
    height: 300px;
  }
}
.cid-tRPHxD8Vu4 .navbar-dropdown {
  position: relative !important;
}
.cid-tRPHxD8Vu4 .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-tRPHxD8Vu4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tRPHxD8Vu4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRPHxD8Vu4 .dropdown-item:hover,
.cid-tRPHxD8Vu4 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tRPHxD8Vu4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRPHxD8Vu4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRPHxD8Vu4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRPHxD8Vu4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRPHxD8Vu4 .nav-link {
  position: relative;
}
.cid-tRPHxD8Vu4 .container {
  display: flex;
  margin: auto;
}
.cid-tRPHxD8Vu4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRPHxD8Vu4 .nav-item:focus,
.cid-tRPHxD8Vu4 .nav-link:focus {
  outline: none;
}
.cid-tRPHxD8Vu4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRPHxD8Vu4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRPHxD8Vu4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRPHxD8Vu4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRPHxD8Vu4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRPHxD8Vu4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRPHxD8Vu4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tRPHxD8Vu4 .navbar.opened {
  transition: all 0.3s;
}
.cid-tRPHxD8Vu4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRPHxD8Vu4 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tRPHxD8Vu4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRPHxD8Vu4 .navbar.collapsed {
  justify-content: center;
}
.cid-tRPHxD8Vu4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRPHxD8Vu4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tRPHxD8Vu4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRPHxD8Vu4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRPHxD8Vu4 .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-tRPHxD8Vu4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRPHxD8Vu4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRPHxD8Vu4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRPHxD8Vu4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRPHxD8Vu4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRPHxD8Vu4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRPHxD8Vu4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRPHxD8Vu4 .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-tRPHxD8Vu4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRPHxD8Vu4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRPHxD8Vu4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRPHxD8Vu4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRPHxD8Vu4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRPHxD8Vu4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRPHxD8Vu4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRPHxD8Vu4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRPHxD8Vu4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRPHxD8Vu4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRPHxD8Vu4 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tRPHxD8Vu4 .navbar-brand {
    width: 85%;
  }
}
.cid-tRPHxD8Vu4 .dropdown-item.active,
.cid-tRPHxD8Vu4 .dropdown-item:active {
  background-color: transparent;
}
.cid-tRPHxD8Vu4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRPHxD8Vu4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRPHxD8Vu4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRPHxD8Vu4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tRPHxD8Vu4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRPHxD8Vu4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRPHxD8Vu4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRPHxD8Vu4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRPHxD8Vu4 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRPHxD8Vu4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tRPHxD8Vu4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRPHxD8Vu4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRPHxD8Vu4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRPHxD8Vu4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRPHxD8Vu4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRPHxD8Vu4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRPHxD8Vu4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRPHxD8Vu4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRPHxD8Vu4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRPHxD8Vu4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRPHxD8Vu4 .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-tRPHxD8Vu4 .navbar {
    height: 70px;
  }
  .cid-tRPHxD8Vu4 .navbar.opened {
    height: auto;
  }
  .cid-tRPHxD8Vu4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRPHxB8pXN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tRPHxB8pXN .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tRPHxB8pXN .image-wrap img {
  transition: all .9s ease;
}
.cid-tRPHxB8pXN .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tRPHxB8pXN .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tRPHxB8pXN .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tRPHxB8pXN .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tRPHxBRZRy {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tRPHxBRZRy .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRPHxBRZRy .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tRPHxBRZRy .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRPHxBRZRy .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRPHxBRZRy .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRPHxBRZRy .mbr-text,
.cid-tRPHxBRZRy .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-tRPHxC7Vr3 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRPHxC7Vr3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRPHxC7Vr3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRPHxC7Vr3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRPHxC7Vr3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRPHxC7Vr3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tRPHxC7Vr3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter ul {
  display: block;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-filter li.active::after,
.cid-tRPHxC7Vr3 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tRPHxC7Vr3 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRPHxC7Vr3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tRPHxC7Vr3 .icon-focus:before {
  content: '\e95e';
}
.cid-tRPHxC7Vr3 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tRPHxC7Vr3 .mbr-section-title {
  margin: 0;
}
.cid-tRPHxC7Vr3 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tRPHxC7Vr3 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tRPHxCLgNN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tRPHxCLgNN .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRPHxCLgNN .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tRPHxCLgNN .article-list li p {
  margin-bottom: 0;
}
.cid-tRPHxCLgNN .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tRPHxCLgNN .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRPHxCLgNN .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRPHxCLgNN .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRPHxCLgNN .mbr-text {
  color: #626462;
}
.cid-tRPHxCWkAY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tRPHxCWkAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRPHxCWkAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRPHxCWkAY .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tRPHxCWkAY .container-fluid {
    padding: 0;
  }
}
.cid-tRPHxCWkAY .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tRPHxCWkAY .container {
    padding: 0 20px;
  }
}
.cid-tRPHxCWkAY .row {
  justify-content: center;
}
.cid-tRPHxCWkAY .card {
  padding: 0;
}
.cid-tRPHxCWkAY .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRPHxCWkAY .card img {
    height: 300px;
  }
}
.cid-tRPHxCWkAY .row.cards {
  margin: 0;
}
.cid-tRPHxCWkAY .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRPHxCWkAY .row.cards img {
    height: 300px;
  }
}
.cid-tRQ1CG0Z4A .navbar-dropdown {
  position: relative !important;
}
.cid-tRQ1CG0Z4A .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-tRQ1CG0Z4A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tRQ1CG0Z4A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRQ1CG0Z4A .dropdown-item:hover,
.cid-tRQ1CG0Z4A .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tRQ1CG0Z4A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRQ1CG0Z4A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRQ1CG0Z4A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRQ1CG0Z4A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRQ1CG0Z4A .nav-link {
  position: relative;
}
.cid-tRQ1CG0Z4A .container {
  display: flex;
  margin: auto;
}
.cid-tRQ1CG0Z4A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRQ1CG0Z4A .nav-item:focus,
.cid-tRQ1CG0Z4A .nav-link:focus {
  outline: none;
}
.cid-tRQ1CG0Z4A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRQ1CG0Z4A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRQ1CG0Z4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRQ1CG0Z4A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRQ1CG0Z4A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRQ1CG0Z4A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRQ1CG0Z4A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tRQ1CG0Z4A .navbar.opened {
  transition: all 0.3s;
}
.cid-tRQ1CG0Z4A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRQ1CG0Z4A .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tRQ1CG0Z4A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRQ1CG0Z4A .navbar.collapsed {
  justify-content: center;
}
.cid-tRQ1CG0Z4A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRQ1CG0Z4A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tRQ1CG0Z4A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRQ1CG0Z4A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRQ1CG0Z4A .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-tRQ1CG0Z4A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRQ1CG0Z4A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRQ1CG0Z4A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRQ1CG0Z4A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRQ1CG0Z4A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRQ1CG0Z4A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRQ1CG0Z4A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRQ1CG0Z4A .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-tRQ1CG0Z4A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRQ1CG0Z4A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRQ1CG0Z4A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRQ1CG0Z4A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRQ1CG0Z4A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRQ1CG0Z4A .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRQ1CG0Z4A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRQ1CG0Z4A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRQ1CG0Z4A .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRQ1CG0Z4A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRQ1CG0Z4A .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tRQ1CG0Z4A .navbar-brand {
    width: 85%;
  }
}
.cid-tRQ1CG0Z4A .dropdown-item.active,
.cid-tRQ1CG0Z4A .dropdown-item:active {
  background-color: transparent;
}
.cid-tRQ1CG0Z4A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRQ1CG0Z4A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRQ1CG0Z4A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRQ1CG0Z4A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tRQ1CG0Z4A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRQ1CG0Z4A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRQ1CG0Z4A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRQ1CG0Z4A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRQ1CG0Z4A button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRQ1CG0Z4A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tRQ1CG0Z4A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRQ1CG0Z4A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRQ1CG0Z4A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRQ1CG0Z4A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRQ1CG0Z4A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRQ1CG0Z4A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRQ1CG0Z4A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRQ1CG0Z4A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRQ1CG0Z4A .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRQ1CG0Z4A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRQ1CG0Z4A .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-tRQ1CG0Z4A .navbar {
    height: 70px;
  }
  .cid-tRQ1CG0Z4A .navbar.opened {
    height: auto;
  }
  .cid-tRQ1CG0Z4A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRQ1CDBuYK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tRQ1CDBuYK .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tRQ1CDBuYK .image-wrap img {
  transition: all .9s ease;
}
.cid-tRQ1CDBuYK .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tRQ1CDBuYK .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tRQ1CDBuYK .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tRQ1CDBuYK .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tRQ1CE47KT {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tRQ1CE47KT .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRQ1CE47KT .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tRQ1CE47KT .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRQ1CE47KT .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRQ1CE47KT .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRQ1CE47KT .mbr-text,
.cid-tRQ1CE47KT .mbr-section-btn {
  color: #626462;
}
.cid-tRQ1CFjNHa {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRQ1CFjNHa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRQ1CFjNHa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRQ1CFjNHa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRQ1CFjNHa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRQ1CFjNHa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tRQ1CFjNHa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tRQ1CFjNHa .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter ul {
  display: block;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-filter li.active::after,
.cid-tRQ1CFjNHa .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tRQ1CFjNHa .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRQ1CFjNHa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tRQ1CFjNHa .icon-focus:before {
  content: '\e95e';
}
.cid-tRQ1CFjNHa .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tRQ1CFjNHa .mbr-section-title {
  margin: 0;
}
.cid-tRQ1CFjNHa .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tRQ1CFjNHa .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tRQ1CFD1uB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tRQ1CFD1uB .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRQ1CFD1uB .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tRQ1CFD1uB .article-list li p {
  margin-bottom: 0;
}
.cid-tRQ1CFD1uB .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-tRQ1CFD1uB .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRQ1CFD1uB .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRQ1CFD1uB .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRQ1CFD1uB .mbr-text {
  color: #626462;
}
.cid-tRQ1CFOooL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tRQ1CFOooL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQ1CFOooL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRQ1CFOooL .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tRQ1CFOooL .container-fluid {
    padding: 0;
  }
}
.cid-tRQ1CFOooL .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tRQ1CFOooL .container {
    padding: 0 20px;
  }
}
.cid-tRQ1CFOooL .row {
  justify-content: center;
}
.cid-tRQ1CFOooL .card {
  padding: 0;
}
.cid-tRQ1CFOooL .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRQ1CFOooL .card img {
    height: 300px;
  }
}
.cid-tRQ1CFOooL .row.cards {
  margin: 0;
}
.cid-tRQ1CFOooL .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRQ1CFOooL .row.cards img {
    height: 300px;
  }
}
.cid-tRQhHpIAJJ .navbar-dropdown {
  position: relative !important;
}
.cid-tRQhHpIAJJ .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-tRQhHpIAJJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tRQhHpIAJJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRQhHpIAJJ .dropdown-item:hover,
.cid-tRQhHpIAJJ .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tRQhHpIAJJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRQhHpIAJJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRQhHpIAJJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRQhHpIAJJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRQhHpIAJJ .nav-link {
  position: relative;
}
.cid-tRQhHpIAJJ .container {
  display: flex;
  margin: auto;
}
.cid-tRQhHpIAJJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRQhHpIAJJ .nav-item:focus,
.cid-tRQhHpIAJJ .nav-link:focus {
  outline: none;
}
.cid-tRQhHpIAJJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRQhHpIAJJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRQhHpIAJJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRQhHpIAJJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRQhHpIAJJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRQhHpIAJJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRQhHpIAJJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tRQhHpIAJJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tRQhHpIAJJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRQhHpIAJJ .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tRQhHpIAJJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRQhHpIAJJ .navbar.collapsed {
  justify-content: center;
}
.cid-tRQhHpIAJJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRQhHpIAJJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tRQhHpIAJJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRQhHpIAJJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRQhHpIAJJ .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-tRQhHpIAJJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRQhHpIAJJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRQhHpIAJJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRQhHpIAJJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRQhHpIAJJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRQhHpIAJJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRQhHpIAJJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRQhHpIAJJ .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-tRQhHpIAJJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRQhHpIAJJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRQhHpIAJJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRQhHpIAJJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRQhHpIAJJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tRQhHpIAJJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRQhHpIAJJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRQhHpIAJJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRQhHpIAJJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRQhHpIAJJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRQhHpIAJJ .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tRQhHpIAJJ .navbar-brand {
    width: 85%;
  }
}
.cid-tRQhHpIAJJ .dropdown-item.active,
.cid-tRQhHpIAJJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tRQhHpIAJJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRQhHpIAJJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRQhHpIAJJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRQhHpIAJJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tRQhHpIAJJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRQhHpIAJJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRQhHpIAJJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRQhHpIAJJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRQhHpIAJJ button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRQhHpIAJJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tRQhHpIAJJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRQhHpIAJJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRQhHpIAJJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRQhHpIAJJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRQhHpIAJJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRQhHpIAJJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRQhHpIAJJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRQhHpIAJJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRQhHpIAJJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tRQhHpIAJJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRQhHpIAJJ .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-tRQhHpIAJJ .navbar {
    height: 70px;
  }
  .cid-tRQhHpIAJJ .navbar.opened {
    height: auto;
  }
  .cid-tRQhHpIAJJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRQhHnDQws {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tRQhHnDQws .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tRQhHnDQws .image-wrap img {
  transition: all .9s ease;
}
.cid-tRQhHnDQws .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tRQhHnDQws .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tRQhHnDQws .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tRQhHnDQws .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tRQhHoij4k {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tRQhHoij4k .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRQhHoij4k .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tRQhHoij4k .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRQhHoij4k .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRQhHoij4k .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRQhHoij4k .mbr-text,
.cid-tRQhHoij4k .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-tRQhHoQzFV {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tRQhHoQzFV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tRQhHoQzFV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRQhHoQzFV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRQhHoQzFV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tRQhHoQzFV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tRQhHoQzFV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tRQhHoQzFV .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tRQhHoQzFV .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tRQhHoQzFV .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tRQhHoQzFV .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tRQhHoQzFV .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tRQhHoQzFV .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tRQhHoQzFV .mbr-gallery-filter ul {
  display: block;
}
.cid-tRQhHoQzFV .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tRQhHoQzFV .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tRQhHoQzFV .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tRQhHoQzFV .mbr-gallery-filter li.active::after,
.cid-tRQhHoQzFV .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tRQhHoQzFV .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tRQhHoQzFV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tRQhHoQzFV .icon-focus:before {
  content: '\e95e';
}
.cid-tRQhHoQzFV .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tRQhHoQzFV .mbr-section-title {
  margin: 0;
}
.cid-tRQhHoQzFV .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tRQhHoQzFV .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tRQhHpp5Wi {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tRQhHpp5Wi .article-wrapper {
  padding-bottom: 200px;
}
.cid-tRQhHpp5Wi .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-tRQhHpp5Wi .article-list li p {
  margin-bottom: 0;
}
.cid-tRQhHpp5Wi .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tRQhHpp5Wi .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tRQhHpp5Wi .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tRQhHpp5Wi .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tRQhHpp5Wi .mbr-text {
  color: #626462;
}
.cid-tRQhHpyghm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tRQhHpyghm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRQhHpyghm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRQhHpyghm .container-fluid {
  padding: 0;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tRQhHpyghm .container-fluid {
    padding: 0;
  }
}
.cid-tRQhHpyghm .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tRQhHpyghm .container {
    padding: 0 20px;
  }
}
.cid-tRQhHpyghm .row {
  justify-content: center;
}
.cid-tRQhHpyghm .card {
  padding: 0;
}
.cid-tRQhHpyghm .card img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRQhHpyghm .card img {
    height: 300px;
  }
}
.cid-tRQhHpyghm .row.cards {
  margin: 0;
}
.cid-tRQhHpyghm .row.cards img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tRQhHpyghm .row.cards img {
    height: 300px;
  }
}
.cid-tT8bYziWxY .navbar-dropdown {
  position: relative !important;
}
.cid-tT8bYziWxY .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-tT8bYziWxY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tT8bYziWxY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT8bYziWxY .dropdown-item:hover,
.cid-tT8bYziWxY .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tT8bYziWxY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT8bYziWxY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT8bYziWxY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT8bYziWxY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT8bYziWxY .nav-link {
  position: relative;
}
.cid-tT8bYziWxY .container {
  display: flex;
  margin: auto;
}
.cid-tT8bYziWxY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT8bYziWxY .nav-item:focus,
.cid-tT8bYziWxY .nav-link:focus {
  outline: none;
}
.cid-tT8bYziWxY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT8bYziWxY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT8bYziWxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT8bYziWxY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT8bYziWxY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT8bYziWxY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT8bYziWxY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tT8bYziWxY .navbar.opened {
  transition: all 0.3s;
}
.cid-tT8bYziWxY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT8bYziWxY .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tT8bYziWxY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT8bYziWxY .navbar.collapsed {
  justify-content: center;
}
.cid-tT8bYziWxY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT8bYziWxY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tT8bYziWxY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT8bYziWxY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT8bYziWxY .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-tT8bYziWxY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT8bYziWxY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT8bYziWxY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT8bYziWxY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT8bYziWxY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT8bYziWxY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT8bYziWxY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT8bYziWxY .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-tT8bYziWxY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT8bYziWxY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT8bYziWxY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tT8bYziWxY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT8bYziWxY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tT8bYziWxY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT8bYziWxY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT8bYziWxY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT8bYziWxY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tT8bYziWxY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT8bYziWxY .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tT8bYziWxY .navbar-brand {
    width: 85%;
  }
}
.cid-tT8bYziWxY .dropdown-item.active,
.cid-tT8bYziWxY .dropdown-item:active {
  background-color: transparent;
}
.cid-tT8bYziWxY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT8bYziWxY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT8bYziWxY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT8bYziWxY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tT8bYziWxY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT8bYziWxY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT8bYziWxY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT8bYziWxY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT8bYziWxY button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT8bYziWxY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tT8bYziWxY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT8bYziWxY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT8bYziWxY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT8bYziWxY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT8bYziWxY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT8bYziWxY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT8bYziWxY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT8bYziWxY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT8bYziWxY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tT8bYziWxY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT8bYziWxY .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-tT8bYziWxY .navbar {
    height: 70px;
  }
  .cid-tT8bYziWxY .navbar.opened {
    height: auto;
  }
  .cid-tT8bYziWxY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT8bYxzvUG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tT8bYxzvUG .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tT8bYxzvUG .image-wrap img {
  transition: all .9s ease;
}
.cid-tT8bYxzvUG .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tT8bYxzvUG .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tT8bYxzvUG .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tT8bYxzvUG .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tT8bYxWx1H {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-tT8bYxWx1H .article-wrapper {
  padding-bottom: 200px;
}
.cid-tT8bYxWx1H .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tT8bYxWx1H .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tT8bYxWx1H .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tT8bYxWx1H .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tT8bYxWx1H .mbr-text,
.cid-tT8bYxWx1H .mbr-section-btn {
  color: #626462;
}
.cid-tT8bYybwDU {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tT8bYybwDU .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT8bYybwDU .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT8bYybwDU .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT8bYybwDU .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT8bYybwDU .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tT8bYybwDU .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tT8bYybwDU .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tT8bYybwDU .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tT8bYybwDU .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tT8bYybwDU .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tT8bYybwDU .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tT8bYybwDU .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tT8bYybwDU .mbr-gallery-filter ul {
  display: block;
}
.cid-tT8bYybwDU .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tT8bYybwDU .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tT8bYybwDU .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tT8bYybwDU .mbr-gallery-filter li.active::after,
.cid-tT8bYybwDU .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tT8bYybwDU .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tT8bYybwDU .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tT8bYybwDU .icon-focus:before {
  content: '\e95e';
}
.cid-tT8bYybwDU .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tT8bYybwDU .mbr-section-title {
  margin: 0;
}
.cid-tT8bYybwDU .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tT8bYybwDU .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-tT8icMRttu .navbar-dropdown {
  position: relative !important;
}
.cid-tT8icMRttu .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-tT8icMRttu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-tT8icMRttu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT8icMRttu .dropdown-item:hover,
.cid-tT8icMRttu .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-tT8icMRttu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT8icMRttu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT8icMRttu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT8icMRttu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT8icMRttu .nav-link {
  position: relative;
}
.cid-tT8icMRttu .container {
  display: flex;
  margin: auto;
}
.cid-tT8icMRttu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT8icMRttu .nav-item:focus,
.cid-tT8icMRttu .nav-link:focus {
  outline: none;
}
.cid-tT8icMRttu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT8icMRttu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT8icMRttu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT8icMRttu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT8icMRttu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT8icMRttu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT8icMRttu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-tT8icMRttu .navbar.opened {
  transition: all 0.3s;
}
.cid-tT8icMRttu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT8icMRttu .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-tT8icMRttu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT8icMRttu .navbar.collapsed {
  justify-content: center;
}
.cid-tT8icMRttu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT8icMRttu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tT8icMRttu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT8icMRttu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT8icMRttu .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-tT8icMRttu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT8icMRttu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT8icMRttu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT8icMRttu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT8icMRttu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT8icMRttu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT8icMRttu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT8icMRttu .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-tT8icMRttu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT8icMRttu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT8icMRttu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tT8icMRttu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT8icMRttu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tT8icMRttu .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT8icMRttu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT8icMRttu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT8icMRttu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tT8icMRttu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT8icMRttu .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-tT8icMRttu .navbar-brand {
    width: 85%;
  }
}
.cid-tT8icMRttu .dropdown-item.active,
.cid-tT8icMRttu .dropdown-item:active {
  background-color: transparent;
}
.cid-tT8icMRttu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT8icMRttu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT8icMRttu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT8icMRttu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-tT8icMRttu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT8icMRttu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT8icMRttu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT8icMRttu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT8icMRttu button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT8icMRttu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-tT8icMRttu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT8icMRttu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT8icMRttu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT8icMRttu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT8icMRttu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT8icMRttu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT8icMRttu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT8icMRttu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT8icMRttu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tT8icMRttu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT8icMRttu .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-tT8icMRttu .navbar {
    height: 70px;
  }
  .cid-tT8icMRttu .navbar.opened {
    height: auto;
  }
  .cid-tT8icMRttu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT8icKADUT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-tT8icKADUT .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-tT8icKADUT .image-wrap img {
  transition: all .9s ease;
}
.cid-tT8icKADUT .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-tT8icKADUT .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-tT8icKADUT .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-tT8icKADUT .image-wrap {
    padding: 10px 20px;
  }
}
.cid-tT8icLoclT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-tT8icLoclT .article-wrapper {
  border-bottom: 2px solid #191919;
}
.cid-tT8icLoclT .article-wrapper {
  padding-bottom: 200px;
}
.cid-tT8icLoclT .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tT8icLoclT .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-tT8icLoclT .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-tT8icLoclT .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-tT8icLoclT .mbr-text,
.cid-tT8icLoclT .mbr-section-btn {
  color: #626462;
}
.cid-tT8icMiZ9X {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tT8icMiZ9X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tT8icMiZ9X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT8icMiZ9X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT8icMiZ9X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tT8icMiZ9X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tT8icMiZ9X .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tT8icMiZ9X .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-tT8icMiZ9X .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-tT8icMiZ9X .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-tT8icMiZ9X .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-tT8icMiZ9X .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-tT8icMiZ9X .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-tT8icMiZ9X .mbr-gallery-filter ul {
  display: block;
}
.cid-tT8icMiZ9X .mbr-gallery-filter ul li {
  position: relative;
}
.cid-tT8icMiZ9X .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-tT8icMiZ9X .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-tT8icMiZ9X .mbr-gallery-filter li.active::after,
.cid-tT8icMiZ9X .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-tT8icMiZ9X .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tT8icMiZ9X .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tT8icMiZ9X .icon-focus:before {
  content: '\e95e';
}
.cid-tT8icMiZ9X .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-tT8icMiZ9X .mbr-section-title {
  margin: 0;
}
.cid-tT8icMiZ9X .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-tT8icMiZ9X .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-u1mXxxjMQI .navbar-dropdown {
  position: relative !important;
}
.cid-u1mXxxjMQI .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-u1mXxxjMQI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-u1mXxxjMQI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u1mXxxjMQI .dropdown-item:hover,
.cid-u1mXxxjMQI .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-u1mXxxjMQI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u1mXxxjMQI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u1mXxxjMQI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u1mXxxjMQI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u1mXxxjMQI .nav-link {
  position: relative;
}
.cid-u1mXxxjMQI .container {
  display: flex;
  margin: auto;
}
.cid-u1mXxxjMQI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u1mXxxjMQI .nav-item:focus,
.cid-u1mXxxjMQI .nav-link:focus {
  outline: none;
}
.cid-u1mXxxjMQI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u1mXxxjMQI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1mXxxjMQI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u1mXxxjMQI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u1mXxxjMQI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u1mXxxjMQI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u1mXxxjMQI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-u1mXxxjMQI .navbar.opened {
  transition: all 0.3s;
}
.cid-u1mXxxjMQI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u1mXxxjMQI .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-u1mXxxjMQI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u1mXxxjMQI .navbar.collapsed {
  justify-content: center;
}
.cid-u1mXxxjMQI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u1mXxxjMQI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u1mXxxjMQI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u1mXxxjMQI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u1mXxxjMQI .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-u1mXxxjMQI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u1mXxxjMQI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u1mXxxjMQI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u1mXxxjMQI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u1mXxxjMQI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u1mXxxjMQI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u1mXxxjMQI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u1mXxxjMQI .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-u1mXxxjMQI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u1mXxxjMQI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u1mXxxjMQI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u1mXxxjMQI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u1mXxxjMQI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u1mXxxjMQI .navbar.navbar-short {
  min-height: 60px;
}
.cid-u1mXxxjMQI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u1mXxxjMQI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u1mXxxjMQI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u1mXxxjMQI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u1mXxxjMQI .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-u1mXxxjMQI .navbar-brand {
    width: 85%;
  }
}
.cid-u1mXxxjMQI .dropdown-item.active,
.cid-u1mXxxjMQI .dropdown-item:active {
  background-color: transparent;
}
.cid-u1mXxxjMQI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u1mXxxjMQI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u1mXxxjMQI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u1mXxxjMQI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-u1mXxxjMQI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u1mXxxjMQI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1mXxxjMQI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u1mXxxjMQI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u1mXxxjMQI button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u1mXxxjMQI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-u1mXxxjMQI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u1mXxxjMQI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1mXxxjMQI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u1mXxxjMQI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u1mXxxjMQI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1mXxxjMQI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u1mXxxjMQI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u1mXxxjMQI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u1mXxxjMQI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u1mXxxjMQI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u1mXxxjMQI .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-u1mXxxjMQI .navbar {
    height: 70px;
  }
  .cid-u1mXxxjMQI .navbar.opened {
    height: auto;
  }
  .cid-u1mXxxjMQI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u1mXxy0qpe {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-u1mXxy0qpe .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-u1mXxy0qpe .image-wrap img {
  transition: all .9s ease;
}
.cid-u1mXxy0qpe .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-u1mXxy0qpe .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-u1mXxy0qpe .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-u1mXxy0qpe .image-wrap {
    padding: 10px 20px;
  }
}
.cid-u1mXxyiDXF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-u1mXxyiDXF .article-wrapper {
  padding-bottom: 200px;
}
.cid-u1mXxyiDXF .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-u1mXxyiDXF .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-u1mXxyiDXF .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-u1mXxyiDXF .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-u1mXxyiDXF .mbr-text,
.cid-u1mXxyiDXF .mbr-section-btn {
  color: #626462;
}
.cid-u1mXxysIQI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-u1mXxysIQI iframe,
.cid-u1mXxysIQI img,
.cid-u1mXxysIQI video {
  width: 100%;
}
.cid-u1mXxysIQI .mbr-section-head {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .cid-u1mXxysIQI .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-u1mXxysIQI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-u1mXxysIQI .mbr-section-title {
  color: #e3ebf3;
}
.cid-u1mXxysIQI .mbr-section-subtitle {
  margin-top: 16px;
  color: #6c7a88;
}
@media (max-width: 767px) {
  .cid-u1mXxysIQI .mbr-section-subtitle {
    margin-top: 12px;
  }
}
.cid-u1mXxysIQI .mbr-media {
  position: relative;
}
.cid-u1mXxysIQI .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-u1mXxysIQI .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u1mXxysIQI .icon-wrap .mbr-iconfont {
  color: #e8ebe8;
  opacity: 0.9;
  font-size: 80px;
}
.cid-u1mXxysIQI .box {
  padding: 0 !important;
}
.cid-u1mXxysIQI .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-u1mXxysIQI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-u1mXxysIQI .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-u1mXxysIQI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u1mXxysIQI .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-u1mXxysIQI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u1mXxysIQI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u1mXxyUDJb {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u1mXxyUDJb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u1mXxyUDJb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u1mXxyUDJb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u1mXxyUDJb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u1mXxyUDJb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u1mXxyUDJb .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u1mXxyUDJb .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u1mXxyUDJb .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-u1mXxyUDJb .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-u1mXxyUDJb .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-u1mXxyUDJb .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-u1mXxyUDJb .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-u1mXxyUDJb .mbr-gallery-filter ul {
  display: block;
}
.cid-u1mXxyUDJb .mbr-gallery-filter ul li {
  position: relative;
}
.cid-u1mXxyUDJb .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-u1mXxyUDJb .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-u1mXxyUDJb .mbr-gallery-filter li.active::after,
.cid-u1mXxyUDJb .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-u1mXxyUDJb .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u1mXxyUDJb .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u1mXxyUDJb .icon-focus:before {
  content: '\e95e';
}
.cid-u1mXxyUDJb .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-u1mXxyUDJb .mbr-section-title {
  margin: 0;
}
.cid-u1mXxyUDJb .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-u1mXxyUDJb .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-ufpGbAQ9J8 .navbar-dropdown {
  position: relative !important;
}
.cid-ufpGbAQ9J8 .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-ufpGbAQ9J8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-ufpGbAQ9J8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufpGbAQ9J8 .dropdown-item:hover,
.cid-ufpGbAQ9J8 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-ufpGbAQ9J8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufpGbAQ9J8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufpGbAQ9J8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufpGbAQ9J8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufpGbAQ9J8 .nav-link {
  position: relative;
}
.cid-ufpGbAQ9J8 .container {
  display: flex;
  margin: auto;
}
.cid-ufpGbAQ9J8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufpGbAQ9J8 .nav-item:focus,
.cid-ufpGbAQ9J8 .nav-link:focus {
  outline: none;
}
.cid-ufpGbAQ9J8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufpGbAQ9J8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufpGbAQ9J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufpGbAQ9J8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufpGbAQ9J8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufpGbAQ9J8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufpGbAQ9J8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-ufpGbAQ9J8 .navbar.opened {
  transition: all 0.3s;
}
.cid-ufpGbAQ9J8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufpGbAQ9J8 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-ufpGbAQ9J8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufpGbAQ9J8 .navbar.collapsed {
  justify-content: center;
}
.cid-ufpGbAQ9J8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufpGbAQ9J8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ufpGbAQ9J8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufpGbAQ9J8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufpGbAQ9J8 .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-ufpGbAQ9J8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufpGbAQ9J8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufpGbAQ9J8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufpGbAQ9J8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufpGbAQ9J8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufpGbAQ9J8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufpGbAQ9J8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufpGbAQ9J8 .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-ufpGbAQ9J8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufpGbAQ9J8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufpGbAQ9J8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ufpGbAQ9J8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufpGbAQ9J8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufpGbAQ9J8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufpGbAQ9J8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufpGbAQ9J8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufpGbAQ9J8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufpGbAQ9J8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufpGbAQ9J8 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-ufpGbAQ9J8 .navbar-brand {
    width: 85%;
  }
}
.cid-ufpGbAQ9J8 .dropdown-item.active,
.cid-ufpGbAQ9J8 .dropdown-item:active {
  background-color: transparent;
}
.cid-ufpGbAQ9J8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufpGbAQ9J8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufpGbAQ9J8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufpGbAQ9J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-ufpGbAQ9J8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufpGbAQ9J8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufpGbAQ9J8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufpGbAQ9J8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufpGbAQ9J8 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ufpGbAQ9J8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-ufpGbAQ9J8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufpGbAQ9J8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufpGbAQ9J8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufpGbAQ9J8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufpGbAQ9J8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufpGbAQ9J8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufpGbAQ9J8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufpGbAQ9J8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufpGbAQ9J8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ufpGbAQ9J8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufpGbAQ9J8 .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-ufpGbAQ9J8 .navbar {
    height: 70px;
  }
  .cid-ufpGbAQ9J8 .navbar.opened {
    height: auto;
  }
  .cid-ufpGbAQ9J8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufpGbBhNjb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-ufpGbBhNjb .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-ufpGbBhNjb .image-wrap img {
  transition: all .9s ease;
}
.cid-ufpGbBhNjb .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-ufpGbBhNjb .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-ufpGbBhNjb .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-ufpGbBhNjb .image-wrap {
    padding: 10px 20px;
  }
}
.cid-ufpGbBqW2u {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-ufpGbBqW2u .article-wrapper {
  padding-bottom: 200px;
}
.cid-ufpGbBqW2u .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ufpGbBqW2u .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-ufpGbBqW2u .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-ufpGbBqW2u .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-ufpGbBqW2u .mbr-text,
.cid-ufpGbBqW2u .mbr-section-btn {
  color: #626462;
}
.cid-ufpGbC8pcd {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ufpGbC8pcd .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ufpGbC8pcd .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ufpGbC8pcd .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ufpGbC8pcd .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ufpGbC8pcd .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ufpGbC8pcd .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ufpGbC8pcd .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-ufpGbC8pcd .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-ufpGbC8pcd .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-ufpGbC8pcd .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-ufpGbC8pcd .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-ufpGbC8pcd .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-ufpGbC8pcd .mbr-gallery-filter ul {
  display: block;
}
.cid-ufpGbC8pcd .mbr-gallery-filter ul li {
  position: relative;
}
.cid-ufpGbC8pcd .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-ufpGbC8pcd .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-ufpGbC8pcd .mbr-gallery-filter li.active::after,
.cid-ufpGbC8pcd .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-ufpGbC8pcd .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ufpGbC8pcd .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ufpGbC8pcd .icon-focus:before {
  content: '\e95e';
}
.cid-ufpGbC8pcd .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-ufpGbC8pcd .mbr-section-title {
  margin: 0;
}
.cid-ufpGbC8pcd .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-ufpGbC8pcd .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-ufq5DXqG3s .navbar-dropdown {
  position: relative !important;
}
.cid-ufq5DXqG3s .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-ufq5DXqG3s .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-ufq5DXqG3s .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufq5DXqG3s .dropdown-item:hover,
.cid-ufq5DXqG3s .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-ufq5DXqG3s .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufq5DXqG3s .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufq5DXqG3s .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufq5DXqG3s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufq5DXqG3s .nav-link {
  position: relative;
}
.cid-ufq5DXqG3s .container {
  display: flex;
  margin: auto;
}
.cid-ufq5DXqG3s .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufq5DXqG3s .nav-item:focus,
.cid-ufq5DXqG3s .nav-link:focus {
  outline: none;
}
.cid-ufq5DXqG3s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufq5DXqG3s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufq5DXqG3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufq5DXqG3s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufq5DXqG3s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufq5DXqG3s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufq5DXqG3s .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-ufq5DXqG3s .navbar.opened {
  transition: all 0.3s;
}
.cid-ufq5DXqG3s .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufq5DXqG3s .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-ufq5DXqG3s .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufq5DXqG3s .navbar.collapsed {
  justify-content: center;
}
.cid-ufq5DXqG3s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufq5DXqG3s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ufq5DXqG3s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufq5DXqG3s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufq5DXqG3s .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-ufq5DXqG3s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufq5DXqG3s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufq5DXqG3s .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufq5DXqG3s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufq5DXqG3s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufq5DXqG3s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufq5DXqG3s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufq5DXqG3s .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-ufq5DXqG3s .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufq5DXqG3s .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufq5DXqG3s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ufq5DXqG3s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufq5DXqG3s .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufq5DXqG3s .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufq5DXqG3s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufq5DXqG3s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufq5DXqG3s .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufq5DXqG3s .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufq5DXqG3s .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-ufq5DXqG3s .navbar-brand {
    width: 85%;
  }
}
.cid-ufq5DXqG3s .dropdown-item.active,
.cid-ufq5DXqG3s .dropdown-item:active {
  background-color: transparent;
}
.cid-ufq5DXqG3s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufq5DXqG3s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufq5DXqG3s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufq5DXqG3s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-ufq5DXqG3s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufq5DXqG3s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufq5DXqG3s ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufq5DXqG3s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufq5DXqG3s button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ufq5DXqG3s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-ufq5DXqG3s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufq5DXqG3s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufq5DXqG3s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufq5DXqG3s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufq5DXqG3s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufq5DXqG3s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufq5DXqG3s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufq5DXqG3s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufq5DXqG3s .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ufq5DXqG3s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufq5DXqG3s .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-ufq5DXqG3s .navbar {
    height: 70px;
  }
  .cid-ufq5DXqG3s .navbar.opened {
    height: auto;
  }
  .cid-ufq5DXqG3s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufq5DYa8pk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-ufq5DYa8pk .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-ufq5DYa8pk .image-wrap img {
  transition: all .9s ease;
}
.cid-ufq5DYa8pk .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-ufq5DYa8pk .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-ufq5DYa8pk .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-ufq5DYa8pk .image-wrap {
    padding: 10px 20px;
  }
}
.cid-ufq5DYqYdO {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-ufq5DYqYdO .article-wrapper {
  padding-bottom: 200px;
}
.cid-ufq5DYqYdO .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ufq5DYqYdO .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-ufq5DYqYdO .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-ufq5DYqYdO .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-ufq5DYqYdO .mbr-text,
.cid-ufq5DYqYdO .mbr-section-btn {
  color: #626462;
}
.cid-upXSY3mQyx {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8ebe8;
}
.cid-upXSY3mQyx .mbr-fallback-image.disabled {
  display: none;
}
.cid-upXSY3mQyx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-upXSY3mQyx .container {
    padding: 0 30px;
  }
}
.cid-upXSY3mQyx .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-upXSY3mQyx .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-upXSY3mQyx .box .mbr-media img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-upXSY3mQyx .box .mbr-media img {
    height: 350px;
  }
}
.cid-upXSY3mQyx .box .mbr-media .mbr-iconfont {
  color: #e6c63b;
}
.cid-upXSY3mQyx .mbr-media {
  position: relative;
}
.cid-upXSY3mQyx .mbr-media img {
  width: 200vh;
  object-fit: cover;
}
.cid-upXSY3mQyx a:hover {
  background-image: none !important;
}
.cid-upXSY3mQyx .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-upXSY3mQyx .icon-wrap:hover {
  cursor: pointer;
}
.cid-upXSY3mQyx .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-upXSY3mQyx .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-upXSY3mQyx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-upXSY3mQyx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-upXSY3mQyx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-upXSY3mQyx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-upXSY3mQyx .mbr-section-title {
  color: #ffffff;
}
.cid-ukphofKJWz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ukphofKJWz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ukphofKJWz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ukphofKJWz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ukphofKJWz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ukphofKJWz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ukphofKJWz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ukphofKJWz .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-ukphofKJWz .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-ukphofKJWz .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-ukphofKJWz .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-ukphofKJWz .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-ukphofKJWz .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-ukphofKJWz .mbr-gallery-filter ul {
  display: block;
}
.cid-ukphofKJWz .mbr-gallery-filter ul li {
  position: relative;
}
.cid-ukphofKJWz .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-ukphofKJWz .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-ukphofKJWz .mbr-gallery-filter li.active::after,
.cid-ukphofKJWz .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-ukphofKJWz .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ukphofKJWz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ukphofKJWz .icon-focus:before {
  content: '\e95e';
}
.cid-ukphofKJWz .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-ukphofKJWz .mbr-section-title {
  margin: 0;
}
.cid-ukphofKJWz .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-ukphofKJWz .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-ukphofKJWz .mbr-section-subtitle {
  text-align: left;
}
.cid-ufq5DZSfB5 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ufq5DZSfB5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ufq5DZSfB5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ufq5DZSfB5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ufq5DZSfB5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ufq5DZSfB5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ufq5DZSfB5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-ufq5DZSfB5 .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter ul {
  display: block;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter ul li {
  position: relative;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-filter li.active::after,
.cid-ufq5DZSfB5 .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-ufq5DZSfB5 .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ufq5DZSfB5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ufq5DZSfB5 .icon-focus:before {
  content: '\e95e';
}
.cid-ufq5DZSfB5 .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-ufq5DZSfB5 .mbr-section-title {
  margin: 0;
}
.cid-ufq5DZSfB5 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-ufq5DZSfB5 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-ufq9kCBE3u .navbar-dropdown {
  position: relative !important;
}
.cid-ufq9kCBE3u .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-ufq9kCBE3u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-ufq9kCBE3u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufq9kCBE3u .dropdown-item:hover,
.cid-ufq9kCBE3u .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-ufq9kCBE3u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufq9kCBE3u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufq9kCBE3u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ufq9kCBE3u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufq9kCBE3u .nav-link {
  position: relative;
}
.cid-ufq9kCBE3u .container {
  display: flex;
  margin: auto;
}
.cid-ufq9kCBE3u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufq9kCBE3u .nav-item:focus,
.cid-ufq9kCBE3u .nav-link:focus {
  outline: none;
}
.cid-ufq9kCBE3u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufq9kCBE3u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufq9kCBE3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufq9kCBE3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufq9kCBE3u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufq9kCBE3u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufq9kCBE3u .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-ufq9kCBE3u .navbar.opened {
  transition: all 0.3s;
}
.cid-ufq9kCBE3u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufq9kCBE3u .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-ufq9kCBE3u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufq9kCBE3u .navbar.collapsed {
  justify-content: center;
}
.cid-ufq9kCBE3u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufq9kCBE3u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ufq9kCBE3u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufq9kCBE3u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufq9kCBE3u .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-ufq9kCBE3u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufq9kCBE3u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufq9kCBE3u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufq9kCBE3u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufq9kCBE3u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufq9kCBE3u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufq9kCBE3u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufq9kCBE3u .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-ufq9kCBE3u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufq9kCBE3u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufq9kCBE3u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ufq9kCBE3u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufq9kCBE3u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufq9kCBE3u .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufq9kCBE3u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufq9kCBE3u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufq9kCBE3u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufq9kCBE3u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufq9kCBE3u .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-ufq9kCBE3u .navbar-brand {
    width: 85%;
  }
}
.cid-ufq9kCBE3u .dropdown-item.active,
.cid-ufq9kCBE3u .dropdown-item:active {
  background-color: transparent;
}
.cid-ufq9kCBE3u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufq9kCBE3u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufq9kCBE3u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufq9kCBE3u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-ufq9kCBE3u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufq9kCBE3u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufq9kCBE3u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufq9kCBE3u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufq9kCBE3u button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ufq9kCBE3u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-ufq9kCBE3u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufq9kCBE3u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufq9kCBE3u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufq9kCBE3u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufq9kCBE3u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufq9kCBE3u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufq9kCBE3u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufq9kCBE3u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufq9kCBE3u .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ufq9kCBE3u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufq9kCBE3u .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-ufq9kCBE3u .navbar {
    height: 70px;
  }
  .cid-ufq9kCBE3u .navbar.opened {
    height: auto;
  }
  .cid-ufq9kCBE3u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufq9kEsHnz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ufq9kEsHnz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ufq9kEsHnz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ufq9kEsHnz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ufq9kEsHnz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ufq9kEsHnz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e8ebe8;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-ufq9kEsHnz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ufq9kEsHnz .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-ufq9kEsHnz .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-ufq9kEsHnz .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-ufq9kEsHnz .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-ufq9kEsHnz .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-ufq9kEsHnz .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-ufq9kEsHnz .mbr-gallery-filter ul {
  display: block;
}
.cid-ufq9kEsHnz .mbr-gallery-filter ul li {
  position: relative;
}
.cid-ufq9kEsHnz .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-ufq9kEsHnz .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-ufq9kEsHnz .mbr-gallery-filter li.active::after,
.cid-ufq9kEsHnz .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-ufq9kEsHnz .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-ufq9kEsHnz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #e8ebe8 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-ufq9kEsHnz .icon-focus:before {
  content: '\e95e';
}
.cid-ufq9kEsHnz .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-ufq9kEsHnz .mbr-section-title {
  margin: 0;
}
.cid-ufq9kEsHnz .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-ufq9kEsHnz .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uuLDwAl1V0 .navbar-dropdown {
  position: relative !important;
}
.cid-uuLDwAl1V0 .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-uuLDwAl1V0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-uuLDwAl1V0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuLDwAl1V0 .dropdown-item:hover,
.cid-uuLDwAl1V0 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-uuLDwAl1V0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuLDwAl1V0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuLDwAl1V0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuLDwAl1V0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuLDwAl1V0 .nav-link {
  position: relative;
}
.cid-uuLDwAl1V0 .container {
  display: flex;
  margin: auto;
}
.cid-uuLDwAl1V0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuLDwAl1V0 .nav-item:focus,
.cid-uuLDwAl1V0 .nav-link:focus {
  outline: none;
}
.cid-uuLDwAl1V0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuLDwAl1V0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuLDwAl1V0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuLDwAl1V0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuLDwAl1V0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuLDwAl1V0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuLDwAl1V0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-uuLDwAl1V0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuLDwAl1V0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuLDwAl1V0 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-uuLDwAl1V0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuLDwAl1V0 .navbar.collapsed {
  justify-content: center;
}
.cid-uuLDwAl1V0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuLDwAl1V0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uuLDwAl1V0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuLDwAl1V0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuLDwAl1V0 .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-uuLDwAl1V0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuLDwAl1V0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuLDwAl1V0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuLDwAl1V0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuLDwAl1V0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuLDwAl1V0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuLDwAl1V0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuLDwAl1V0 .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-uuLDwAl1V0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuLDwAl1V0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuLDwAl1V0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uuLDwAl1V0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuLDwAl1V0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuLDwAl1V0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuLDwAl1V0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuLDwAl1V0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuLDwAl1V0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uuLDwAl1V0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuLDwAl1V0 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-uuLDwAl1V0 .navbar-brand {
    width: 85%;
  }
}
.cid-uuLDwAl1V0 .dropdown-item.active,
.cid-uuLDwAl1V0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuLDwAl1V0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuLDwAl1V0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuLDwAl1V0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuLDwAl1V0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-uuLDwAl1V0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuLDwAl1V0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuLDwAl1V0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuLDwAl1V0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuLDwAl1V0 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuLDwAl1V0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-uuLDwAl1V0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuLDwAl1V0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuLDwAl1V0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuLDwAl1V0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuLDwAl1V0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuLDwAl1V0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuLDwAl1V0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuLDwAl1V0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuLDwAl1V0 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uuLDwAl1V0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuLDwAl1V0 .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-uuLDwAl1V0 .navbar {
    height: 70px;
  }
  .cid-uuLDwAl1V0 .navbar.opened {
    height: auto;
  }
  .cid-uuLDwAl1V0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuLDwBSw9n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-uuLDwBSw9n .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-uuLDwBSw9n .image-wrap img {
  transition: all .9s ease;
}
.cid-uuLDwBSw9n .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-uuLDwBSw9n .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-uuLDwBSw9n .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-uuLDwBSw9n .image-wrap {
    padding: 10px 20px;
  }
}
.cid-uuLDwCpZmi {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-uuLDwCpZmi .article-wrapper {
  padding-bottom: 200px;
}
.cid-uuLDwCpZmi .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uuLDwCpZmi .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uuLDwCpZmi .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uuLDwCpZmi .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uuLDwCpZmi .mbr-text,
.cid-uuLDwCpZmi .mbr-section-btn {
  color: #626462;
}
.cid-uuLDwD1qEz {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uuLDwD1qEz .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uuLDwD1qEz .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uuLDwD1qEz .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uuLDwD1qEz .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uuLDwD1qEz .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uuLDwD1qEz .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uuLDwD1qEz .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uuLDwD1qEz .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-uuLDwD1qEz .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-uuLDwD1qEz .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uuLDwD1qEz .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-uuLDwD1qEz .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-uuLDwD1qEz .mbr-gallery-filter ul {
  display: block;
}
.cid-uuLDwD1qEz .mbr-gallery-filter ul li {
  position: relative;
}
.cid-uuLDwD1qEz .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-uuLDwD1qEz .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-uuLDwD1qEz .mbr-gallery-filter li.active::after,
.cid-uuLDwD1qEz .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-uuLDwD1qEz .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uuLDwD1qEz .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uuLDwD1qEz .icon-focus:before {
  content: '\e95e';
}
.cid-uuLDwD1qEz .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-uuLDwD1qEz .mbr-section-title {
  margin: 0;
}
.cid-uuLDwD1qEz .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uuLDwD1qEz .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uuLDwFcANl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-uuLDwFcANl .article-wrapper {
  padding-bottom: 200px;
}
.cid-uuLDwFcANl .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-uuLDwFcANl .article-list li p {
  margin-bottom: 0;
}
.cid-uuLDwFcANl .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uuLDwFcANl .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uuLDwFcANl .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uuLDwFcANl .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uuLDwFcANl .mbr-text {
  color: #626462;
}
.cid-uIKzmbFiMK .navbar-dropdown {
  position: relative !important;
}
.cid-uIKzmbFiMK .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-uIKzmbFiMK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-uIKzmbFiMK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIKzmbFiMK .dropdown-item:hover,
.cid-uIKzmbFiMK .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-uIKzmbFiMK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIKzmbFiMK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIKzmbFiMK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIKzmbFiMK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIKzmbFiMK .nav-link {
  position: relative;
}
.cid-uIKzmbFiMK .container {
  display: flex;
  margin: auto;
}
.cid-uIKzmbFiMK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIKzmbFiMK .nav-item:focus,
.cid-uIKzmbFiMK .nav-link:focus {
  outline: none;
}
.cid-uIKzmbFiMK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIKzmbFiMK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIKzmbFiMK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIKzmbFiMK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIKzmbFiMK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIKzmbFiMK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIKzmbFiMK .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-uIKzmbFiMK .navbar.opened {
  transition: all 0.3s;
}
.cid-uIKzmbFiMK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIKzmbFiMK .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-uIKzmbFiMK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIKzmbFiMK .navbar.collapsed {
  justify-content: center;
}
.cid-uIKzmbFiMK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIKzmbFiMK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uIKzmbFiMK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIKzmbFiMK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIKzmbFiMK .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-uIKzmbFiMK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIKzmbFiMK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIKzmbFiMK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIKzmbFiMK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIKzmbFiMK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIKzmbFiMK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIKzmbFiMK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIKzmbFiMK .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-uIKzmbFiMK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIKzmbFiMK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIKzmbFiMK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIKzmbFiMK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIKzmbFiMK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIKzmbFiMK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIKzmbFiMK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIKzmbFiMK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIKzmbFiMK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIKzmbFiMK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIKzmbFiMK .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-uIKzmbFiMK .navbar-brand {
    width: 85%;
  }
}
.cid-uIKzmbFiMK .dropdown-item.active,
.cid-uIKzmbFiMK .dropdown-item:active {
  background-color: transparent;
}
.cid-uIKzmbFiMK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIKzmbFiMK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIKzmbFiMK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIKzmbFiMK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-uIKzmbFiMK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIKzmbFiMK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIKzmbFiMK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIKzmbFiMK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIKzmbFiMK button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIKzmbFiMK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-uIKzmbFiMK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIKzmbFiMK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIKzmbFiMK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIKzmbFiMK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIKzmbFiMK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIKzmbFiMK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIKzmbFiMK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIKzmbFiMK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIKzmbFiMK .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIKzmbFiMK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIKzmbFiMK .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-uIKzmbFiMK .navbar {
    height: 70px;
  }
  .cid-uIKzmbFiMK .navbar.opened {
    height: auto;
  }
  .cid-uIKzmbFiMK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIKzmceqdO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-uIKzmceqdO .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #000000;
}
.cid-uIKzmceqdO .image-wrap img {
  transition: all .5s ease;
}
.cid-uIKzmceqdO .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-uIKzmceqdO .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-uIKzmceqdO .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-uIKzmceqdO .image-wrap {
    padding: 10px 20px;
  }
}
.cid-uIKzmctkAo {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-uIKzmctkAo .article-wrapper {
  padding-bottom: 200px;
}
.cid-uIKzmctkAo .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uIKzmctkAo .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uIKzmctkAo .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uIKzmctkAo .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uIKzmctkAo .mbr-text,
.cid-uIKzmctkAo .mbr-section-btn {
  color: #626462;
}
.cid-uIKzmcMia6 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8ebe8;
}
.cid-uIKzmcMia6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIKzmcMia6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIKzmcMia6 .container-fluid {
  padding: 0 0 0 100px;
}
@media (max-width: 1440px) {
  .cid-uIKzmcMia6 .container-fluid {
    padding: 0 0 0 45px;
  }
}
@media (max-width: 992px) {
  .cid-uIKzmcMia6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uIKzmcMia6 .container {
    padding: 0 30px;
  }
}
.cid-uIKzmcMia6 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uIKzmcMia6 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uIKzmcMia6 .box .mbr-media img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uIKzmcMia6 .box .mbr-media img {
    height: 350px;
  }
}
.cid-uIKzmcMia6 .box .mbr-media .mbr-iconfont {
  color: #000000;
}
.cid-uIKzmcMia6 .mbr-media {
  position: relative;
}
.cid-uIKzmcMia6 .mbr-media img {
  width: 200vh;
  object-fit: cover;
}
.cid-uIKzmcMia6 a:hover {
  background-image: none !important;
}
.cid-uIKzmcMia6 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uIKzmcMia6 .icon-wrap:hover {
  cursor: pointer;
}
.cid-uIKzmcMia6 .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uIKzmcMia6 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uIKzmcMia6 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uIKzmcMia6 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uIKzmcMia6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uIKzmcMia6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uIKzmcMia6 .mbr-section-title {
  color: #ffffff;
}
.cid-uIKzmdg1Fa {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uIKzmdg1Fa .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uIKzmdg1Fa .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIKzmdg1Fa .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uIKzmdg1Fa .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uIKzmdg1Fa .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uIKzmdg1Fa .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-uIKzmdg1Fa .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter ul {
  display: block;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter ul li {
  position: relative;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-filter li.active::after,
.cid-uIKzmdg1Fa .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-uIKzmdg1Fa .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uIKzmdg1Fa .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uIKzmdg1Fa .icon-focus:before {
  content: '\e95e';
}
.cid-uIKzmdg1Fa .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-uIKzmdg1Fa .mbr-section-title {
  margin: 0;
}
.cid-uIKzmdg1Fa .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uIKzmdg1Fa .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uIKzmdPhxo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-uIKzmdPhxo .article-wrapper {
  padding-bottom: 200px;
}
.cid-uIKzmdPhxo .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-uIKzmdPhxo .article-list li p {
  margin-bottom: 0;
}
.cid-uIKzmdPhxo .mbr-section-text {
  margin-bottom: 40px;
  color: #626462;
}
@media (max-width: 768px) {
  .cid-uIKzmdPhxo .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uIKzmdPhxo .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uIKzmdPhxo .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uIKzmdPhxo .mbr-text {
  color: #626462;
}
.cid-uIKL7wApUD .navbar-dropdown {
  position: relative !important;
}
.cid-uIKL7wApUD .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-uIKL7wApUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-uIKL7wApUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uIKL7wApUD .dropdown-item:hover,
.cid-uIKL7wApUD .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-uIKL7wApUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uIKL7wApUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uIKL7wApUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uIKL7wApUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uIKL7wApUD .nav-link {
  position: relative;
}
.cid-uIKL7wApUD .container {
  display: flex;
  margin: auto;
}
.cid-uIKL7wApUD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIKL7wApUD .nav-item:focus,
.cid-uIKL7wApUD .nav-link:focus {
  outline: none;
}
.cid-uIKL7wApUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIKL7wApUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIKL7wApUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIKL7wApUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIKL7wApUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIKL7wApUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIKL7wApUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-uIKL7wApUD .navbar.opened {
  transition: all 0.3s;
}
.cid-uIKL7wApUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIKL7wApUD .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-uIKL7wApUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uIKL7wApUD .navbar.collapsed {
  justify-content: center;
}
.cid-uIKL7wApUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIKL7wApUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uIKL7wApUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIKL7wApUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIKL7wApUD .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-uIKL7wApUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIKL7wApUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIKL7wApUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uIKL7wApUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIKL7wApUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIKL7wApUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIKL7wApUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIKL7wApUD .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-uIKL7wApUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uIKL7wApUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIKL7wApUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uIKL7wApUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIKL7wApUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIKL7wApUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uIKL7wApUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uIKL7wApUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uIKL7wApUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIKL7wApUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIKL7wApUD .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-uIKL7wApUD .navbar-brand {
    width: 85%;
  }
}
.cid-uIKL7wApUD .dropdown-item.active,
.cid-uIKL7wApUD .dropdown-item:active {
  background-color: transparent;
}
.cid-uIKL7wApUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIKL7wApUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIKL7wApUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIKL7wApUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-uIKL7wApUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uIKL7wApUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uIKL7wApUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIKL7wApUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uIKL7wApUD button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIKL7wApUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-uIKL7wApUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIKL7wApUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIKL7wApUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIKL7wApUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIKL7wApUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIKL7wApUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIKL7wApUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIKL7wApUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIKL7wApUD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIKL7wApUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIKL7wApUD .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-uIKL7wApUD .navbar {
    height: 70px;
  }
  .cid-uIKL7wApUD .navbar.opened {
    height: auto;
  }
  .cid-uIKL7wApUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIKL7xkXnv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-uIKL7xkXnv .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #000000;
}
.cid-uIKL7xkXnv .image-wrap img {
  transition: all .5s ease;
}
.cid-uIKL7xkXnv .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-uIKL7xkXnv .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-uIKL7xkXnv .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-uIKL7xkXnv .image-wrap {
    padding: 10px 20px;
  }
}
.cid-uIKL7xzxA8 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-uIKL7xzxA8 .article-wrapper {
  padding-bottom: 200px;
}
.cid-uIKL7xzxA8 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-uIKL7xzxA8 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uIKL7xzxA8 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uIKL7xzxA8 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uIKL7xzxA8 .mbr-text,
.cid-uIKL7xzxA8 .mbr-section-btn {
  color: #626462;
}
.cid-v0LWI5DKD0 {
  padding-top: 4rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8ebe8;
}
.cid-v0LWI5DKD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0LWI5DKD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0LWI5DKD0 .container-fluid {
  padding: 0 0 0 100px;
}
@media (max-width: 1440px) {
  .cid-v0LWI5DKD0 .container-fluid {
    padding: 0 0 0 45px;
  }
}
@media (max-width: 992px) {
  .cid-v0LWI5DKD0 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v0LWI5DKD0 .container {
    padding: 0 30px;
  }
}
.cid-v0LWI5DKD0 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v0LWI5DKD0 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v0LWI5DKD0 .box .mbr-media img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v0LWI5DKD0 .box .mbr-media img {
    height: 350px;
  }
}
.cid-v0LWI5DKD0 .box .mbr-media .mbr-iconfont {
  color: #000000;
}
.cid-v0LWI5DKD0 .mbr-media {
  position: relative;
}
.cid-v0LWI5DKD0 .mbr-media img {
  width: 200vh;
  object-fit: cover;
}
.cid-v0LWI5DKD0 a:hover {
  background-image: none !important;
}
.cid-v0LWI5DKD0 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-v0LWI5DKD0 .icon-wrap:hover {
  cursor: pointer;
}
.cid-v0LWI5DKD0 .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-v0LWI5DKD0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v0LWI5DKD0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v0LWI5DKD0 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v0LWI5DKD0 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0LWI5DKD0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0LWI5DKD0 .mbr-section-title {
  color: #ffffff;
}
.cid-uIKL7yyVHv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uIKL7yyVHv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uIKL7yyVHv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIKL7yyVHv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uIKL7yyVHv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uIKL7yyVHv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uIKL7yyVHv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uIKL7yyVHv .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uIKL7yyVHv .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-uIKL7yyVHv .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-uIKL7yyVHv .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-uIKL7yyVHv .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-uIKL7yyVHv .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-uIKL7yyVHv .mbr-gallery-filter ul {
  display: block;
}
.cid-uIKL7yyVHv .mbr-gallery-filter ul li {
  position: relative;
}
.cid-uIKL7yyVHv .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-uIKL7yyVHv .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-uIKL7yyVHv .mbr-gallery-filter li.active::after,
.cid-uIKL7yyVHv .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-uIKL7yyVHv .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uIKL7yyVHv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uIKL7yyVHv .icon-focus:before {
  content: '\e95e';
}
.cid-uIKL7yyVHv .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-uIKL7yyVHv .mbr-section-title {
  margin: 0;
}
.cid-uIKL7yyVHv .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-uIKL7yyVHv .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-uIKL7zbeOq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-uIKL7zbeOq .article-wrapper {
  padding-bottom: 200px;
}
.cid-uIKL7zbeOq .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-uIKL7zbeOq .article-list li p {
  margin-bottom: 0;
}
.cid-uIKL7zbeOq .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uIKL7zbeOq .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-uIKL7zbeOq .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-uIKL7zbeOq .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-uIKL7zbeOq .mbr-text {
  color: #626462;
}
.cid-v47TACOksk .navbar-dropdown {
  position: relative !important;
}
.cid-v47TACOksk .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-v47TACOksk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-v47TACOksk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v47TACOksk .dropdown-item:hover,
.cid-v47TACOksk .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-v47TACOksk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v47TACOksk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v47TACOksk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v47TACOksk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v47TACOksk .nav-link {
  position: relative;
}
.cid-v47TACOksk .container {
  display: flex;
  margin: auto;
}
.cid-v47TACOksk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v47TACOksk .nav-item:focus,
.cid-v47TACOksk .nav-link:focus {
  outline: none;
}
.cid-v47TACOksk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v47TACOksk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v47TACOksk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v47TACOksk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v47TACOksk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v47TACOksk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v47TACOksk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-v47TACOksk .navbar.opened {
  transition: all 0.3s;
}
.cid-v47TACOksk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v47TACOksk .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v47TACOksk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v47TACOksk .navbar.collapsed {
  justify-content: center;
}
.cid-v47TACOksk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v47TACOksk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v47TACOksk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v47TACOksk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v47TACOksk .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-v47TACOksk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v47TACOksk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v47TACOksk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v47TACOksk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v47TACOksk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v47TACOksk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v47TACOksk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v47TACOksk .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-v47TACOksk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v47TACOksk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v47TACOksk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v47TACOksk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v47TACOksk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v47TACOksk .navbar.navbar-short {
  min-height: 60px;
}
.cid-v47TACOksk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v47TACOksk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v47TACOksk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v47TACOksk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v47TACOksk .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v47TACOksk .navbar-brand {
    width: 85%;
  }
}
.cid-v47TACOksk .dropdown-item.active,
.cid-v47TACOksk .dropdown-item:active {
  background-color: transparent;
}
.cid-v47TACOksk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v47TACOksk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v47TACOksk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v47TACOksk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-v47TACOksk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v47TACOksk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v47TACOksk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v47TACOksk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v47TACOksk button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v47TACOksk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v47TACOksk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v47TACOksk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v47TACOksk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v47TACOksk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v47TACOksk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v47TACOksk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v47TACOksk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v47TACOksk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v47TACOksk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v47TACOksk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v47TACOksk .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-v47TACOksk .navbar {
    height: 70px;
  }
  .cid-v47TACOksk .navbar.opened {
    height: auto;
  }
  .cid-v47TACOksk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v47TADEvfP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-v47TADEvfP .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-v47TADEvfP .image-wrap img {
  transition: all .9s ease;
}
.cid-v47TADEvfP .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-v47TADEvfP .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-v47TADEvfP .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-v47TADEvfP .image-wrap {
    padding: 10px 20px;
  }
}
.cid-v47TAE0Zl0 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-v47TAE0Zl0 .article-wrapper {
  padding-bottom: 200px;
}
.cid-v47TAE0Zl0 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-v47TAE0Zl0 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-v47TAE0Zl0 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-v47TAE0Zl0 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-v47TAE0Zl0 .mbr-text,
.cid-v47TAE0Zl0 .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-v47TAEcRnA {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-v47TAEcRnA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v47TAEcRnA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v47TAEcRnA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v47TAEcRnA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v47TAEcRnA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v47TAEcRnA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v47TAEcRnA .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v47TAEcRnA .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-v47TAEcRnA .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-v47TAEcRnA .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-v47TAEcRnA .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-v47TAEcRnA .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-v47TAEcRnA .mbr-gallery-filter ul {
  display: block;
}
.cid-v47TAEcRnA .mbr-gallery-filter ul li {
  position: relative;
}
.cid-v47TAEcRnA .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-v47TAEcRnA .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-v47TAEcRnA .mbr-gallery-filter li.active::after,
.cid-v47TAEcRnA .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-v47TAEcRnA .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v47TAEcRnA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v47TAEcRnA .icon-focus:before {
  content: '\e95e';
}
.cid-v47TAEcRnA .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-v47TAEcRnA .mbr-section-title {
  margin: 0;
}
.cid-v47TAEcRnA .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-v47TAEcRnA .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-v47TAEGfRh {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-v47TAEGfRh .article-wrapper {
  padding-bottom: 200px;
}
.cid-v47TAEGfRh .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-v47TAEGfRh .article-list li p {
  margin-bottom: 0;
}
.cid-v47TAEGfRh .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-v47TAEGfRh .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-v47TAEGfRh .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-v47TAEGfRh .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-v47TAEGfRh .mbr-text {
  color: #626462;
}
.cid-v8Ga5rJ4dc .navbar-dropdown {
  position: relative !important;
}
.cid-v8Ga5rJ4dc .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-v8Ga5rJ4dc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-v8Ga5rJ4dc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8Ga5rJ4dc .dropdown-item:hover,
.cid-v8Ga5rJ4dc .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-v8Ga5rJ4dc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8Ga5rJ4dc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8Ga5rJ4dc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8Ga5rJ4dc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8Ga5rJ4dc .nav-link {
  position: relative;
}
.cid-v8Ga5rJ4dc .container {
  display: flex;
  margin: auto;
}
.cid-v8Ga5rJ4dc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8Ga5rJ4dc .nav-item:focus,
.cid-v8Ga5rJ4dc .nav-link:focus {
  outline: none;
}
.cid-v8Ga5rJ4dc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8Ga5rJ4dc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8Ga5rJ4dc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8Ga5rJ4dc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8Ga5rJ4dc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8Ga5rJ4dc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8Ga5rJ4dc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-v8Ga5rJ4dc .navbar.opened {
  transition: all 0.3s;
}
.cid-v8Ga5rJ4dc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8Ga5rJ4dc .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-v8Ga5rJ4dc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8Ga5rJ4dc .navbar.collapsed {
  justify-content: center;
}
.cid-v8Ga5rJ4dc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8Ga5rJ4dc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v8Ga5rJ4dc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8Ga5rJ4dc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8Ga5rJ4dc .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-v8Ga5rJ4dc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8Ga5rJ4dc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8Ga5rJ4dc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8Ga5rJ4dc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8Ga5rJ4dc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8Ga5rJ4dc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8Ga5rJ4dc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8Ga5rJ4dc .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-v8Ga5rJ4dc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8Ga5rJ4dc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8Ga5rJ4dc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v8Ga5rJ4dc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8Ga5rJ4dc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v8Ga5rJ4dc .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8Ga5rJ4dc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8Ga5rJ4dc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8Ga5rJ4dc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v8Ga5rJ4dc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8Ga5rJ4dc .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-v8Ga5rJ4dc .navbar-brand {
    width: 85%;
  }
}
.cid-v8Ga5rJ4dc .dropdown-item.active,
.cid-v8Ga5rJ4dc .dropdown-item:active {
  background-color: transparent;
}
.cid-v8Ga5rJ4dc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8Ga5rJ4dc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8Ga5rJ4dc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8Ga5rJ4dc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-v8Ga5rJ4dc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8Ga5rJ4dc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8Ga5rJ4dc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8Ga5rJ4dc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8Ga5rJ4dc button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8Ga5rJ4dc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-v8Ga5rJ4dc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8Ga5rJ4dc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8Ga5rJ4dc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8Ga5rJ4dc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8Ga5rJ4dc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8Ga5rJ4dc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8Ga5rJ4dc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8Ga5rJ4dc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8Ga5rJ4dc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v8Ga5rJ4dc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8Ga5rJ4dc .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-v8Ga5rJ4dc .navbar {
    height: 70px;
  }
  .cid-v8Ga5rJ4dc .navbar.opened {
    height: auto;
  }
  .cid-v8Ga5rJ4dc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8Ga5sjqQd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-v8Ga5sjqQd .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-v8Ga5sjqQd .image-wrap img {
  transition: all .9s ease;
}
.cid-v8Ga5sjqQd .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-v8Ga5sjqQd .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-v8Ga5sjqQd .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-v8Ga5sjqQd .image-wrap {
    padding: 10px 20px;
  }
}
.cid-v8Ga5sw8D1 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-v8Ga5sw8D1 .article-wrapper {
  padding-bottom: 200px;
}
.cid-v8Ga5sw8D1 .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-v8Ga5sw8D1 .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-v8Ga5sw8D1 .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-v8Ga5sw8D1 .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-v8Ga5sw8D1 .mbr-text,
.cid-v8Ga5sw8D1 .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-v8Ga5sQZxF {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-v8Ga5sQZxF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-v8Ga5sQZxF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v8Ga5sQZxF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v8Ga5sQZxF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-v8Ga5sQZxF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-v8Ga5sQZxF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-v8Ga5sQZxF .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter ul {
  display: block;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter ul li {
  position: relative;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-filter li.active::after,
.cid-v8Ga5sQZxF .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-v8Ga5sQZxF .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-v8Ga5sQZxF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-v8Ga5sQZxF .icon-focus:before {
  content: '\e95e';
}
.cid-v8Ga5sQZxF .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-v8Ga5sQZxF .mbr-section-title {
  margin: 0;
}
.cid-v8Ga5sQZxF .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-v8Ga5sQZxF .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-v8Ga5tqjaa {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-v8Ga5tqjaa .article-wrapper {
  padding-bottom: 200px;
}
.cid-v8Ga5tqjaa .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-v8Ga5tqjaa .article-list li p {
  margin-bottom: 0;
}
.cid-v8Ga5tqjaa .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-v8Ga5tqjaa .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-v8Ga5tqjaa .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-v8Ga5tqjaa .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-v8Ga5tqjaa .mbr-text {
  color: #626462;
}
.cid-vgc6lMcpA2 .navbar-dropdown {
  position: relative !important;
}
.cid-vgc6lMcpA2 .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-vgc6lMcpA2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e8ebe8 !important;
}
.cid-vgc6lMcpA2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vgc6lMcpA2 .dropdown-item:hover,
.cid-vgc6lMcpA2 .dropdown-item:focus {
  background: #191919 !important;
  color: white !important;
}
.cid-vgc6lMcpA2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vgc6lMcpA2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vgc6lMcpA2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vgc6lMcpA2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vgc6lMcpA2 .nav-link {
  position: relative;
}
.cid-vgc6lMcpA2 .container {
  display: flex;
  margin: auto;
}
.cid-vgc6lMcpA2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vgc6lMcpA2 .nav-item:focus,
.cid-vgc6lMcpA2 .nav-link:focus {
  outline: none;
}
.cid-vgc6lMcpA2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vgc6lMcpA2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vgc6lMcpA2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vgc6lMcpA2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vgc6lMcpA2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vgc6lMcpA2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vgc6lMcpA2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  background: #e8ebe8;
}
.cid-vgc6lMcpA2 .navbar.opened {
  transition: all 0.3s;
}
.cid-vgc6lMcpA2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vgc6lMcpA2 .navbar .navbar-logo img {
  min-width: 50px;
  min-height: 50px;
  border-radius: 10px;
}
.cid-vgc6lMcpA2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vgc6lMcpA2 .navbar.collapsed {
  justify-content: center;
}
.cid-vgc6lMcpA2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vgc6lMcpA2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vgc6lMcpA2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vgc6lMcpA2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vgc6lMcpA2 .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-vgc6lMcpA2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vgc6lMcpA2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vgc6lMcpA2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vgc6lMcpA2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vgc6lMcpA2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vgc6lMcpA2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vgc6lMcpA2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vgc6lMcpA2 .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-vgc6lMcpA2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vgc6lMcpA2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vgc6lMcpA2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vgc6lMcpA2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vgc6lMcpA2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vgc6lMcpA2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-vgc6lMcpA2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vgc6lMcpA2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vgc6lMcpA2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vgc6lMcpA2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vgc6lMcpA2 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 375px) {
  .cid-vgc6lMcpA2 .navbar-brand {
    width: 85%;
  }
}
.cid-vgc6lMcpA2 .dropdown-item.active,
.cid-vgc6lMcpA2 .dropdown-item:active {
  background-color: transparent;
}
.cid-vgc6lMcpA2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vgc6lMcpA2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vgc6lMcpA2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vgc6lMcpA2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e8ebe8;
}
.cid-vgc6lMcpA2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vgc6lMcpA2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vgc6lMcpA2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vgc6lMcpA2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vgc6lMcpA2 button.navbar-toggler {
  outline: none;
  width: 25px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vgc6lMcpA2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #191919;
}
.cid-vgc6lMcpA2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vgc6lMcpA2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgc6lMcpA2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vgc6lMcpA2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vgc6lMcpA2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgc6lMcpA2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vgc6lMcpA2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vgc6lMcpA2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vgc6lMcpA2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vgc6lMcpA2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vgc6lMcpA2 .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-vgc6lMcpA2 .navbar {
    height: 70px;
  }
  .cid-vgc6lMcpA2 .navbar.opened {
    height: auto;
  }
  .cid-vgc6lMcpA2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vgc6lMCiGR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e8ebe8;
}
.cid-vgc6lMCiGR .image-wrap {
  width: 100%;
  position: relative;
  padding: 40px 40px;
  background-color: #e8ebe8;
}
.cid-vgc6lMCiGR .image-wrap img {
  transition: all .9s ease;
}
.cid-vgc6lMCiGR .image-wrap img:hover {
  transform: scale3d(1.1, 1.1, 1);
}
@media (max-width: 992px) {
  .cid-vgc6lMCiGR .image-wrap {
    padding: 20px 50px;
  }
}
@media (max-width: 768px) {
  .cid-vgc6lMCiGR .image-wrap {
    padding: 10px 30px;
  }
}
@media (max-width: 425px) {
  .cid-vgc6lMCiGR .image-wrap {
    padding: 10px 20px;
  }
}
.cid-vgc6lMLYRx {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e8ebe8;
}
.cid-vgc6lMLYRx .article-wrapper {
  padding-bottom: 200px;
}
.cid-vgc6lMLYRx .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-vgc6lMLYRx .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-vgc6lMLYRx .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-vgc6lMLYRx .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-vgc6lMLYRx .mbr-text,
.cid-vgc6lMLYRx .mbr-section-btn {
  color: #626462;
  text-align: left;
}
.cid-vgc6lMWjUR {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #e8ebe8;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-vgc6lMWjUR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-vgc6lMWjUR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-vgc6lMWjUR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-vgc6lMWjUR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-vgc6lMWjUR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-vgc6lMWjUR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-vgc6lMWjUR .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-vgc6lMWjUR .mbr-gallery-item > div:hover .icon-focus {
  top: calc(50% - 24px);
}
.cid-vgc6lMWjUR .mbr-gallery-filter-all > a {
  padding: 30px;
  color: #444444 !important;
}
.cid-vgc6lMWjUR .mbr-gallery-filter {
  padding-top: 0;
  padding-bottom: 2rem;
}
.cid-vgc6lMWjUR .mbr-gallery-filter .btn {
  text-transform: uppercase;
  color: #444444 !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0px !important;
  border: none;
  padding: 12px 15px 12px 15px;
}
.cid-vgc6lMWjUR .mbr-gallery-filter .btn:hover {
  background: transparent;
  color: #ffbc00 !important;
}
.cid-vgc6lMWjUR .mbr-gallery-filter ul {
  display: block;
}
.cid-vgc6lMWjUR .mbr-gallery-filter ul li {
  position: relative;
}
.cid-vgc6lMWjUR .mbr-gallery-filter li.active .btn {
  color: #ffbc00 !important;
  background: transparent;
}
.cid-vgc6lMWjUR .mbr-gallery-filter li::after {
  bottom: 0.5rem;
  content: "";
  height: 4px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  width: 4px;
  transition: all 0.3s ease-in-out;
  background: #ffbc00 !important;
}
.cid-vgc6lMWjUR .mbr-gallery-filter li.active::after,
.cid-vgc6lMWjUR .mbr-gallery-filter li:hover::after {
  -webkit-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  background: #ffbc00 !important;
}
.cid-vgc6lMWjUR .mbr-gallery-title {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-vgc6lMWjUR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-vgc6lMWjUR .icon-focus:before {
  content: '\e95e';
}
.cid-vgc6lMWjUR .icon-focus {
  transition: all .3s;
  font-size: 2rem !important;
  top: 50%;
  left: calc(50% - 24px);
  width: 48px;
  padding: 0 8px;
  border-radius: 50%;
  color: #444444 !important;
  background-color: #ffffff;
}
.cid-vgc6lMWjUR .mbr-section-title {
  margin: 0;
}
.cid-vgc6lMWjUR .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-vgc6lMWjUR .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-vgc6lNi82W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e8ebe8;
}
.cid-vgc6lNi82W .article-wrapper {
  padding-bottom: 200px;
}
.cid-vgc6lNi82W .article-list {
  margin: 0 0 64px 20px;
  padding: 0;
  list-style-position: inside;
}
.cid-vgc6lNi82W .article-list li p {
  margin-bottom: 0;
}
.cid-vgc6lNi82W .mbr-section-text {
  margin-bottom: 40px;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-vgc6lNi82W .article-wrapper {
    padding-bottom: 100px;
  }
}
@media (max-width: 425px) {
  .cid-vgc6lNi82W .article-wrapper {
    padding-bottom: 60px;
  }
}
@media (max-width: 320px) {
  .cid-vgc6lNi82W .article-wrapper {
    padding-bottom: 40px;
  }
}
.cid-vgc6lNi82W .mbr-text {
  color: #626462;
}
