body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #e43f3f !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #e43f3f !important;
  border-color: #e43f3f !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: #b31919 !important;
  border-color: #b31919 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b31919 !important;
  border-color: #b31919 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d8c3a5 !important;
  border-color: #d8c3a5 !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: #be9b69 !important;
  border-color: #be9b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #be9b69 !important;
  border-color: #be9b69 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e43f3f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b31919 !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: #e43f3f !important;
  border-color: #e43f3f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d8c3a5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #be9b69 !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: #d8c3a5 !important;
  border-color: #d8c3a5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #e43f3f !important;
}
.text-secondary {
  color: #d8c3a5 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #a61717 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b9945e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #e43f3f;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #e43f3f;
  border-color: #e43f3f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #e43f3f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdf2f2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #e43f3f !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #e43f3f;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #e43f3f;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #e43f3f;
}
.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: #e43f3f;
  border-bottom-color: #e43f3f;
}
.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: #e43f3f !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #d8c3a5 !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='%23e43f3f' %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-uR08qJpPoB .navbar-dropdown {
  position: relative !important;
}
.cid-uR08qJpPoB .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR08qJpPoB .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-uR08qJpPoB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR08qJpPoB .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover span {
  color: white;
}
.cid-uR08qJpPoB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR08qJpPoB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR08qJpPoB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR08qJpPoB .nav-link {
  position: relative;
}
.cid-uR08qJpPoB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .container {
    flex-wrap: nowrap;
  }
}
.cid-uR08qJpPoB .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR08qJpPoB .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-menu,
.cid-uR08qJpPoB .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .nav-item:focus,
.cid-uR08qJpPoB .nav-link:focus {
  outline: none;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR08qJpPoB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR08qJpPoB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB .navbar.opened {
  transition: all 0.3s;
}
.cid-uR08qJpPoB .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR08qJpPoB .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR08qJpPoB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR08qJpPoB .navbar.collapsed {
  justify-content: center;
}
.cid-uR08qJpPoB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR08qJpPoB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR08qJpPoB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR08qJpPoB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR08qJpPoB .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-uR08qJpPoB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR08qJpPoB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR08qJpPoB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR08qJpPoB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR08qJpPoB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR08qJpPoB .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR08qJpPoB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-item.active,
.cid-uR08qJpPoB .dropdown-item:active {
  background-color: transparent;
}
.cid-uR08qJpPoB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR08qJpPoB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR08qJpPoB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR08qJpPoB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR08qJpPoB .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR08qJpPoB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR08qJpPoB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR08qJpPoB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar {
    height: 70px;
  }
  .cid-uR08qJpPoB .navbar.opened {
    height: auto;
  }
  .cid-uR08qJpPoB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR08qJpPoB .navbar-nav {
  margin: 0 auto;
}
.cid-uR08qJpPoB .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR08qJpPoB .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR08qJpPoB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR08qJpPoB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR08qJpPoB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR08qJpPoB .content-wrap {
  min-height: 110px;
}
.cid-uR0a2hWNza {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR0a2hWNza .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0a2hWNza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0a2hWNza .card {
  justify-content: center;
}
.cid-uR0a2hWNza .content-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-uR0a2hWNza .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0a2hWNza .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR0a2hWNza .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 30px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uR0a2hWNza .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uR0a2hWNza .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 65px;
  height: 615px;
  margin-left: 100px;
}
@media (max-width: 1440px) {
  .cid-uR0a2hWNza .image-wrapper {
    padding: 40px 20px;
    margin-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0a2hWNza .image-wrapper {
    height: 400px;
    padding: 30px 15px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.cid-uR0a2hWNza .image-wrapper .main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR0a2hWNza .image-wrapper .image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 65px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0a2hWNza .image-wrapper .image-wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uR0a2hWNza .image-wrapper .image-wrap {
    padding: 30px 15px;
  }
}
.cid-uR0a2hWNza .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uR0a2hWNza .mbr-label {
  color: #ffffff;
}
.cid-uR0a2hWNza .mbr-section-title {
  color: #ffffff;
}
.cid-uR0a2hWNza .mbr-text {
  color: #ffffff;
}
.cid-uR0ogFzuN9 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uR0ogFzuN9 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uR0ogFzuN9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uR0ogFzuN9 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #e2fa0e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uR0ogFzuN9 .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uR0ogFzuN9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-uR0ogFzuN9 .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uR0ogFzuN9 .svg-top {
    width: 1000px;
  }
}
.cid-uR0ogFzuN9 .mbr-text {
  color: #000000;
}
.cid-uR0ogFzuN9 .mbr-section-title {
  color: #000000;
}
.cid-uR0mI9vvBd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
  overflow: hidden;
}
.cid-uR0mI9vvBd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0mI9vvBd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0mI9vvBd .container {
    padding: 0 30px;
  }
}
.cid-uR0mI9vvBd .card {
  justify-content: center;
}
.cid-uR0mI9vvBd .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uR0mI9vvBd .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uR0mI9vvBd .content-wrapper {
    padding: 0;
  }
}
.cid-uR0mI9vvBd .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uR0mI9vvBd .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uR0mI9vvBd .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #000000;
  margin-bottom: 50px;
}
.cid-uR0mI9vvBd .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uR0mI9vvBd .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uR0mI9vvBd .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uR0mI9vvBd .mbr-text {
  color: #254b45;
}
.cid-uR0mI9vvBd .mbr-name {
  color: #254b45;
}
.cid-uR0mI9vvBd .mbr-role {
  color: #254b45;
}
.cid-uR0mI9vvBd .mbr-text,
.cid-uR0mI9vvBd .icon-wrapper {
  color: #000000;
}
.cid-uR0mnpnZJb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0mnpnZJb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0mnpnZJb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0mnpnZJb .container {
    padding: 0 16px;
  }
}
.cid-uR0mnpnZJb .card {
  justify-content: center;
}
.cid-uR0mnpnZJb .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #e2fa0e;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uR0mnpnZJb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0mnpnZJb .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR0mnpnZJb .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uR0mnpnZJb .mbr-section-title {
  color: #000000;
}
.cid-uR0mnpnZJb .mbr-text {
  color: #000000;
}
.cid-uR0mnpnZJb .mbr-desc {
  color: #000000;
}
.cid-tNxy6UgDdQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-tNxy6UgDdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNxy6UgDdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNxy6UgDdQ .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-tNxy6UgDdQ .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tNxy6UgDdQ .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-tNxy6UgDdQ .mbr-section-title {
  color: #131313;
}
.cid-tNxy6UgDdQ .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-tNxy6UgDdQ .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-tNxy6UgDdQ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-tNxy6UgDdQ .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #fafafa;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-tNxy6UgDdQ .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-tNxy6UgDdQ .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-tNxy6UgDdQ .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-tNxy6UgDdQ .card-title {
  color: #131313;
}
.cid-tNxy6UgDdQ .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-tNxy6UgDdQ .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-tNxy6UgDdQ .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-tNxy6UgDdQ .card-link {
    margin-top: 15px;
  }
}
.cid-tNxy6UgDdQ .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-tNxy6UgDdQ .card-title,
.cid-tNxy6UgDdQ .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR0oThVUZu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQWUXJhc8g {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e2fa0e;
}
.cid-uQWUXJhc8g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQWUXJhc8g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQWUXJhc8g .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uQWUXJhc8g .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uQWUXJhc8g .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uQWUXJhc8g .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uQWUXJhc8g .mbr-text,
.cid-uQWUXJhc8g .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uQWUXJhc8g .card-title,
.cid-uQWUXJhc8g .card-box {
  text-align: left;
  color: #000000;
}
.cid-uQJ62TUHTK {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQJ62TUHTK blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #e2fa0e;
}
.cid-uQJ62TUHTK .mbr-section-title {
  color: #000000;
}
.cid-uQJ62TUHTK .mbr-text {
  color: #000000;
}
.cid-uQWVcLFzNd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQWVcLFzNd .mbr-text {
  color: #000000;
}
.cid-uQWVcLFzNd .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uQWVcLFzNd .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uQWVcLFzNd .mbr-section-subtitle,
.cid-uQWVcLFzNd .main-button {
  text-align: left;
  color: #000000;
}
.cid-uQWVcLFzNd .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uQWVcLFzNd .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uQWVcLFzNd .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uQWVcLFzNd .panel-group {
  border: none;
}
.cid-uQWVcLFzNd .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uQWVcLFzNd .card-header {
    padding: 0rem;
  }
}
.cid-uQWVcLFzNd .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uQWVcLFzNd .collapsed span {
  transform: rotate(0deg);
}
.cid-uQWVcLFzNd .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uQWVcLFzNd p {
  margin-bottom: 0.3rem;
}
.cid-uQWVcLFzNd .panel-title-edit {
  color: #000000;
}
.cid-uQWVcLFzNd .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uQWVcLFzNd .card {
  background: #e2fa0e;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uQWVcLFzNd .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uQWVcLFzNd .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uQWVcLFzNd .panel-text {
  color: #000000;
}
.cid-uQWVcLFzNd .panel-title-edit,
.cid-uQWVcLFzNd .mbr-iconfont {
  color: #000000;
}
.cid-uQZifdjJYT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e2fa0e;
}
.cid-uQZifdjJYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQZifdjJYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQZifdjJYT .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQZifdjJYT .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uQZifdjJYT .items-wrapper {
  margin: 0 -75px;
}
.cid-uQZifdjJYT .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uQZifdjJYT .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uQZifdjJYT .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQZifdjJYT .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
  position: relative;
  padding: 0 14px 14px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap::before {
  content: '/';
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  color: inherit;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uQZifdjJYT .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uQZifdjJYT .mbr-section-title {
  color: #0f0f0f;
}
.cid-uQZifdjJYT .card-title {
  color: #0f0f0f;
}
.cid-uQZifdjJYT .card-date {
  color: #666666;
}
.cid-uQZifdjJYT .list,
.cid-uQZifdjJYT .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR0cxEUdew {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0cxEUdew .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0cxEUdew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0cxEUdew .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uR0cxEUdew .card {
    margin-bottom: 2rem!important;
  }
  .cid-uR0cxEUdew .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uR0cxEUdew .link-wrap {
    align-items: center;
  }
}
.cid-uR0cxEUdew .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR0cxEUdew .card-title,
.cid-uR0cxEUdew .card-box {
  color: #000000;
}
.cid-uR0lUrdxl0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR0lUrdxl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0lUrdxl0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0lUrdxl0 .row {
  justify-content: center;
}
.cid-uR0lUrdxl0 .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uR0lUrdxl0 .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uR0lUrdxl0 .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-uR0lUrdxl0 .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0lUrdxl0 .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-uR0lUrdxl0 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR0lUrdxl0 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uR0lUrdxl0 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0lUrdxl0 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uR0lUrdxl0 .mbr-section-title {
  color: #ffffff;
}
.cid-uR0lUrdxl0 .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-uR0lUrdxl0 .mbr-text,
.cid-uR0lUrdxl0 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uR0lUrdxl0 .mbr-section-title,
.cid-uR0lUrdxl0 .mbr-section-btn {
  text-align: center;
}
.cid-uR0pxObH3g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0pxObH3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0pxObH3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0pxObH3g .card-wrapper {
  background: #e2fa0e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR0pxObH3g .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0pxObH3g .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0pxObH3g .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR0pxObH3g .mbr-text,
.cid-uR0pxObH3g .mbr-section-btn {
  color: #000000;
}
.cid-uR0pxObH3g .card-title,
.cid-uR0pxObH3g .card-box {
  text-align: left;
  color: #000000;
}
.cid-uQV3dT1TcX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uQV3dT1TcX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQV3dT1TcX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQV3dT1TcX .card-wrapper {
  padding: 80px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uQV3dT1TcX .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uQV3dT1TcX .card-wrapper {
    padding: 0;
  }
}
.cid-uQV3dT1TcX .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uQV3dT1TcX .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uQV3dT1TcX .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uQQv5E9tpJ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQQv5E9tpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQv5E9tpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQv5E9tpJ .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uQQv5E9tpJ .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uQQv5E9tpJ .mbr-section-title {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .mbr-text {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .list {
  color: #2C2625;
}
.cid-uR0uAocYOu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0uAocYOu h2,
.cid-uR0uAocYOu h4,
.cid-uR0uAocYOu p {
  margin: 0;
}
.cid-uR0uAocYOu .text {
  padding-right: 15%;
}
@media (max-width: 1200px) {
  .cid-uR0uAocYOu .text {
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .cid-uR0uAocYOu .image-wrap {
    margin-top: 30px;
  }
}
.cid-uR0uAocYOu img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 100%;
}
.cid-uR0uAocYOu .mbr-section-title {
  color: #000000;
  margin-bottom: 8px;
}
.cid-uR0uAocYOu .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 8px;
}
.cid-uR0uAocYOu .mbr-text {
  color: #6b6b6b;
  margin-bottom: 30px;
}
.cid-uR0uAocYOu .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uR0uAocYOu .socials p {
  margin: 0 20px 0 0;
}
.cid-uR0uAocYOu .socials-item .link {
  color: #000000;
}
.cid-tNxBtoyARC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-tNxBtoyARC .mbr-text {
  color: #000000;
}
.cid-tVzhs0hCZD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #000000;
}
.cid-tVzhs0hCZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVzhs0hCZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVzhs0hCZD .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVzhs0hCZD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVzhs0hCZD .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-tVzhs0hCZD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVzhs0hCZD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQQv5E9tpJ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQQv5E9tpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQv5E9tpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQv5E9tpJ .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uQQv5E9tpJ .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uQQv5E9tpJ .mbr-section-title {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .mbr-text {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .list {
  color: #2C2625;
}
.cid-uR08qJpPoB .navbar-dropdown {
  position: relative !important;
}
.cid-uR08qJpPoB .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR08qJpPoB .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-uR08qJpPoB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR08qJpPoB .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover span {
  color: white;
}
.cid-uR08qJpPoB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR08qJpPoB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR08qJpPoB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR08qJpPoB .nav-link {
  position: relative;
}
.cid-uR08qJpPoB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .container {
    flex-wrap: nowrap;
  }
}
.cid-uR08qJpPoB .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR08qJpPoB .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-menu,
.cid-uR08qJpPoB .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .nav-item:focus,
.cid-uR08qJpPoB .nav-link:focus {
  outline: none;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR08qJpPoB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR08qJpPoB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB .navbar.opened {
  transition: all 0.3s;
}
.cid-uR08qJpPoB .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR08qJpPoB .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR08qJpPoB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR08qJpPoB .navbar.collapsed {
  justify-content: center;
}
.cid-uR08qJpPoB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR08qJpPoB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR08qJpPoB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR08qJpPoB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR08qJpPoB .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-uR08qJpPoB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR08qJpPoB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR08qJpPoB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR08qJpPoB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR08qJpPoB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR08qJpPoB .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR08qJpPoB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-item.active,
.cid-uR08qJpPoB .dropdown-item:active {
  background-color: transparent;
}
.cid-uR08qJpPoB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR08qJpPoB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR08qJpPoB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR08qJpPoB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR08qJpPoB .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR08qJpPoB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR08qJpPoB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR08qJpPoB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar {
    height: 70px;
  }
  .cid-uR08qJpPoB .navbar.opened {
    height: auto;
  }
  .cid-uR08qJpPoB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR08qJpPoB .navbar-nav {
  margin: 0 auto;
}
.cid-uR08qJpPoB .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR08qJpPoB .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR08qJpPoB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR08qJpPoB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR08qJpPoB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR08qJpPoB .content-wrap {
  min-height: 110px;
}
.cid-uR0sqNziFl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0sqNziFl h2,
.cid-uR0sqNziFl h4,
.cid-uR0sqNziFl p {
  margin: 0;
}
.cid-uR0sqNziFl .text {
  padding-right: 15%;
}
@media (max-width: 1200px) {
  .cid-uR0sqNziFl .text {
    padding-right: 0;
  }
}
@media (max-width: 800px) {
  .cid-uR0sqNziFl .image-wrap {
    margin-top: 30px;
  }
}
.cid-uR0sqNziFl img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 100%;
}
.cid-uR0sqNziFl .mbr-section-title {
  color: #000000;
  margin-bottom: 8px;
}
.cid-uR0sqNziFl .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 8px;
}
.cid-uR0sqNziFl .mbr-text {
  color: #6b6b6b;
  margin-bottom: 30px;
}
.cid-uR0sqNziFl .socials {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uR0sqNziFl .socials p {
  margin: 0 20px 0 0;
}
.cid-uR0sqNziFl .socials-item .link {
  color: #000000;
}
.cid-tNy1VTKbJ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-tNy1VTKbJ3 .mbr-text {
  color: #131313;
}
.cid-tVzhA3dAG2 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: #000000;
}
.cid-tVzhA3dAG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVzhA3dAG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVzhA3dAG2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-tVzhA3dAG2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tVzhA3dAG2 .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-tVzhA3dAG2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tVzhA3dAG2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uQQv5E9tpJ {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQQv5E9tpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQQv5E9tpJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQQv5E9tpJ .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper {
    padding: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uQQv5E9tpJ .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uQQv5E9tpJ .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uQQv5E9tpJ .mbr-section-title {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .mbr-text {
  color: #2C2625;
}
.cid-uQQv5E9tpJ .list {
  color: #2C2625;
}
.cid-uR08qJpPoB .navbar-dropdown {
  position: relative !important;
}
.cid-uR08qJpPoB .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR08qJpPoB .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-uR08qJpPoB .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR08qJpPoB .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .dropdown-item:hover span {
  color: white;
}
.cid-uR08qJpPoB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR08qJpPoB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR08qJpPoB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR08qJpPoB .nav-link {
  position: relative;
}
.cid-uR08qJpPoB .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .container {
    flex-wrap: nowrap;
  }
}
.cid-uR08qJpPoB .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR08qJpPoB .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-menu,
.cid-uR08qJpPoB .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR08qJpPoB .nav-item:focus,
.cid-uR08qJpPoB .nav-link:focus {
  outline: none;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR08qJpPoB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR08qJpPoB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR08qJpPoB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR08qJpPoB .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB .navbar.opened {
  transition: all 0.3s;
}
.cid-uR08qJpPoB .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR08qJpPoB .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR08qJpPoB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR08qJpPoB .navbar.collapsed {
  justify-content: center;
}
.cid-uR08qJpPoB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR08qJpPoB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR08qJpPoB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR08qJpPoB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR08qJpPoB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR08qJpPoB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR08qJpPoB .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-uR08qJpPoB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR08qJpPoB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR08qJpPoB .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR08qJpPoB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR08qJpPoB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR08qJpPoB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR08qJpPoB .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR08qJpPoB .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR08qJpPoB .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR08qJpPoB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR08qJpPoB .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .dropdown-item.active,
.cid-uR08qJpPoB .dropdown-item:active {
  background-color: transparent;
}
.cid-uR08qJpPoB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR08qJpPoB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR08qJpPoB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR08qJpPoB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR08qJpPoB ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR08qJpPoB ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR08qJpPoB .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR08qJpPoB .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR08qJpPoB .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR08qJpPoB button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR08qJpPoB button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR08qJpPoB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR08qJpPoB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR08qJpPoB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR08qJpPoB .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-uR08qJpPoB .navbar {
    height: 70px;
  }
  .cid-uR08qJpPoB .navbar.opened {
    height: auto;
  }
  .cid-uR08qJpPoB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR08qJpPoB .navbar-nav {
  margin: 0 auto;
}
.cid-uR08qJpPoB .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR08qJpPoB .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR08qJpPoB .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR08qJpPoB .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR08qJpPoB .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR08qJpPoB .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR08qJpPoB .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR08qJpPoB .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR08qJpPoB .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR08qJpPoB .content-wrap {
  min-height: 110px;
}
.cid-uR0xQDINYH .navbar-dropdown {
  position: relative !important;
}
.cid-uR0xQDINYH .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xQDINYH .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR0xQDINYH .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-uR0xQDINYH .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR0xQDINYH .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR0xQDINYH .dropdown-item:hover,
.cid-uR0xQDINYH .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR0xQDINYH .dropdown-item:hover span {
  color: white;
}
.cid-uR0xQDINYH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR0xQDINYH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR0xQDINYH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR0xQDINYH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR0xQDINYH .nav-link {
  position: relative;
}
.cid-uR0xQDINYH .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR0xQDINYH .container {
    flex-wrap: nowrap;
  }
}
.cid-uR0xQDINYH .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR0xQDINYH .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR0xQDINYH .dropdown-menu,
.cid-uR0xQDINYH .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR0xQDINYH .nav-item:focus,
.cid-uR0xQDINYH .nav-link:focus {
  outline: none;
}
.cid-uR0xQDINYH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR0xQDINYH .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR0xQDINYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR0xQDINYH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR0xQDINYH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR0xQDINYH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR0xQDINYH .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xQDINYH .navbar.opened {
  transition: all 0.3s;
}
.cid-uR0xQDINYH .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR0xQDINYH .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR0xQDINYH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR0xQDINYH .navbar.collapsed {
  justify-content: center;
}
.cid-uR0xQDINYH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR0xQDINYH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR0xQDINYH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR0xQDINYH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR0xQDINYH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR0xQDINYH .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-uR0xQDINYH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR0xQDINYH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR0xQDINYH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR0xQDINYH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR0xQDINYH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR0xQDINYH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR0xQDINYH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR0xQDINYH .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-uR0xQDINYH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR0xQDINYH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR0xQDINYH .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR0xQDINYH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR0xQDINYH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR0xQDINYH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR0xQDINYH .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR0xQDINYH .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR0xQDINYH .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR0xQDINYH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR0xQDINYH .navbar-brand .navbar-caption:hover,
.cid-uR0xQDINYH .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR0xQDINYH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR0xQDINYH .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR0xQDINYH .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR0xQDINYH .dropdown-item.active,
.cid-uR0xQDINYH .dropdown-item:active {
  background-color: transparent;
}
.cid-uR0xQDINYH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR0xQDINYH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR0xQDINYH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR0xQDINYH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xQDINYH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR0xQDINYH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR0xQDINYH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR0xQDINYH ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR0xQDINYH ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR0xQDINYH .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR0xQDINYH .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR0xQDINYH .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR0xQDINYH .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR0xQDINYH button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xQDINYH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR0xQDINYH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR0xQDINYH button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xQDINYH button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xQDINYH button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR0xQDINYH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xQDINYH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR0xQDINYH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR0xQDINYH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xQDINYH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR0xQDINYH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR0xQDINYH .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-uR0xQDINYH .navbar {
    height: 70px;
  }
  .cid-uR0xQDINYH .navbar.opened {
    height: auto;
  }
  .cid-uR0xQDINYH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR0xQDINYH .navbar-nav {
  margin: 0 auto;
}
.cid-uR0xQDINYH .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR0xQDINYH .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR0xQDINYH .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR0xQDINYH .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR0xQDINYH .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR0xQDINYH .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR0xQDINYH .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR0xQDINYH .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR0xQDINYH .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR0xQDINYH .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR0xQDINYH .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR0xQDINYH .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR0xQDINYH .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR0xQDINYH .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR0xQDINYH .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR0xQDINYH .content-wrap {
  min-height: 110px;
}
.cid-uR0xQEQhJf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR0xQEQhJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQEQhJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQEQhJf .card {
  justify-content: center;
}
.cid-uR0xQEQhJf .content-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-uR0xQEQhJf .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xQEQhJf .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR0xQEQhJf .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 30px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uR0xQEQhJf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uR0xQEQhJf .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 65px;
  height: 615px;
  margin-left: 100px;
}
@media (max-width: 1440px) {
  .cid-uR0xQEQhJf .image-wrapper {
    padding: 40px 20px;
    margin-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQEQhJf .image-wrapper {
    height: 400px;
    padding: 30px 15px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.cid-uR0xQEQhJf .image-wrapper .main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR0xQEQhJf .image-wrapper .image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 65px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xQEQhJf .image-wrapper .image-wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQEQhJf .image-wrapper .image-wrap {
    padding: 30px 15px;
  }
}
.cid-uR0xQEQhJf .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uR0xQEQhJf .mbr-label {
  color: #ffffff;
}
.cid-uR0xQEQhJf .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xQEQhJf .mbr-text {
  color: #ffffff;
}
.cid-uR0xQFQb5N {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uR0xQFQb5N .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uR0xQFQb5N .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uR0xQFQb5N .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #e2fa0e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uR0xQFQb5N .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uR0xQFQb5N .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-uR0xQFQb5N .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uR0xQFQb5N .svg-top {
    width: 1000px;
  }
}
.cid-uR0xQFQb5N .mbr-text {
  color: #000000;
}
.cid-uR0xQFQb5N .mbr-section-title {
  color: #000000;
}
.cid-uR0xQGJpWv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
  overflow: hidden;
}
.cid-uR0xQGJpWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQGJpWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xQGJpWv .container {
    padding: 0 30px;
  }
}
.cid-uR0xQGJpWv .card {
  justify-content: center;
}
.cid-uR0xQGJpWv .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uR0xQGJpWv .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQGJpWv .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xQGJpWv .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uR0xQGJpWv .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uR0xQGJpWv .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #000000;
  margin-bottom: 50px;
}
.cid-uR0xQGJpWv .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uR0xQGJpWv .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uR0xQGJpWv .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uR0xQGJpWv .mbr-text {
  color: #254b45;
}
.cid-uR0xQGJpWv .mbr-name {
  color: #254b45;
}
.cid-uR0xQGJpWv .mbr-role {
  color: #254b45;
}
.cid-uR0xQGJpWv .mbr-text,
.cid-uR0xQGJpWv .icon-wrapper {
  color: #000000;
}
.cid-uR0xQHDNCL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xQHDNCL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQHDNCL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xQHDNCL .container {
    padding: 0 16px;
  }
}
.cid-uR0xQHDNCL .card {
  justify-content: center;
}
.cid-uR0xQHDNCL .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #e2fa0e;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uR0xQHDNCL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xQHDNCL .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR0xQHDNCL .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uR0xQHDNCL .mbr-section-title {
  color: #000000;
}
.cid-uR0xQHDNCL .mbr-text {
  color: #000000;
}
.cid-uR0xQHDNCL .mbr-desc {
  color: #000000;
}
.cid-uR0xQIxWzr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-uR0xQIxWzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQIxWzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQIxWzr .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR0xQIxWzr .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xQIxWzr .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR0xQIxWzr .mbr-section-title {
  color: #131313;
}
.cid-uR0xQIxWzr .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR0xQIxWzr .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR0xQIxWzr .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR0xQIxWzr .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #fafafa;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR0xQIxWzr .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR0xQIxWzr .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR0xQIxWzr .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR0xQIxWzr .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR0xQIxWzr .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR0xQIxWzr .card-title {
  color: #131313;
}
.cid-uR0xQIxWzr .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR0xQIxWzr .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR0xQIxWzr .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xQIxWzr .card-link {
    margin-top: 15px;
  }
}
.cid-uR0xQIxWzr .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR0xQIxWzr .card-title,
.cid-uR0xQIxWzr .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR0xQK11L6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xQLJLKU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e2fa0e;
}
.cid-uR0xQLJLKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQLJLKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQLJLKU .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uR0xQLJLKU .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xQLJLKU .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xQLJLKU .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR0xQLJLKU .mbr-text,
.cid-uR0xQLJLKU .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uR0xQLJLKU .card-title,
.cid-uR0xQLJLKU .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR1I5VRo83 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR1I5VRo83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1I5VRo83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR1I5VRo83 .container {
    padding: 0 30px;
  }
}
.cid-uR1I5VRo83 .row {
  justify-content: center;
}
.cid-uR1I5VRo83 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uR1I5VRo83 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR1I5VRo83 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uR1I5VRo83 .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-uR1I5VRo83 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR1I5VRo83 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uR1I5VRo83 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uR0xQMXWnq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xQMXWnq blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #e2fa0e;
}
.cid-uR0xQMXWnq .mbr-section-title {
  color: #000000;
}
.cid-uR0xQMXWnq .mbr-text {
  color: #000000;
}
.cid-uR0xQOap67 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xQOap67 .mbr-text {
  color: #000000;
}
.cid-uR0xQOap67 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR0xQOap67 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR0xQOap67 .mbr-section-subtitle,
.cid-uR0xQOap67 .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR0xQOap67 .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR0xQOap67 .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR0xQOap67 .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uR0xQOap67 .panel-group {
  border: none;
}
.cid-uR0xQOap67 .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR0xQOap67 .card-header {
    padding: 0rem;
  }
}
.cid-uR0xQOap67 .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR0xQOap67 .collapsed span {
  transform: rotate(0deg);
}
.cid-uR0xQOap67 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR0xQOap67 p {
  margin-bottom: 0.3rem;
}
.cid-uR0xQOap67 .panel-title-edit {
  color: #000000;
}
.cid-uR0xQOap67 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR0xQOap67 .card {
  background: #e2fa0e;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR0xQOap67 .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR0xQOap67 .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR0xQOap67 .panel-text {
  color: #000000;
}
.cid-uR0xQOap67 .panel-title-edit,
.cid-uR0xQOap67 .mbr-iconfont {
  color: #000000;
}
.cid-uR0xQQ69wm {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e2fa0e;
}
.cid-uR0xQQ69wm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQQ69wm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQQ69wm .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xQQ69wm .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR0xQQ69wm .items-wrapper {
  margin: 0 -75px;
}
.cid-uR0xQQ69wm .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR0xQQ69wm .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR0xQQ69wm .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
  position: relative;
  padding: 0 14px 14px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap::before {
  content: '/';
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  color: inherit;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR0xQQ69wm .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR0xQQ69wm .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR0xQQ69wm .card-title {
  color: #0f0f0f;
}
.cid-uR0xQQ69wm .card-date {
  color: #666666;
}
.cid-uR0xQQ69wm .list,
.cid-uR0xQQ69wm .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR0xQR3eRM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xQR3eRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQR3eRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQR3eRM .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uR0xQR3eRM .card {
    margin-bottom: 2rem!important;
  }
  .cid-uR0xQR3eRM .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uR0xQR3eRM .link-wrap {
    align-items: center;
  }
}
.cid-uR0xQR3eRM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR0xQR3eRM .card-title,
.cid-uR0xQR3eRM .card-box {
  color: #000000;
}
.cid-uR0xQS2xFO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR0xQS2xFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQS2xFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQS2xFO .row {
  justify-content: center;
}
.cid-uR0xQS2xFO .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uR0xQS2xFO .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQS2xFO .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-uR0xQS2xFO .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xQS2xFO .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-uR0xQS2xFO .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR0xQS2xFO .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uR0xQS2xFO .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xQS2xFO .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uR0xQS2xFO .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xQS2xFO .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-uR0xQS2xFO .mbr-text,
.cid-uR0xQS2xFO .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uR0xQS2xFO .mbr-section-title,
.cid-uR0xQS2xFO .mbr-section-btn {
  text-align: center;
}
.cid-uR0xQT7zP2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xQT7zP2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQT7zP2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQT7zP2 .card-wrapper {
  background: #e2fa0e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR0xQT7zP2 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xQT7zP2 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xQT7zP2 .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR0xQT7zP2 .mbr-text,
.cid-uR0xQT7zP2 .mbr-section-btn {
  color: #000000;
}
.cid-uR0xQT7zP2 .card-title,
.cid-uR0xQT7zP2 .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR1MTtRMKQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR1MTtRMKQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1MTtRMKQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1MTtRMKQ .row {
  margin: 0 !important;
}
.cid-uR1MTtRMKQ .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uR1MTtRMKQ .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uR1MTtRMKQ .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uR1MTtRMKQ .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-uR1MTtRMKQ .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uR1MTtRMKQ .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uR1MTtRMKQ .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uR1MTtRMKQ .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uR1MTtRMKQ .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uR1MTtRMKQ .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uR1MTtRMKQ .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uR1MTtRMKQ .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #e2fa0e;
  margin-left: 0.5rem;
}
.cid-uR1MTtRMKQ .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #e2fa0e;
  font-weight: 900;
}
.cid-uR1MTtRMKQ .panel-group {
  border: none;
}
.cid-uR1MTtRMKQ .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-uR1MTtRMKQ .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uR1MTtRMKQ .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR1MTtRMKQ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uR1MTtRMKQ .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uR1MTtRMKQ .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uR1MTtRMKQ .panel-title-edit {
  color: #131313;
}
.cid-uR1MTtRMKQ .panel-body {
  padding: 0 0 20px;
}
.cid-uR1MTtRMKQ .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uR0xQTYas0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uR0xQTYas0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQTYas0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQTYas0 .card-wrapper {
  padding: 80px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xQTYas0 .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQTYas0 .card-wrapper {
    padding: 0;
  }
}
.cid-uR0xQTYas0 .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xQTYas0 .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQTYas0 .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uR0xQUWxwb {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xQUWxwb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xQUWxwb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xQUWxwb .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR0xQUWxwb .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR0xQUWxwb .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR0xQUWxwb .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR0xQUWxwb .mbr-section-title {
  color: #2C2625;
}
.cid-uR0xQUWxwb .mbr-text {
  color: #2C2625;
}
.cid-uR0xQUWxwb .list {
  color: #2C2625;
}
.cid-uR0xRU4jk7 .navbar-dropdown {
  position: relative !important;
}
.cid-uR0xRU4jk7 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xRU4jk7 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR0xRU4jk7 .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-uR0xRU4jk7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR0xRU4jk7 .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR0xRU4jk7 .dropdown-item:hover,
.cid-uR0xRU4jk7 .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR0xRU4jk7 .dropdown-item:hover span {
  color: white;
}
.cid-uR0xRU4jk7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR0xRU4jk7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR0xRU4jk7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR0xRU4jk7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR0xRU4jk7 .nav-link {
  position: relative;
}
.cid-uR0xRU4jk7 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR0xRU4jk7 .container {
    flex-wrap: nowrap;
  }
}
.cid-uR0xRU4jk7 .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR0xRU4jk7 .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR0xRU4jk7 .dropdown-menu,
.cid-uR0xRU4jk7 .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR0xRU4jk7 .nav-item:focus,
.cid-uR0xRU4jk7 .nav-link:focus {
  outline: none;
}
.cid-uR0xRU4jk7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR0xRU4jk7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR0xRU4jk7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR0xRU4jk7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR0xRU4jk7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR0xRU4jk7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR0xRU4jk7 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xRU4jk7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uR0xRU4jk7 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR0xRU4jk7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR0xRU4jk7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR0xRU4jk7 .navbar.collapsed {
  justify-content: center;
}
.cid-uR0xRU4jk7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR0xRU4jk7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR0xRU4jk7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR0xRU4jk7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR0xRU4jk7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR0xRU4jk7 .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-uR0xRU4jk7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR0xRU4jk7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR0xRU4jk7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR0xRU4jk7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR0xRU4jk7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR0xRU4jk7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR0xRU4jk7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR0xRU4jk7 .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-uR0xRU4jk7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR0xRU4jk7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR0xRU4jk7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR0xRU4jk7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR0xRU4jk7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR0xRU4jk7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR0xRU4jk7 .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR0xRU4jk7 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR0xRU4jk7 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR0xRU4jk7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR0xRU4jk7 .navbar-brand .navbar-caption:hover,
.cid-uR0xRU4jk7 .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR0xRU4jk7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR0xRU4jk7 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR0xRU4jk7 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR0xRU4jk7 .dropdown-item.active,
.cid-uR0xRU4jk7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uR0xRU4jk7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR0xRU4jk7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR0xRU4jk7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR0xRU4jk7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xRU4jk7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR0xRU4jk7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR0xRU4jk7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR0xRU4jk7 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR0xRU4jk7 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR0xRU4jk7 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR0xRU4jk7 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR0xRU4jk7 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR0xRU4jk7 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR0xRU4jk7 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xRU4jk7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR0xRU4jk7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR0xRU4jk7 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xRU4jk7 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xRU4jk7 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR0xRU4jk7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xRU4jk7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR0xRU4jk7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR0xRU4jk7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xRU4jk7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR0xRU4jk7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR0xRU4jk7 .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-uR0xRU4jk7 .navbar {
    height: 70px;
  }
  .cid-uR0xRU4jk7 .navbar.opened {
    height: auto;
  }
  .cid-uR0xRU4jk7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR0xRU4jk7 .navbar-nav {
  margin: 0 auto;
}
.cid-uR0xRU4jk7 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR0xRU4jk7 .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR0xRU4jk7 .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR0xRU4jk7 .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR0xRU4jk7 .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR0xRU4jk7 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR0xRU4jk7 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR0xRU4jk7 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR0xRU4jk7 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR0xRU4jk7 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR0xRU4jk7 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR0xRU4jk7 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR0xRU4jk7 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR0xRU4jk7 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR0xRU4jk7 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR0xRU4jk7 .content-wrap {
  min-height: 110px;
}
.cid-uR0xRV3Txd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR0xRV3Txd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xRV3Txd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xRV3Txd .card {
  justify-content: center;
}
.cid-uR0xRV3Txd .content-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-uR0xRV3Txd .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xRV3Txd .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR0xRV3Txd .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 30px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uR0xRV3Txd .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uR0xRV3Txd .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 65px;
  height: 615px;
  margin-left: 100px;
}
@media (max-width: 1440px) {
  .cid-uR0xRV3Txd .image-wrapper {
    padding: 40px 20px;
    margin-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xRV3Txd .image-wrapper {
    height: 400px;
    padding: 30px 15px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.cid-uR0xRV3Txd .image-wrapper .main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR0xRV3Txd .image-wrapper .image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 65px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xRV3Txd .image-wrapper .image-wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xRV3Txd .image-wrapper .image-wrap {
    padding: 30px 15px;
  }
}
.cid-uR0xRV3Txd .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uR0xRV3Txd .mbr-label {
  color: #ffffff;
}
.cid-uR0xRV3Txd .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xRV3Txd .mbr-text {
  color: #ffffff;
}
.cid-uR0xRVTU7T {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #f8f8f8;
}
.cid-uR0xRVTU7T .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uR0xRVTU7T .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uR0xRVTU7T .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #e2fa0e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uR0xRVTU7T .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uR0xRVTU7T .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-uR0xRVTU7T .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uR0xRVTU7T .svg-top {
    width: 1000px;
  }
}
.cid-uR0xRVTU7T .mbr-text {
  color: #000000;
}
.cid-uR0xRVTU7T .mbr-section-title {
  color: #000000;
}
.cid-uR0xRWKb36 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
  overflow: hidden;
}
.cid-uR0xRWKb36 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xRWKb36 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xRWKb36 .container {
    padding: 0 30px;
  }
}
.cid-uR0xRWKb36 .card {
  justify-content: center;
}
.cid-uR0xRWKb36 .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uR0xRWKb36 .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xRWKb36 .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xRWKb36 .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uR0xRWKb36 .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uR0xRWKb36 .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #000000;
  margin-bottom: 50px;
}
.cid-uR0xRWKb36 .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uR0xRWKb36 .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uR0xRWKb36 .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uR0xRWKb36 .mbr-text {
  color: #254b45;
}
.cid-uR0xRWKb36 .mbr-name {
  color: #254b45;
}
.cid-uR0xRWKb36 .mbr-role {
  color: #254b45;
}
.cid-uR0xRWKb36 .mbr-text,
.cid-uR0xRWKb36 .icon-wrapper {
  color: #000000;
}
.cid-uR0xRXELl1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xRXELl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xRXELl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xRXELl1 .container {
    padding: 0 16px;
  }
}
.cid-uR0xRXELl1 .card {
  justify-content: center;
}
.cid-uR0xRXELl1 .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #e2fa0e;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uR0xRXELl1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xRXELl1 .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR0xRXELl1 .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uR0xRXELl1 .mbr-section-title {
  color: #000000;
}
.cid-uR0xRXELl1 .mbr-text {
  color: #000000;
}
.cid-uR0xRXELl1 .mbr-desc {
  color: #000000;
}
.cid-uR0xRYCfFI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-uR0xRYCfFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xRYCfFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xRYCfFI .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR0xRYCfFI .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xRYCfFI .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR0xRYCfFI .mbr-section-title {
  color: #131313;
}
.cid-uR0xRYCfFI .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR0xRYCfFI .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR0xRYCfFI .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR0xRYCfFI .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #fafafa;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR0xRYCfFI .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR0xRYCfFI .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR0xRYCfFI .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR0xRYCfFI .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR0xRYCfFI .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR0xRYCfFI .card-title {
  color: #131313;
}
.cid-uR0xRYCfFI .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR0xRYCfFI .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR0xRYCfFI .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xRYCfFI .card-link {
    margin-top: 15px;
  }
}
.cid-uR0xRYCfFI .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR0xRYCfFI .card-title,
.cid-uR0xRYCfFI .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR0xRZGmHM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xS0KuZH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e2fa0e;
}
.cid-uR0xS0KuZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS0KuZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS0KuZH .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uR0xS0KuZH .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xS0KuZH .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xS0KuZH .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR0xS0KuZH .mbr-text,
.cid-uR0xS0KuZH .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uR0xS0KuZH .card-title,
.cid-uR0xS0KuZH .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR0xS1y1mC {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xS1y1mC blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #e2fa0e;
}
.cid-uR0xS1y1mC .mbr-section-title {
  color: #000000;
}
.cid-uR0xS1y1mC .mbr-text {
  color: #000000;
}
.cid-uR0xS2pB8M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xS2pB8M .mbr-text {
  color: #000000;
}
.cid-uR0xS2pB8M .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR0xS2pB8M .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR0xS2pB8M .mbr-section-subtitle,
.cid-uR0xS2pB8M .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR0xS2pB8M .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR0xS2pB8M .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR0xS2pB8M .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uR0xS2pB8M .panel-group {
  border: none;
}
.cid-uR0xS2pB8M .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR0xS2pB8M .card-header {
    padding: 0rem;
  }
}
.cid-uR0xS2pB8M .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR0xS2pB8M .collapsed span {
  transform: rotate(0deg);
}
.cid-uR0xS2pB8M .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR0xS2pB8M p {
  margin-bottom: 0.3rem;
}
.cid-uR0xS2pB8M .panel-title-edit {
  color: #000000;
}
.cid-uR0xS2pB8M .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR0xS2pB8M .card {
  background: #e2fa0e;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR0xS2pB8M .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR0xS2pB8M .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR0xS2pB8M .panel-text {
  color: #000000;
}
.cid-uR0xS2pB8M .panel-title-edit,
.cid-uR0xS2pB8M .mbr-iconfont {
  color: #000000;
}
.cid-uR0xS3ERa9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e2fa0e;
}
.cid-uR0xS3ERa9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS3ERa9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS3ERa9 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xS3ERa9 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR0xS3ERa9 .items-wrapper {
  margin: 0 -75px;
}
.cid-uR0xS3ERa9 .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR0xS3ERa9 .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR0xS3ERa9 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
  position: relative;
  padding: 0 14px 14px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap::before {
  content: '/';
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  color: inherit;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR0xS3ERa9 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR0xS3ERa9 .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR0xS3ERa9 .card-title {
  color: #0f0f0f;
}
.cid-uR0xS3ERa9 .card-date {
  color: #666666;
}
.cid-uR0xS3ERa9 .list,
.cid-uR0xS3ERa9 .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR0xS4GBiw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xS4GBiw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS4GBiw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS4GBiw .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uR0xS4GBiw .card {
    margin-bottom: 2rem!important;
  }
  .cid-uR0xS4GBiw .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uR0xS4GBiw .link-wrap {
    align-items: center;
  }
}
.cid-uR0xS4GBiw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR0xS4GBiw .card-title,
.cid-uR0xS4GBiw .card-box {
  color: #000000;
}
.cid-uR0xS5A2se {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR0xS5A2se .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS5A2se .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS5A2se .row {
  justify-content: center;
}
.cid-uR0xS5A2se .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uR0xS5A2se .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS5A2se .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-uR0xS5A2se .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xS5A2se .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-uR0xS5A2se .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR0xS5A2se .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uR0xS5A2se .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xS5A2se .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uR0xS5A2se .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xS5A2se .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-uR0xS5A2se .mbr-text,
.cid-uR0xS5A2se .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uR0xS5A2se .mbr-section-title,
.cid-uR0xS5A2se .mbr-section-btn {
  text-align: center;
}
.cid-uR0xS6z5KL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xS6z5KL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS6z5KL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS6z5KL .card-wrapper {
  background: #e2fa0e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR0xS6z5KL .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xS6z5KL .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xS6z5KL .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR0xS6z5KL .mbr-text,
.cid-uR0xS6z5KL .mbr-section-btn {
  color: #000000;
}
.cid-uR0xS6z5KL .card-title,
.cid-uR0xS6z5KL .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR1Oc9RZR0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR1Oc9RZR0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1Oc9RZR0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1Oc9RZR0 .row {
  margin: 0 !important;
}
.cid-uR1Oc9RZR0 .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uR1Oc9RZR0 .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uR1Oc9RZR0 .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uR1Oc9RZR0 .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-uR1Oc9RZR0 .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uR1Oc9RZR0 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uR1Oc9RZR0 .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uR1Oc9RZR0 .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uR1Oc9RZR0 .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uR1Oc9RZR0 .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uR1Oc9RZR0 .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uR1Oc9RZR0 .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #e2fa0e;
  margin-left: 0.5rem;
}
.cid-uR1Oc9RZR0 .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #e2fa0e;
  font-weight: 900;
}
.cid-uR1Oc9RZR0 .panel-group {
  border: none;
}
.cid-uR1Oc9RZR0 .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-uR1Oc9RZR0 .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uR1Oc9RZR0 .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR1Oc9RZR0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uR1Oc9RZR0 .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uR1Oc9RZR0 .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uR1Oc9RZR0 .panel-title-edit {
  color: #131313;
}
.cid-uR1Oc9RZR0 .panel-body {
  padding: 0 0 20px;
}
.cid-uR1Oc9RZR0 .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uR0xS7yx5C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uR0xS7yx5C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS7yx5C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS7yx5C .card-wrapper {
  padding: 80px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xS7yx5C .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS7yx5C .card-wrapper {
    padding: 0;
  }
}
.cid-uR0xS7yx5C .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xS7yx5C .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS7yx5C .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uR0xS8yzJv {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xS8yzJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xS8yzJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xS8yzJv .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR0xS8yzJv .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR0xS8yzJv .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR0xS8yzJv .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR0xS8yzJv .mbr-section-title {
  color: #2C2625;
}
.cid-uR0xS8yzJv .mbr-text {
  color: #2C2625;
}
.cid-uR0xS8yzJv .list {
  color: #2C2625;
}
.cid-uR0xT5qhUG .navbar-dropdown {
  position: relative !important;
}
.cid-uR0xT5qhUG .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xT5qhUG .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR0xT5qhUG .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-uR0xT5qhUG .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR0xT5qhUG .dropdown-item {
  border: 1px solid #63635d !important;
  background: #e2fa0e !important;
}
.cid-uR0xT5qhUG .dropdown-item:hover,
.cid-uR0xT5qhUG .dropdown-item:focus {
  background: #e2fa0e !important;
}
.cid-uR0xT5qhUG .dropdown-item:hover span {
  color: white;
}
.cid-uR0xT5qhUG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR0xT5qhUG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR0xT5qhUG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR0xT5qhUG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR0xT5qhUG .nav-link {
  position: relative;
}
.cid-uR0xT5qhUG .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR0xT5qhUG .container {
    flex-wrap: nowrap;
  }
}
.cid-uR0xT5qhUG .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR0xT5qhUG .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR0xT5qhUG .dropdown-menu,
.cid-uR0xT5qhUG .navbar.opened {
  background: #e2fa0e !important;
}
.cid-uR0xT5qhUG .nav-item:focus,
.cid-uR0xT5qhUG .nav-link:focus {
  outline: none;
}
.cid-uR0xT5qhUG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR0xT5qhUG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR0xT5qhUG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR0xT5qhUG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR0xT5qhUG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR0xT5qhUG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR0xT5qhUG .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #e2fa0e;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xT5qhUG .navbar.opened {
  transition: all 0.3s;
}
.cid-uR0xT5qhUG .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR0xT5qhUG .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR0xT5qhUG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR0xT5qhUG .navbar.collapsed {
  justify-content: center;
}
.cid-uR0xT5qhUG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR0xT5qhUG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR0xT5qhUG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR0xT5qhUG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR0xT5qhUG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR0xT5qhUG .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-uR0xT5qhUG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR0xT5qhUG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR0xT5qhUG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR0xT5qhUG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR0xT5qhUG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR0xT5qhUG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR0xT5qhUG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR0xT5qhUG .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-uR0xT5qhUG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR0xT5qhUG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR0xT5qhUG .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR0xT5qhUG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR0xT5qhUG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR0xT5qhUG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR0xT5qhUG .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR0xT5qhUG .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR0xT5qhUG .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uR0xT5qhUG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR0xT5qhUG .navbar-brand .navbar-caption:hover,
.cid-uR0xT5qhUG .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uR0xT5qhUG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR0xT5qhUG .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR0xT5qhUG .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR0xT5qhUG .dropdown-item.active,
.cid-uR0xT5qhUG .dropdown-item:active {
  background-color: transparent;
}
.cid-uR0xT5qhUG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR0xT5qhUG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR0xT5qhUG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR0xT5qhUG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #e2fa0e;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xT5qhUG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR0xT5qhUG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR0xT5qhUG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR0xT5qhUG ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR0xT5qhUG ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR0xT5qhUG .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR0xT5qhUG .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR0xT5qhUG .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uR0xT5qhUG .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR0xT5qhUG button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #e2fa0e !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR0xT5qhUG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR0xT5qhUG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR0xT5qhUG button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xT5qhUG button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR0xT5qhUG button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR0xT5qhUG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xT5qhUG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR0xT5qhUG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR0xT5qhUG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR0xT5qhUG .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR0xT5qhUG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR0xT5qhUG .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-uR0xT5qhUG .navbar {
    height: 70px;
  }
  .cid-uR0xT5qhUG .navbar.opened {
    height: auto;
  }
  .cid-uR0xT5qhUG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR0xT5qhUG .navbar-nav {
  margin: 0 auto;
}
.cid-uR0xT5qhUG .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR0xT5qhUG .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uR0xT5qhUG .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR0xT5qhUG .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uR0xT5qhUG .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR0xT5qhUG .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR0xT5qhUG .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR0xT5qhUG .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR0xT5qhUG .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR0xT5qhUG .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR0xT5qhUG .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR0xT5qhUG .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR0xT5qhUG .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR0xT5qhUG .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR0xT5qhUG .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR0xT5qhUG .content-wrap {
  min-height: 110px;
}
.cid-uR0xT6lInY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR0xT6lInY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xT6lInY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xT6lInY .card {
  justify-content: center;
}
.cid-uR0xT6lInY .content-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-uR0xT6lInY .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xT6lInY .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR0xT6lInY .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 30px;
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uR0xT6lInY .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 15px;
  }
}
.cid-uR0xT6lInY .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  padding: 65px;
  height: 615px;
  margin-left: 100px;
}
@media (max-width: 1440px) {
  .cid-uR0xT6lInY .image-wrapper {
    padding: 40px 20px;
    margin-left: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xT6lInY .image-wrapper {
    height: 400px;
    padding: 30px 15px;
    margin-left: 0;
    margin-top: 30px;
  }
}
.cid-uR0xT6lInY .image-wrapper .main-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR0xT6lInY .image-wrapper .image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 65px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xT6lInY .image-wrapper .image-wrap {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xT6lInY .image-wrapper .image-wrap {
    padding: 30px 15px;
  }
}
.cid-uR0xT6lInY .image-wrapper .image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uR0xT6lInY .mbr-label {
  color: #ffffff;
}
.cid-uR0xT6lInY .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xT6lInY .mbr-text {
  color: #ffffff;
}
.cid-uR0xT7kzix {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-uR0xT7kzix .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uR0xT7kzix .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.cid-uR0xT7kzix .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #e2fa0e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uR0xT7kzix .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uR0xT7kzix .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #e43f3f;
}
.cid-uR0xT7kzix .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uR0xT7kzix .svg-top {
    width: 1000px;
  }
}
.cid-uR0xT7kzix .mbr-text {
  color: #000000;
}
.cid-uR0xT7kzix .mbr-section-title {
  color: #000000;
}
.cid-uR0xT8bECN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
  overflow: hidden;
}
.cid-uR0xT8bECN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xT8bECN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xT8bECN .container {
    padding: 0 30px;
  }
}
.cid-uR0xT8bECN .card {
  justify-content: center;
}
.cid-uR0xT8bECN .content-wrapper {
  padding: 0 240px;
}
@media (max-width: 1440px) {
  .cid-uR0xT8bECN .content-wrapper {
    padding: 0 120px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xT8bECN .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xT8bECN .content-wrapper .icon-wrapper {
  margin-bottom: 24px;
}
.cid-uR0xT8bECN .content-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 54px;
  color: #dddddd;
}
.cid-uR0xT8bECN .content-wrapper .mbr-text {
  position: relative;
  padding-bottom: 60px;
  border-bottom: 1px solid #000000;
  margin-bottom: 50px;
}
.cid-uR0xT8bECN .content-wrapper .mbr-text::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 20px;
  height: 6px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-uR0xT8bECN .content-wrapper .mbr-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap {
    display: block;
  }
}
.cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap img {
    margin: 0 0 20px 0;
  }
}
.cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-name {
  margin-bottom: 2px;
}
.cid-uR0xT8bECN .content-wrapper .person-wrapper .person-wrap .name-wrapper .mbr-role {
  margin-bottom: 0;
  font-weight: 300;
}
.cid-uR0xT8bECN .mbr-text {
  color: #254b45;
}
.cid-uR0xT8bECN .mbr-name {
  color: #254b45;
}
.cid-uR0xT8bECN .mbr-role {
  color: #254b45;
}
.cid-uR0xT8bECN .mbr-text,
.cid-uR0xT8bECN .icon-wrapper {
  color: #000000;
}
.cid-uR0xT92oZS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xT92oZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xT92oZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uR0xT92oZS .container {
    padding: 0 16px;
  }
}
.cid-uR0xT92oZS .card {
  justify-content: center;
}
.cid-uR0xT92oZS .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #e2fa0e;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uR0xT92oZS .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xT92oZS .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR0xT92oZS .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uR0xT92oZS .mbr-section-title {
  color: #000000;
}
.cid-uR0xT92oZS .mbr-text {
  color: #000000;
}
.cid-uR0xT92oZS .mbr-desc {
  color: #000000;
}
.cid-uR0xT9VWIS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e2fa0e;
}
.cid-uR0xT9VWIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xT9VWIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xT9VWIS .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR0xT9VWIS .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xT9VWIS .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR0xT9VWIS .mbr-section-title {
  color: #131313;
}
.cid-uR0xT9VWIS .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR0xT9VWIS .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR0xT9VWIS .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR0xT9VWIS .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  background: #fafafa;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR0xT9VWIS .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR0xT9VWIS .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR0xT9VWIS .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR0xT9VWIS .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR0xT9VWIS .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR0xT9VWIS .card-title {
  color: #131313;
}
.cid-uR0xT9VWIS .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR0xT9VWIS .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR0xT9VWIS .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR0xT9VWIS .card-link {
    margin-top: 15px;
  }
}
.cid-uR0xT9VWIS .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR0xT9VWIS .card-title,
.cid-uR0xT9VWIS .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR0xTaXyzS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xTbObAz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #e2fa0e;
}
.cid-uR0xTbObAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTbObAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTbObAz .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uR0xTbObAz .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xTbObAz .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xTbObAz .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR0xTbObAz .mbr-text,
.cid-uR0xTbObAz .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uR0xTbObAz .card-title,
.cid-uR0xTbObAz .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR0xTcIuW4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xTcIuW4 blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #e2fa0e;
}
.cid-uR0xTcIuW4 .mbr-section-title {
  color: #000000;
}
.cid-uR0xTcIuW4 .mbr-text {
  color: #000000;
}
.cid-uR0xTdzXWr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xTdzXWr .mbr-text {
  color: #000000;
}
.cid-uR0xTdzXWr .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR0xTdzXWr .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR0xTdzXWr .mbr-section-subtitle,
.cid-uR0xTdzXWr .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR0xTdzXWr .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR0xTdzXWr .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR0xTdzXWr .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uR0xTdzXWr .panel-group {
  border: none;
}
.cid-uR0xTdzXWr .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR0xTdzXWr .card-header {
    padding: 0rem;
  }
}
.cid-uR0xTdzXWr .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR0xTdzXWr .collapsed span {
  transform: rotate(0deg);
}
.cid-uR0xTdzXWr .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR0xTdzXWr p {
  margin-bottom: 0.3rem;
}
.cid-uR0xTdzXWr .panel-title-edit {
  color: #000000;
}
.cid-uR0xTdzXWr .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR0xTdzXWr .card {
  background: #e2fa0e;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR0xTdzXWr .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR0xTdzXWr .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR0xTdzXWr .panel-text {
  color: #000000;
}
.cid-uR0xTdzXWr .panel-title-edit,
.cid-uR0xTdzXWr .mbr-iconfont {
  color: #000000;
}
.cid-uR0xTeCDXO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e2fa0e;
}
.cid-uR0xTeCDXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTeCDXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTeCDXO .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xTeCDXO .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR0xTeCDXO .items-wrapper {
  margin: 0 -75px;
}
.cid-uR0xTeCDXO .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR0xTeCDXO .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR0xTeCDXO .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
  position: relative;
  padding: 0 14px 14px 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap::before {
  content: '/';
  position: absolute;
  top: 0;
  right: 0;
  font-size: inherit;
  color: inherit;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR0xTeCDXO .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR0xTeCDXO .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR0xTeCDXO .card-title {
  color: #0f0f0f;
}
.cid-uR0xTeCDXO .card-date {
  color: #666666;
}
.cid-uR0xTeCDXO .list,
.cid-uR0xTeCDXO .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR0xTfDVJq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR0xTfDVJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTfDVJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTfDVJq .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uR0xTfDVJq .card {
    margin-bottom: 2rem!important;
  }
  .cid-uR0xTfDVJq .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uR0xTfDVJq .link-wrap {
    align-items: center;
  }
}
.cid-uR0xTfDVJq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR0xTfDVJq .card-title,
.cid-uR0xTfDVJq .card-box {
  color: #000000;
}
.cid-uR0xTgwaRV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR0xTgwaRV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTgwaRV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTgwaRV .row {
  justify-content: center;
}
.cid-uR0xTgwaRV .content-wrapper .title-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uR0xTgwaRV .content-wrapper .title-wrapper {
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTgwaRV .content-wrapper .title-wrapper {
    padding-bottom: 60px;
  }
}
.cid-uR0xTgwaRV .content-wrapper .title-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  width: 100%;
  background-color: #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xTgwaRV .content-wrapper .title-wrapper::before {
    height: 24px;
  }
}
.cid-uR0xTgwaRV .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uR0xTgwaRV .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uR0xTgwaRV .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR0xTgwaRV .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uR0xTgwaRV .mbr-section-title {
  color: #ffffff;
}
.cid-uR0xTgwaRV .mbr-section-subtitle {
  color: #cbff5b;
  text-align: center;
}
.cid-uR0xTgwaRV .mbr-text,
.cid-uR0xTgwaRV .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uR0xTgwaRV .mbr-section-title,
.cid-uR0xTgwaRV .mbr-section-btn {
  text-align: center;
}
.cid-uR0xThryQV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR0xThryQV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xThryQV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xThryQV .card-wrapper {
  background: #e2fa0e;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR0xThryQV .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR0xThryQV .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR0xThryQV .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR0xThryQV .mbr-text,
.cid-uR0xThryQV .mbr-section-btn {
  color: #000000;
}
.cid-uR0xThryQV .card-title,
.cid-uR0xThryQV .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR1P5Bmd4f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR1P5Bmd4f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1P5Bmd4f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1P5Bmd4f .row {
  margin: 0 !important;
}
.cid-uR1P5Bmd4f .mbr-section-head {
  width: 40%;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uR1P5Bmd4f .mbr-section-head {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uR1P5Bmd4f .mbr-section-head {
    margin-bottom: 40px;
  }
}
.cid-uR1P5Bmd4f .mbr-section-title {
  color: #131313;
  margin-bottom: 0;
}
.cid-uR1P5Bmd4f .mbr-section-subtitle {
  color: #131313;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uR1P5Bmd4f .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uR1P5Bmd4f .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .cid-uR1P5Bmd4f .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-uR1P5Bmd4f .col-list {
  width: 1px;
  flex-grow: 1;
  padding: 0 0 0 100px !important;
}
@media (max-width: 1024px) {
  .cid-uR1P5Bmd4f .col-list {
    padding: 0 0 0 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-uR1P5Bmd4f .col-list {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uR1P5Bmd4f .mbr-iconfont {
  position: relative;
  font-size: 16px !important;
  font-family: 'Moririse2' !important;
  font-weight: 900;
  color: #e2fa0e;
  margin-left: 0.5rem;
}
.cid-uR1P5Bmd4f .sign-open {
  display: none;
  font-size: 16px !important;
  margin-left: 0.5rem;
  color: #e2fa0e;
  font-weight: 900;
}
.cid-uR1P5Bmd4f .panel-group {
  border: none;
}
.cid-uR1P5Bmd4f .card {
  padding: 10px 10px 10px 0;
  border-radius: 0;
  border-top: 2px solid #131313;
}
.cid-uR1P5Bmd4f .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uR1P5Bmd4f .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR1P5Bmd4f .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: #131313;
  transition: .2s all;
}
.cid-uR1P5Bmd4f .panel-title[aria-expanded="true"] .mbr-iconfont {
  display: none;
}
.cid-uR1P5Bmd4f .panel-title[aria-expanded="true"] .sign-open {
  display: block;
}
.cid-uR1P5Bmd4f .panel-title-edit {
  color: #131313;
}
.cid-uR1P5Bmd4f .panel-body {
  padding: 0 0 20px;
}
.cid-uR1P5Bmd4f .panel-text {
  color: #131313;
  margin: 0;
}
.cid-uR0xTioYDz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #131313;
}
.cid-uR0xTioYDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTioYDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTioYDz .card-wrapper {
  padding: 80px;
  background-color: #e2fa0e;
}
@media (max-width: 1440px) {
  .cid-uR0xTioYDz .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTioYDz .card-wrapper {
    padding: 0;
  }
}
.cid-uR0xTioYDz .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #e2fa0e;
}
@media (max-width: 992px) {
  .cid-uR0xTioYDz .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTioYDz .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uR0xTjkcJs {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0xTjkcJs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0xTjkcJs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0xTjkcJs .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR0xTjkcJs .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper {
    padding: 0;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper {
  background-color: #e2fa0e;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap {
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all .3s ease;
}
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR0xTjkcJs .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR0xTjkcJs .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR0xTjkcJs .mbr-section-title {
  color: #2C2625;
}
.cid-uR0xTjkcJs .mbr-text {
  color: #2C2625;
}
.cid-uR0xTjkcJs .list {
  color: #2C2625;
}
