body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #1d8027 !important;
}
.bg-success {
  background-color: #1ed8f1 !important;
}
.bg-info {
  background-color: #f1f40a !important;
}
.bg-warning {
  background-color: #7010f2 !important;
}
.bg-danger {
  background-color: #0af421 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #1d8027 !important;
  border-color: #1d8027 !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: #0d3911 !important;
  border-color: #0d3911 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d3911 !important;
  border-color: #0d3911 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f30000 !important;
  border-color: #f30000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9c0000 !important;
  border-color: #9c0000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9c0000 !important;
  border-color: #9c0000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #f1f40a !important;
  border-color: #f1f40a !important;
  color: #000000 !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: #9fa107 !important;
  border-color: #9fa107 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #9fa107 !important;
  border-color: #9fa107 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1ed8f1 !important;
  border-color: #1ed8f1 !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: #0b9aae !important;
  border-color: #0b9aae !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0b9aae !important;
  border-color: #0b9aae !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #7010f2 !important;
  border-color: #7010f2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #4a09a2 !important;
  border-color: #4a09a2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4a09a2 !important;
  border-color: #4a09a2 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0af421 !important;
  border-color: #0af421 !important;
  color: #000000 !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: #07a116 !important;
  border-color: #07a116 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #07a116 !important;
  border-color: #07a116 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1d8027;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0d3911 !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: #1d8027 !important;
  border-color: #1d8027 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f30000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9c0000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f30000 !important;
  border-color: #f30000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f1f40a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #9fa107 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #f1f40a !important;
  border-color: #f1f40a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1ed8f1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0b9aae !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: #1ed8f1 !important;
  border-color: #1ed8f1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #7010f2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #4a09a2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #7010f2 !important;
  border-color: #7010f2 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0af421;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #07a116 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #0af421 !important;
  border-color: #0af421 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1d8027 !important;
}
.text-secondary {
  color: #f30000 !important;
}
.text-success {
  color: #1ed8f1 !important;
}
.text-info {
  color: #f1f40a !important;
}
.text-warning {
  color: #7010f2 !important;
}
.text-danger {
  color: #0af421 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a2d0e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #8d0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0a8d9f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #909206 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #430894 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #069214 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #1d8027;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #f1f40a;
}
.alert-warning {
  background-color: #7010f2;
}
.alert-danger {
  background-color: #0af421;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1d8027;
  border-color: #1d8027;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #1d8027;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #47d556;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #def9fd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fcfdcd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #e4d1fd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cdfdd2;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #1d8027 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #1d8027;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1d8027;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1d8027;
}
.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: #1d8027;
  border-bottom-color: #1d8027;
}
.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: #1d8027 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f30000 !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='%231d8027' %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-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aRhhTxp9 {
  background-image: url("../../../assets/images/mbr-1160x637.png");
}
.cid-t0aRhhTxp9 .mbr-section-title {
  color: #ffffff;
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aUNQCkHH {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t0aUNQCkHH .mbr-section-title {
  color: #ffffff;
}
.cid-t16ocqV6bf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t16ocqV6bf img,
.cid-t16ocqV6bf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t16ocqV6bf .item:focus,
.cid-t16ocqV6bf span:focus {
  outline: none;
}
.cid-t16ocqV6bf .item-wrapper {
  position: relative;
}
.cid-t16ocqV6bf .slide-content {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t16ocqV6bf .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t16ocqV6bf .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t16ocqV6bf .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t16ocqV6bf .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t16ocqV6bf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t16ocqV6bf .mbr-section-title {
  color: #232323;
}
.cid-t16ocqV6bf .mbr-text,
.cid-t16ocqV6bf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t16ocqV6bf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-t16ocqV6bf .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t16ocqV6bf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-t16ocqV6bf .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t16ocqV6bf .embla__button--next,
.cid-t16ocqV6bf .embla__button--prev {
  display: flex;
}
.cid-t16ocqV6bf .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t16ocqV6bf .embla__button {
    display: none;
  }
}
.cid-t16ocqV6bf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t16ocqV6bf .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t16ocqV6bf .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t16ocqV6bf .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t16ocqV6bf .embla__button {
    top: auto;
  }
}
.cid-t16ocqV6bf .embla {
  position: relative;
  width: 100%;
}
.cid-t16ocqV6bf .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t16ocqV6bf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t16ocqV6bf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t16ocqV6bf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-t16ocqV6bf .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-t16ocqV6bf .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-t16ocqV6bf .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aV0mV9mK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t0aV0mV9mK .mbr-section-title {
  color: #ffffff;
}
.cid-t15SWCk9od {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t15SWCk9od .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t15SWCk9od form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t15SWCk9od form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t15SWCk9od form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t15SWCk9od .mbr-section-title {
  color: #ffffff;
}
.cid-t15SWCk9od LABEL {
  color: #ffffff;
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aV3aCfqt {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t0aV3aCfqt .mbr-section-title {
  color: #ffffff;
}
.cid-t1E6FZEHbb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E6FZEHbb .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E6FZEHbb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E6FZEHbb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E6FZEHbb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E6FZEHbb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E6FZEHbb .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E6FZEHbb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E6FZEHbb .card-title {
  color: #1d8027;
}
.cid-t1E7yNIy3G {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E7yNIy3G .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E7yNIy3G .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E7yNIy3G .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E7yNIy3G .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E7yNIy3G .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E7yNIy3G .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E7yNIy3G .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E7yNIy3G .card-title {
  color: #1d8027;
}
.cid-t1E7APRbnn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E7APRbnn .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E7APRbnn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E7APRbnn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E7APRbnn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E7APRbnn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E7APRbnn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E7APRbnn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E7APRbnn .card-title {
  color: #1d8027;
}
.cid-t1E7D6ZBlg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E7D6ZBlg .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E7D6ZBlg .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E7D6ZBlg .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E7D6ZBlg .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E7D6ZBlg .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E7D6ZBlg .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E7D6ZBlg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E7D6ZBlg .card-title {
  color: #1d8027;
}
.cid-t1E7CLxIFd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E7CLxIFd .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E7CLxIFd .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E7CLxIFd .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E7CLxIFd .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E7CLxIFd .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E7CLxIFd .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E7CLxIFd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E7CLxIFd .card-title {
  color: #1d8027;
}
.cid-t1E7Bh135X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1E7Bh135X .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1E7Bh135X .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-t1E7Bh135X .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t1E7Bh135X .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t1E7Bh135X .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-t1E7Bh135X .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-t1E7Bh135X .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t1E7Bh135X .card-title {
  color: #1d8027;
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aV63PFnY {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t0aV63PFnY .mbr-section-title {
  color: #ffffff;
}
.cid-t1DXcxPPnZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t1DXcxPPnZ img,
.cid-t1DXcxPPnZ .item-img {
  width: 100%;
}
.cid-t1DXcxPPnZ .item:focus,
.cid-t1DXcxPPnZ span:focus {
  outline: none;
}
.cid-t1DXcxPPnZ .item-wrapper {
  position: relative;
}
.cid-t1DXcxPPnZ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1DXcxPPnZ .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t1DXcxPPnZ .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1DXcxPPnZ .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1DXcxPPnZ .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1DXcxPPnZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1DXcxPPnZ .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-t1DXcxPPnZ .mbr-text,
.cid-t1DXcxPPnZ .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-t1DXcxPPnZ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-t1DXcxPPnZ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t1DXcxPPnZ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-t1DXcxPPnZ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t1DXcxPPnZ .embla__button--next,
.cid-t1DXcxPPnZ .embla__button--prev {
  display: flex;
}
.cid-t1DXcxPPnZ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t1DXcxPPnZ .embla__button {
    display: none;
  }
}
.cid-t1DXcxPPnZ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t1DXcxPPnZ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t1DXcxPPnZ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1DXcxPPnZ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1DXcxPPnZ .embla__button {
    top: auto;
  }
}
.cid-t1DXcxPPnZ .embla {
  position: relative;
  width: 100%;
}
.cid-t1DXcxPPnZ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t1DXcxPPnZ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t1DXcxPPnZ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t1DXcxPPnZ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-t1DXcxPPnZ .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-t1DXcxPPnZ .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-t1DXcxPPnZ .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1E4S0c4us.popup-builder {
  background-color: #ffffff;
}
.cid-t1E4S0c4us.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t1E4S0c4us.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t1E4S0c4us .modal-content,
.cid-t1E4S0c4us .modal-dialog {
  height: auto;
}
.cid-t1E4S0c4us .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t1E4S0c4us .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t1E4S0c4us .form-wrapper .mbr-form .form-group,
  .cid-t1E4S0c4us .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t1E4S0c4us .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t1E4S0c4us .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1E4S0c4us .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-t1E4S0c4us .pt-0 {
  padding-top: 0 !important;
}
.cid-t1E4S0c4us .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t1E4S0c4us .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t1E4S0c4us .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t1E4S0c4us .modal-open {
  overflow: hidden;
}
.cid-t1E4S0c4us .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t1E4S0c4us .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t1E4S0c4us .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t1E4S0c4us .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t1E4S0c4us .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t1E4S0c4us .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t1E4S0c4us .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t1E4S0c4us .modal-content {
  background: #000000;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t1E4S0c4us .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-t1E4S0c4us .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t1E4S0c4us .modal-backdrop.fade {
  opacity: 0;
}
.cid-t1E4S0c4us .modal-backdrop.show {
  opacity: .5;
}
.cid-t1E4S0c4us .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-t1E4S0c4us .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t1E4S0c4us .modal-header {
    padding: 1rem;
  }
}
.cid-t1E4S0c4us .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t1E4S0c4us .modal-header .close svg {
  fill: #353535;
}
.cid-t1E4S0c4us .modal-header .close:hover {
  opacity: 1;
}
.cid-t1E4S0c4us .modal-header .close:focus {
  outline: none;
}
.cid-t1E4S0c4us .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-t1E4S0c4us .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-t1E4S0c4us .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1E4S0c4us .modal-body {
    padding: 1rem;
  }
}
.cid-t1E4S0c4us .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t1E4S0c4us .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1E4S0c4us .modal-footer {
    padding: 1rem;
  }
}
.cid-t1E4S0c4us .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t1E4S0c4us .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t1E4S0c4us .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t1E4S0c4us .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t1E4S0c4us .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-t1E4S0c4us .modal-lg,
  .cid-t1E4S0c4us .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-t1E4S0c4us .modal-xl {
    max-width: 1140px;
  }
}
.cid-t1E4S0c4us .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t1E4S0c4us .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t1E4S0c4us .form-group {
  margin-bottom: 1rem;
}
.cid-t1E4S0c4us .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t1E4S0c4us .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t1E4S0c4us .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-t1E4S0c4us .mbr-section-btn {
  margin: 0;
}
.cid-t1E4S0c4us .mbr-section-btn .btn {
  margin: 0;
}
.cid-t0aQc5WYfl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0aQc5WYfl nav.navbar {
  position: fixed;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0aQc5WYfl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0aQc5WYfl .dropdown-item:hover,
.cid-t0aQc5WYfl .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t0aQc5WYfl .dropdown-item:hover span {
  color: white;
}
.cid-t0aQc5WYfl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0aQc5WYfl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0aQc5WYfl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0aQc5WYfl .nav-link {
  position: relative;
}
.cid-t0aQc5WYfl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .container {
    flex-wrap: nowrap;
  }
}
.cid-t0aQc5WYfl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown-menu,
.cid-t0aQc5WYfl .navbar.opened {
  background: #ffffff !important;
}
.cid-t0aQc5WYfl .nav-item:focus,
.cid-t0aQc5WYfl .nav-link:focus {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0aQc5WYfl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0aQc5WYfl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0aQc5WYfl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0aQc5WYfl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.opened {
  transition: all 0.3s;
}
.cid-t0aQc5WYfl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0aQc5WYfl .navbar .navbar-logo img {
  width: auto;
}
.cid-t0aQc5WYfl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0aQc5WYfl .navbar.collapsed {
  justify-content: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0aQc5WYfl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0aQc5WYfl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0aQc5WYfl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0aQc5WYfl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0aQc5WYfl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0aQc5WYfl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0aQc5WYfl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0aQc5WYfl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0aQc5WYfl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0aQc5WYfl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0aQc5WYfl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0aQc5WYfl .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0aQc5WYfl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0aQc5WYfl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t0aQc5WYfl .dropdown-item.active,
.cid-t0aQc5WYfl .dropdown-item:active {
  background-color: transparent;
}
.cid-t0aQc5WYfl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0aQc5WYfl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0aQc5WYfl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0aQc5WYfl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0aQc5WYfl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0aQc5WYfl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0aQc5WYfl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0aQc5WYfl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0aQc5WYfl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0aQc5WYfl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t0aQc5WYfl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0aQc5WYfl .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-t0aQc5WYfl .navbar {
    height: 70px;
  }
  .cid-t0aQc5WYfl .navbar.opened {
    height: auto;
  }
  .cid-t0aQc5WYfl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0aV8yty8F {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t0aV8yty8F .mbr-section-title {
  color: #ffffff;
}
.cid-t0aVfflBTa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0aVfflBTa .mbr-section-title {
  text-align: center;
}
.cid-t0aVfflBTa .mbr-section-subtitle {
  text-align: left;
}
.cid-t0aVLvESks {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t0aVLvESks .google-map {
  height: 30rem;
  position: relative;
}
.cid-t0aVLvESks .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t0aVLvESks .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t0aVLvESks .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t0aVLvESks .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t165yfxe80 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t165yfxe80 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t165yfxe80 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-t165yfxe80 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-t165yfxe80 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t163TCFoV2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t163TCFoV2 img,
.cid-t163TCFoV2 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t163TCFoV2 .item:focus,
.cid-t163TCFoV2 span:focus {
  outline: none;
}
.cid-t163TCFoV2 .item-wrapper {
  position: relative;
}
.cid-t163TCFoV2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t163TCFoV2 .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t163TCFoV2 .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t163TCFoV2 .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t163TCFoV2 .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t163TCFoV2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t163TCFoV2 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-t163TCFoV2 .mbr-text,
.cid-t163TCFoV2 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-t163TCFoV2 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-t163TCFoV2 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t163TCFoV2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-t163TCFoV2 .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t163TCFoV2 .embla__button--next,
.cid-t163TCFoV2 .embla__button--prev {
  display: flex;
}
.cid-t163TCFoV2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t163TCFoV2 .embla__button {
    display: none;
  }
}
.cid-t163TCFoV2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t163TCFoV2 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t163TCFoV2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t163TCFoV2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t163TCFoV2 .embla__button {
    top: auto;
  }
}
.cid-t163TCFoV2 .embla {
  position: relative;
  width: 100%;
}
.cid-t163TCFoV2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t163TCFoV2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t163TCFoV2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t163TCFoV2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-t163TCFoV2 .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-t163TCFoV2 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-t163TCFoV2 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-t169daAGSQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t169daAGSQ .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-t169daAGSQ .timeline-element {
  position: relative;
}
.cid-t169daAGSQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-t169daAGSQ .iconBackground {
  position: absolute;
  left: 33.33%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  top: 30px;
  margin-left: -9px;
  padding: 0;
}
.cid-t169daAGSQ .separline:before {
  top: 50px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #6592e6;
  left: 33.33%;
  height: calc(100% + 30px);
}
@media (max-width: 767px) {
  .cid-t169daAGSQ .iconBackground {
    left: 15px !important;
  }
  .cid-t169daAGSQ .separline:before {
    left: 15px !important;
  }
}
.cid-t169daAGSQ .mbr-section-title,
.cid-t169daAGSQ .mbr-section-subtitle {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-t169daAGSQ .time-line-date-content {
    margin-left: 1rem;
  }
  .cid-t169daAGSQ .time-line-date-content .mbr-timeline-date {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-t169daAGSQ .time-line-date-content {
    margin-right: 1rem;
  }
  .cid-t169daAGSQ .time-line-date-content .mbr-timeline-date {
    text-align: right;
  }
}
.cid-t169daAGSQ .timeline-text-content {
  margin-left: 2rem;
}
.cid-t169daAGSQ .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-t169daAGSQ .mbr-timeline-date {
  text-align: right;
}
.cid-t1DU0sqvWq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t1DU0sqvWq img,
.cid-t1DU0sqvWq .item-img {
  width: 100%;
}
.cid-t1DU0sqvWq .item:focus,
.cid-t1DU0sqvWq span:focus {
  outline: none;
}
.cid-t1DU0sqvWq .item-wrapper {
  position: relative;
}
.cid-t1DU0sqvWq .slide-content {
  position: relative;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1DU0sqvWq .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t1DU0sqvWq .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1DU0sqvWq .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1DU0sqvWq .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1DU0sqvWq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1DU0sqvWq .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-t1DU0sqvWq .mbr-text,
.cid-t1DU0sqvWq .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-t1DU0sqvWq .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-t1DU0sqvWq .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t1DU0sqvWq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-t1DU0sqvWq .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t1DU0sqvWq .embla__button--next,
.cid-t1DU0sqvWq .embla__button--prev {
  display: flex;
}
.cid-t1DU0sqvWq .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t1DU0sqvWq .embla__button {
    display: none;
  }
}
.cid-t1DU0sqvWq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t1DU0sqvWq .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t1DU0sqvWq .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1DU0sqvWq .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1DU0sqvWq .embla__button {
    top: auto;
  }
}
.cid-t1DU0sqvWq .embla {
  position: relative;
  width: 100%;
}
.cid-t1DU0sqvWq .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t1DU0sqvWq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t1DU0sqvWq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t1DU0sqvWq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-t1DU0sqvWq .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-t1DU0sqvWq .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-t1DU0sqvWq .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-t169Bq54Rj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t169Bq54Rj .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-facebook:hover {
  background: #0b60cb;
}
.cid-t169Bq54Rj .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-twitter:hover {
  background: #0c85d0;
}
.cid-t169Bq54Rj .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-instagram:hover {
  background: #bd005c;
}
.cid-t169Bq54Rj .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-linkedin:hover {
  background: #005582;
}
.cid-t169Bq54Rj .bg-tiktok {
  background: #000000;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-tiktok:hover {
  background: #000000;
}
.cid-t169Bq54Rj .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-t169Bq54Rj .bg-youtube:hover {
  background: #cc0000;
}
.cid-t169Bq54Rj .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-t169Bq54Rj [class^="socicon-"]:before,
.cid-t169Bq54Rj [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-t0aSypAbDG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t0aSypAbDG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t0aSypAbDG .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t0aSypAbDG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t0aSypAbDG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t0aSypAbDG .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t0aSypAbDG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t0aSypAbDG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t0aSypAbDG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t0aSypAbDG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t0aSypAbDG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t0aSypAbDG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t0aSypAbDG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1DZtJy96h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1DZtJy96h nav.navbar {
  position: fixed;
}
.cid-t1DZtJy96h .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-t1DZtJy96h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1DZtJy96h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1DZtJy96h .dropdown-item:hover,
.cid-t1DZtJy96h .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t1DZtJy96h .dropdown-item:hover span {
  color: white;
}
.cid-t1DZtJy96h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1DZtJy96h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1DZtJy96h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1DZtJy96h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1DZtJy96h .nav-link {
  position: relative;
}
.cid-t1DZtJy96h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1DZtJy96h .container {
    flex-wrap: nowrap;
  }
}
.cid-t1DZtJy96h .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1DZtJy96h .dropdown-menu,
.cid-t1DZtJy96h .navbar.opened {
  background: #ffffff !important;
}
.cid-t1DZtJy96h .nav-item:focus,
.cid-t1DZtJy96h .nav-link:focus {
  outline: none;
}
.cid-t1DZtJy96h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1DZtJy96h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1DZtJy96h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1DZtJy96h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1DZtJy96h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1DZtJy96h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1DZtJy96h .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1DZtJy96h .navbar.opened {
  transition: all 0.3s;
}
.cid-t1DZtJy96h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1DZtJy96h .navbar .navbar-logo img {
  width: auto;
}
.cid-t1DZtJy96h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1DZtJy96h .navbar.collapsed {
  justify-content: center;
}
.cid-t1DZtJy96h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1DZtJy96h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1DZtJy96h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t1DZtJy96h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1DZtJy96h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1DZtJy96h .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-t1DZtJy96h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1DZtJy96h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1DZtJy96h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1DZtJy96h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1DZtJy96h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1DZtJy96h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1DZtJy96h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1DZtJy96h .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-t1DZtJy96h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1DZtJy96h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1DZtJy96h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1DZtJy96h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1DZtJy96h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1DZtJy96h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1DZtJy96h .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1DZtJy96h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1DZtJy96h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1DZtJy96h .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-t1DZtJy96h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1DZtJy96h .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1DZtJy96h .dropdown-item.active,
.cid-t1DZtJy96h .dropdown-item:active {
  background-color: transparent;
}
.cid-t1DZtJy96h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1DZtJy96h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1DZtJy96h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1DZtJy96h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1DZtJy96h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1DZtJy96h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1DZtJy96h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1DZtJy96h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1DZtJy96h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1DZtJy96h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t1DZtJy96h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1DZtJy96h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1DZtJy96h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1DZtJy96h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1DZtJy96h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1DZtJy96h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1DZtJy96h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1DZtJy96h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1DZtJy96h .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1DZtJy96h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1DZtJy96h .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-t1DZtJy96h .navbar {
    height: 70px;
  }
  .cid-t1DZtJy96h .navbar.opened {
    height: auto;
  }
  .cid-t1DZtJy96h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1DZLQ11dt {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1DZLQ11dt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t1DZLQ11dt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t1DZLQ11dt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t1DZLQ11dt .mbr-section-title {
  color: #ffffff;
}
.cid-t1DZLQ11dt .mbr-text,
.cid-t1DZLQ11dt .mbr-section-btn {
  color: #ffffff;
}
.cid-t1E0NSIAG5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t1E15rCe3P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t1DZtLE1t2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1DZtLE1t2 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1DZtLE1t2 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1DZtLE1t2 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1DZtLE1t2 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1DZtLE1t2 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1DZtLE1t2 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1DZtLE1t2 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1DZtLE1t2 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1DZtLE1t2 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1DZtLE1t2 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1DZtLE1t2 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1DZtLE1t2 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1DZtLE1t2 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1DZtLE1t2 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t1DZfcXAeN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1DZfcXAeN nav.navbar {
  position: fixed;
}
.cid-t1DZfcXAeN .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-t1DZfcXAeN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1DZfcXAeN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1DZfcXAeN .dropdown-item:hover,
.cid-t1DZfcXAeN .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t1DZfcXAeN .dropdown-item:hover span {
  color: white;
}
.cid-t1DZfcXAeN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1DZfcXAeN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1DZfcXAeN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1DZfcXAeN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1DZfcXAeN .nav-link {
  position: relative;
}
.cid-t1DZfcXAeN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1DZfcXAeN .container {
    flex-wrap: nowrap;
  }
}
.cid-t1DZfcXAeN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1DZfcXAeN .dropdown-menu,
.cid-t1DZfcXAeN .navbar.opened {
  background: #ffffff !important;
}
.cid-t1DZfcXAeN .nav-item:focus,
.cid-t1DZfcXAeN .nav-link:focus {
  outline: none;
}
.cid-t1DZfcXAeN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1DZfcXAeN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1DZfcXAeN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1DZfcXAeN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1DZfcXAeN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1DZfcXAeN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1DZfcXAeN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1DZfcXAeN .navbar.opened {
  transition: all 0.3s;
}
.cid-t1DZfcXAeN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1DZfcXAeN .navbar .navbar-logo img {
  width: auto;
}
.cid-t1DZfcXAeN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1DZfcXAeN .navbar.collapsed {
  justify-content: center;
}
.cid-t1DZfcXAeN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1DZfcXAeN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1DZfcXAeN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t1DZfcXAeN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1DZfcXAeN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1DZfcXAeN .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-t1DZfcXAeN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1DZfcXAeN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1DZfcXAeN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1DZfcXAeN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1DZfcXAeN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1DZfcXAeN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1DZfcXAeN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1DZfcXAeN .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-t1DZfcXAeN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1DZfcXAeN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1DZfcXAeN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1DZfcXAeN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1DZfcXAeN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1DZfcXAeN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1DZfcXAeN .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1DZfcXAeN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1DZfcXAeN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1DZfcXAeN .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-t1DZfcXAeN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1DZfcXAeN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t1DZfcXAeN .dropdown-item.active,
.cid-t1DZfcXAeN .dropdown-item:active {
  background-color: transparent;
}
.cid-t1DZfcXAeN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1DZfcXAeN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1DZfcXAeN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1DZfcXAeN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1DZfcXAeN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1DZfcXAeN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1DZfcXAeN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1DZfcXAeN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1DZfcXAeN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1DZfcXAeN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t1DZfcXAeN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1DZfcXAeN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1DZfcXAeN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1DZfcXAeN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1DZfcXAeN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1DZfcXAeN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1DZfcXAeN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1DZfcXAeN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1DZfcXAeN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t1DZfcXAeN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1DZfcXAeN .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-t1DZfcXAeN .navbar {
    height: 70px;
  }
  .cid-t1DZfcXAeN .navbar.opened {
    height: auto;
  }
  .cid-t1DZfcXAeN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1E4zz1XZW {
  background-color: #000000;
}
.cid-t1E4zz1XZW .mbr-section-title {
  color: #ffffff;
}
.cid-t1E4zz1XZW .mbr-text,
.cid-t1E4zz1XZW .mbr-section-btn {
  color: #ffffff;
}
.cid-t1DZfdJjsN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t1DZfdJjsN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t1DZfdJjsN .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t1DZfdJjsN .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t1DZfdJjsN .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t1DZfdJjsN .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t1DZfdJjsN .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t1DZfdJjsN .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t1DZfdJjsN .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t1DZfdJjsN .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1DZfdJjsN .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t1DZfdJjsN .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1DZfdJjsN .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1DZfdJjsN .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t1DZfdJjsN .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3IZH3NFxG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3IZH3NFxG nav.navbar {
  position: fixed;
}
.cid-t3IZH3NFxG .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-t3IZH3NFxG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3IZH3NFxG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3IZH3NFxG .dropdown-item:hover,
.cid-t3IZH3NFxG .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3IZH3NFxG .dropdown-item:hover span {
  color: white;
}
.cid-t3IZH3NFxG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3IZH3NFxG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3IZH3NFxG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3IZH3NFxG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3IZH3NFxG .nav-link {
  position: relative;
}
.cid-t3IZH3NFxG .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3IZH3NFxG .container {
    flex-wrap: nowrap;
  }
}
.cid-t3IZH3NFxG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3IZH3NFxG .dropdown-menu,
.cid-t3IZH3NFxG .navbar.opened {
  background: #ffffff !important;
}
.cid-t3IZH3NFxG .nav-item:focus,
.cid-t3IZH3NFxG .nav-link:focus {
  outline: none;
}
.cid-t3IZH3NFxG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3IZH3NFxG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3IZH3NFxG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3IZH3NFxG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3IZH3NFxG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3IZH3NFxG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3IZH3NFxG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3IZH3NFxG .navbar.opened {
  transition: all 0.3s;
}
.cid-t3IZH3NFxG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3IZH3NFxG .navbar .navbar-logo img {
  width: auto;
}
.cid-t3IZH3NFxG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3IZH3NFxG .navbar.collapsed {
  justify-content: center;
}
.cid-t3IZH3NFxG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3IZH3NFxG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3IZH3NFxG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3IZH3NFxG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3IZH3NFxG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3IZH3NFxG .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-t3IZH3NFxG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3IZH3NFxG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3IZH3NFxG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3IZH3NFxG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3IZH3NFxG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3IZH3NFxG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3IZH3NFxG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3IZH3NFxG .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-t3IZH3NFxG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3IZH3NFxG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3IZH3NFxG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3IZH3NFxG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3IZH3NFxG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3IZH3NFxG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3IZH3NFxG .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3IZH3NFxG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3IZH3NFxG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3IZH3NFxG .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-t3IZH3NFxG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3IZH3NFxG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3IZH3NFxG .dropdown-item.active,
.cid-t3IZH3NFxG .dropdown-item:active {
  background-color: transparent;
}
.cid-t3IZH3NFxG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3IZH3NFxG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3IZH3NFxG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3IZH3NFxG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3IZH3NFxG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3IZH3NFxG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3IZH3NFxG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3IZH3NFxG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3IZH3NFxG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3IZH3NFxG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3IZH3NFxG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3IZH3NFxG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3IZH3NFxG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3IZH3NFxG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3IZH3NFxG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3IZH3NFxG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3IZH3NFxG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3IZH3NFxG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3IZH3NFxG .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3IZH3NFxG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3IZH3NFxG .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-t3IZH3NFxG .navbar {
    height: 70px;
  }
  .cid-t3IZH3NFxG .navbar.opened {
    height: auto;
  }
  .cid-t3IZH3NFxG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3IZH4lLb6 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3IZH4lLb6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3IZH4lLb6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3IZH4lLb6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3IZH4lLb6 .mbr-section-title {
  color: #ffffff;
}
.cid-t3IZH4lLb6 .mbr-text,
.cid-t3IZH4lLb6 .mbr-section-btn {
  color: #ffffff;
}
.cid-t3IZH4IoHu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3IZH4U4vZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3IZH57ESQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3IZH57ESQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3IZH57ESQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3IZH57ESQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3IZH57ESQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3IZH57ESQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3IZH57ESQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3IZH57ESQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3IZH57ESQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3IZH57ESQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3IZH57ESQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3IZH57ESQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3IZH57ESQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3IZH57ESQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3IZH57ESQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3J67eMyiM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3J67eMyiM nav.navbar {
  position: fixed;
}
.cid-t3J67eMyiM .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-t3J67eMyiM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3J67eMyiM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3J67eMyiM .dropdown-item:hover,
.cid-t3J67eMyiM .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3J67eMyiM .dropdown-item:hover span {
  color: white;
}
.cid-t3J67eMyiM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3J67eMyiM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3J67eMyiM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3J67eMyiM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3J67eMyiM .nav-link {
  position: relative;
}
.cid-t3J67eMyiM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3J67eMyiM .container {
    flex-wrap: nowrap;
  }
}
.cid-t3J67eMyiM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3J67eMyiM .dropdown-menu,
.cid-t3J67eMyiM .navbar.opened {
  background: #ffffff !important;
}
.cid-t3J67eMyiM .nav-item:focus,
.cid-t3J67eMyiM .nav-link:focus {
  outline: none;
}
.cid-t3J67eMyiM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3J67eMyiM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3J67eMyiM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3J67eMyiM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3J67eMyiM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3J67eMyiM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3J67eMyiM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3J67eMyiM .navbar.opened {
  transition: all 0.3s;
}
.cid-t3J67eMyiM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3J67eMyiM .navbar .navbar-logo img {
  width: auto;
}
.cid-t3J67eMyiM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3J67eMyiM .navbar.collapsed {
  justify-content: center;
}
.cid-t3J67eMyiM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3J67eMyiM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3J67eMyiM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3J67eMyiM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3J67eMyiM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3J67eMyiM .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-t3J67eMyiM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3J67eMyiM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3J67eMyiM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3J67eMyiM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3J67eMyiM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3J67eMyiM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3J67eMyiM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3J67eMyiM .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-t3J67eMyiM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3J67eMyiM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3J67eMyiM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3J67eMyiM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3J67eMyiM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3J67eMyiM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3J67eMyiM .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3J67eMyiM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3J67eMyiM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3J67eMyiM .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-t3J67eMyiM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3J67eMyiM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3J67eMyiM .dropdown-item.active,
.cid-t3J67eMyiM .dropdown-item:active {
  background-color: transparent;
}
.cid-t3J67eMyiM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3J67eMyiM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3J67eMyiM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3J67eMyiM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3J67eMyiM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3J67eMyiM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3J67eMyiM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3J67eMyiM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3J67eMyiM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3J67eMyiM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3J67eMyiM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3J67eMyiM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3J67eMyiM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3J67eMyiM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3J67eMyiM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3J67eMyiM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3J67eMyiM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3J67eMyiM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3J67eMyiM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3J67eMyiM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3J67eMyiM .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-t3J67eMyiM .navbar {
    height: 70px;
  }
  .cid-t3J67eMyiM .navbar.opened {
    height: auto;
  }
  .cid-t3J67eMyiM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3J67fkZ6E {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3J67fkZ6E .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3J67fkZ6E .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3J67fkZ6E .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3J67fkZ6E .mbr-section-title {
  color: #ffffff;
}
.cid-t3J67fkZ6E .mbr-text,
.cid-t3J67fkZ6E .mbr-section-btn {
  color: #ffffff;
}
.cid-t3J67fGiMv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3J67fR9LY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3J67g3hgU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3J67g3hgU .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3J67g3hgU .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3J67g3hgU .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3J67g3hgU .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3J67g3hgU .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3J67g3hgU .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3J67g3hgU .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3J67g3hgU .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3J67g3hgU .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3J67g3hgU .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3J67g3hgU .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3J67g3hgU .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3J67g3hgU .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3J67g3hgU .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3J6P415mh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3J6P415mh nav.navbar {
  position: fixed;
}
.cid-t3J6P415mh .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-t3J6P415mh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3J6P415mh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3J6P415mh .dropdown-item:hover,
.cid-t3J6P415mh .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3J6P415mh .dropdown-item:hover span {
  color: white;
}
.cid-t3J6P415mh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3J6P415mh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3J6P415mh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3J6P415mh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3J6P415mh .nav-link {
  position: relative;
}
.cid-t3J6P415mh .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3J6P415mh .container {
    flex-wrap: nowrap;
  }
}
.cid-t3J6P415mh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3J6P415mh .dropdown-menu,
.cid-t3J6P415mh .navbar.opened {
  background: #ffffff !important;
}
.cid-t3J6P415mh .nav-item:focus,
.cid-t3J6P415mh .nav-link:focus {
  outline: none;
}
.cid-t3J6P415mh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3J6P415mh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3J6P415mh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3J6P415mh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3J6P415mh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3J6P415mh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3J6P415mh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3J6P415mh .navbar.opened {
  transition: all 0.3s;
}
.cid-t3J6P415mh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3J6P415mh .navbar .navbar-logo img {
  width: auto;
}
.cid-t3J6P415mh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3J6P415mh .navbar.collapsed {
  justify-content: center;
}
.cid-t3J6P415mh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3J6P415mh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3J6P415mh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3J6P415mh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3J6P415mh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3J6P415mh .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-t3J6P415mh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3J6P415mh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3J6P415mh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3J6P415mh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3J6P415mh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3J6P415mh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3J6P415mh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3J6P415mh .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-t3J6P415mh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3J6P415mh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3J6P415mh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3J6P415mh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3J6P415mh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3J6P415mh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3J6P415mh .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3J6P415mh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3J6P415mh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3J6P415mh .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-t3J6P415mh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3J6P415mh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3J6P415mh .dropdown-item.active,
.cid-t3J6P415mh .dropdown-item:active {
  background-color: transparent;
}
.cid-t3J6P415mh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3J6P415mh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3J6P415mh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3J6P415mh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3J6P415mh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3J6P415mh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3J6P415mh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3J6P415mh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3J6P415mh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3J6P415mh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3J6P415mh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3J6P415mh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3J6P415mh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3J6P415mh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3J6P415mh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3J6P415mh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3J6P415mh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3J6P415mh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3J6P415mh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3J6P415mh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3J6P415mh .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-t3J6P415mh .navbar {
    height: 70px;
  }
  .cid-t3J6P415mh .navbar.opened {
    height: auto;
  }
  .cid-t3J6P415mh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3J6P4vTEs {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3J6P4vTEs .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3J6P4vTEs .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3J6P4vTEs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3J6P4vTEs .mbr-section-title {
  color: #ffffff;
}
.cid-t3J6P4vTEs .mbr-text,
.cid-t3J6P4vTEs .mbr-section-btn {
  color: #ffffff;
}
.cid-t3J6P4Ngob {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3J6P4WFou {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3J6P54jeM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3J6P54jeM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3J6P54jeM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3J6P54jeM .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3J6P54jeM .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3J6P54jeM .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3J6P54jeM .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3J6P54jeM .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3J6P54jeM .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3J6P54jeM .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3J6P54jeM .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3J6P54jeM .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3J6P54jeM .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3J6P54jeM .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3J6P54jeM .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3Jd4zysZr {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3Jd4zysZr nav.navbar {
  position: fixed;
}
.cid-t3Jd4zysZr .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-t3Jd4zysZr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3Jd4zysZr .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3Jd4zysZr .dropdown-item:hover,
.cid-t3Jd4zysZr .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3Jd4zysZr .dropdown-item:hover span {
  color: white;
}
.cid-t3Jd4zysZr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3Jd4zysZr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3Jd4zysZr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3Jd4zysZr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3Jd4zysZr .nav-link {
  position: relative;
}
.cid-t3Jd4zysZr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3Jd4zysZr .container {
    flex-wrap: nowrap;
  }
}
.cid-t3Jd4zysZr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3Jd4zysZr .dropdown-menu,
.cid-t3Jd4zysZr .navbar.opened {
  background: #ffffff !important;
}
.cid-t3Jd4zysZr .nav-item:focus,
.cid-t3Jd4zysZr .nav-link:focus {
  outline: none;
}
.cid-t3Jd4zysZr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3Jd4zysZr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3Jd4zysZr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3Jd4zysZr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3Jd4zysZr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3Jd4zysZr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3Jd4zysZr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3Jd4zysZr .navbar.opened {
  transition: all 0.3s;
}
.cid-t3Jd4zysZr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3Jd4zysZr .navbar .navbar-logo img {
  width: auto;
}
.cid-t3Jd4zysZr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3Jd4zysZr .navbar.collapsed {
  justify-content: center;
}
.cid-t3Jd4zysZr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3Jd4zysZr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3Jd4zysZr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3Jd4zysZr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3Jd4zysZr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3Jd4zysZr .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-t3Jd4zysZr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3Jd4zysZr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3Jd4zysZr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3Jd4zysZr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3Jd4zysZr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3Jd4zysZr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3Jd4zysZr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3Jd4zysZr .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-t3Jd4zysZr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3Jd4zysZr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3Jd4zysZr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3Jd4zysZr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3Jd4zysZr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3Jd4zysZr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3Jd4zysZr .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3Jd4zysZr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3Jd4zysZr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3Jd4zysZr .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-t3Jd4zysZr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3Jd4zysZr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3Jd4zysZr .dropdown-item.active,
.cid-t3Jd4zysZr .dropdown-item:active {
  background-color: transparent;
}
.cid-t3Jd4zysZr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3Jd4zysZr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3Jd4zysZr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3Jd4zysZr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3Jd4zysZr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3Jd4zysZr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3Jd4zysZr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3Jd4zysZr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3Jd4zysZr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3Jd4zysZr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3Jd4zysZr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3Jd4zysZr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3Jd4zysZr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3Jd4zysZr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3Jd4zysZr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3Jd4zysZr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3Jd4zysZr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3Jd4zysZr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3Jd4zysZr .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3Jd4zysZr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Jd4zysZr .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-t3Jd4zysZr .navbar {
    height: 70px;
  }
  .cid-t3Jd4zysZr .navbar.opened {
    height: auto;
  }
  .cid-t3Jd4zysZr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3Jd4A3u7k {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3Jd4A3u7k .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3Jd4A3u7k .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3Jd4A3u7k .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3Jd4A3u7k .mbr-section-title {
  color: #ffffff;
}
.cid-t3Jd4A3u7k .mbr-text,
.cid-t3Jd4A3u7k .mbr-section-btn {
  color: #ffffff;
}
.cid-t3Jd4AlpDX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3Jd4AuUQl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3Jd4ADJnK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3Jd4ADJnK .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Jd4ADJnK .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3Jd4ADJnK .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Jd4ADJnK .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3Jd4ADJnK .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3Jd4ADJnK .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3Jd4ADJnK .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Jd4ADJnK .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3Jd4ADJnK .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3Jd4ADJnK .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3Jd4ADJnK .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3Jd4ADJnK .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Jd4ADJnK .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3Jd4ADJnK .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3Jol9Kq61 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3Jol9Kq61 nav.navbar {
  position: fixed;
}
.cid-t3Jol9Kq61 .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-t3Jol9Kq61 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3Jol9Kq61 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3Jol9Kq61 .dropdown-item:hover,
.cid-t3Jol9Kq61 .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3Jol9Kq61 .dropdown-item:hover span {
  color: white;
}
.cid-t3Jol9Kq61 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3Jol9Kq61 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3Jol9Kq61 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3Jol9Kq61 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3Jol9Kq61 .nav-link {
  position: relative;
}
.cid-t3Jol9Kq61 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3Jol9Kq61 .container {
    flex-wrap: nowrap;
  }
}
.cid-t3Jol9Kq61 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3Jol9Kq61 .dropdown-menu,
.cid-t3Jol9Kq61 .navbar.opened {
  background: #ffffff !important;
}
.cid-t3Jol9Kq61 .nav-item:focus,
.cid-t3Jol9Kq61 .nav-link:focus {
  outline: none;
}
.cid-t3Jol9Kq61 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3Jol9Kq61 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3Jol9Kq61 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3Jol9Kq61 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3Jol9Kq61 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3Jol9Kq61 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3Jol9Kq61 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3Jol9Kq61 .navbar.opened {
  transition: all 0.3s;
}
.cid-t3Jol9Kq61 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3Jol9Kq61 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3Jol9Kq61 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3Jol9Kq61 .navbar.collapsed {
  justify-content: center;
}
.cid-t3Jol9Kq61 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3Jol9Kq61 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3Jol9Kq61 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3Jol9Kq61 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3Jol9Kq61 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3Jol9Kq61 .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-t3Jol9Kq61 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3Jol9Kq61 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3Jol9Kq61 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3Jol9Kq61 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3Jol9Kq61 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3Jol9Kq61 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3Jol9Kq61 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3Jol9Kq61 .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-t3Jol9Kq61 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3Jol9Kq61 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3Jol9Kq61 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3Jol9Kq61 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3Jol9Kq61 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3Jol9Kq61 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3Jol9Kq61 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3Jol9Kq61 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3Jol9Kq61 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3Jol9Kq61 .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-t3Jol9Kq61 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3Jol9Kq61 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3Jol9Kq61 .dropdown-item.active,
.cid-t3Jol9Kq61 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3Jol9Kq61 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3Jol9Kq61 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3Jol9Kq61 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3Jol9Kq61 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3Jol9Kq61 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3Jol9Kq61 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3Jol9Kq61 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3Jol9Kq61 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3Jol9Kq61 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3Jol9Kq61 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3Jol9Kq61 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3Jol9Kq61 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3Jol9Kq61 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3Jol9Kq61 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3Jol9Kq61 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3Jol9Kq61 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3Jol9Kq61 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3Jol9Kq61 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3Jol9Kq61 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3Jol9Kq61 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3Jol9Kq61 .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-t3Jol9Kq61 .navbar {
    height: 70px;
  }
  .cid-t3Jol9Kq61 .navbar.opened {
    height: auto;
  }
  .cid-t3Jol9Kq61 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3JolaqLVC {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3JolaqLVC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-t3JolaqLVC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-t3JolaqLVC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-t3JolaqLVC .mbr-section-title {
  color: #ffffff;
}
.cid-t3JolaqLVC .mbr-text,
.cid-t3JolaqLVC .mbr-section-btn {
  color: #ffffff;
}
.cid-t3JolaMjjN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3JolaVely {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t3Jolb49IW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3Jolb49IW .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3Jolb49IW .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3Jolb49IW .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3Jolb49IW .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3Jolb49IW .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3Jolb49IW .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3Jolb49IW .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3Jolb49IW .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3Jolb49IW .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3Jolb49IW .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3Jolb49IW .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3Jolb49IW .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3Jolb49IW .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3Jolb49IW .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t3IYv9Sq55 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t3IYv9Sq55 nav.navbar {
  position: fixed;
}
.cid-t3IYv9Sq55 .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-t3IYv9Sq55 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t3IYv9Sq55 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t3IYv9Sq55 .dropdown-item:hover,
.cid-t3IYv9Sq55 .dropdown-item:focus {
  background: #1d8027 !important;
  color: white !important;
}
.cid-t3IYv9Sq55 .dropdown-item:hover span {
  color: white;
}
.cid-t3IYv9Sq55 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t3IYv9Sq55 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t3IYv9Sq55 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t3IYv9Sq55 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t3IYv9Sq55 .nav-link {
  position: relative;
}
.cid-t3IYv9Sq55 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t3IYv9Sq55 .container {
    flex-wrap: nowrap;
  }
}
.cid-t3IYv9Sq55 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t3IYv9Sq55 .dropdown-menu,
.cid-t3IYv9Sq55 .navbar.opened {
  background: #ffffff !important;
}
.cid-t3IYv9Sq55 .nav-item:focus,
.cid-t3IYv9Sq55 .nav-link:focus {
  outline: none;
}
.cid-t3IYv9Sq55 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t3IYv9Sq55 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t3IYv9Sq55 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t3IYv9Sq55 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t3IYv9Sq55 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t3IYv9Sq55 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t3IYv9Sq55 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t3IYv9Sq55 .navbar.opened {
  transition: all 0.3s;
}
.cid-t3IYv9Sq55 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t3IYv9Sq55 .navbar .navbar-logo img {
  width: auto;
}
.cid-t3IYv9Sq55 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t3IYv9Sq55 .navbar.collapsed {
  justify-content: center;
}
.cid-t3IYv9Sq55 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t3IYv9Sq55 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t3IYv9Sq55 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t3IYv9Sq55 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t3IYv9Sq55 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t3IYv9Sq55 .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-t3IYv9Sq55 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t3IYv9Sq55 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t3IYv9Sq55 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t3IYv9Sq55 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t3IYv9Sq55 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t3IYv9Sq55 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t3IYv9Sq55 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t3IYv9Sq55 .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-t3IYv9Sq55 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t3IYv9Sq55 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t3IYv9Sq55 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t3IYv9Sq55 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t3IYv9Sq55 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t3IYv9Sq55 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t3IYv9Sq55 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t3IYv9Sq55 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t3IYv9Sq55 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t3IYv9Sq55 .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-t3IYv9Sq55 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t3IYv9Sq55 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t3IYv9Sq55 .dropdown-item.active,
.cid-t3IYv9Sq55 .dropdown-item:active {
  background-color: transparent;
}
.cid-t3IYv9Sq55 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t3IYv9Sq55 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t3IYv9Sq55 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t3IYv9Sq55 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t3IYv9Sq55 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t3IYv9Sq55 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t3IYv9Sq55 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t3IYv9Sq55 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t3IYv9Sq55 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t3IYv9Sq55 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t3IYv9Sq55 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t3IYv9Sq55 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3IYv9Sq55 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t3IYv9Sq55 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t3IYv9Sq55 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3IYv9Sq55 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t3IYv9Sq55 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t3IYv9Sq55 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t3IYv9Sq55 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-t3IYv9Sq55 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t3IYv9Sq55 .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-t3IYv9Sq55 .navbar {
    height: 70px;
  }
  .cid-t3IYv9Sq55 .navbar.opened {
    height: auto;
  }
  .cid-t3IYv9Sq55 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3IYvakJrc {
  background-color: #000000;
}
.cid-t3IYvakJrc .mbr-section-title {
  color: #ffffff;
}
.cid-t3IYvakJrc .mbr-text,
.cid-t3IYvakJrc .mbr-section-btn {
  color: #ffffff;
}
.cid-t3IYvaAQVs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-t3IYvaAQVs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-t3IYvaAQVs .social-row {
  width: 100%;
  justify-content: center;
}
.cid-t3IYvaAQVs .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-t3IYvaAQVs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t3IYvaAQVs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t3IYvaAQVs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t3IYvaAQVs .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-t3IYvaAQVs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t3IYvaAQVs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t3IYvaAQVs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-t3IYvaAQVs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t3IYvaAQVs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t3IYvaAQVs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t3IYvaAQVs .media-container-row .row-copirayt p {
  width: 100%;
}
