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: #42fc6c !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: #42fc6c !important;
  border-color: #42fc6c !important;
  color: #013e0f !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: #04e436 !important;
  border-color: #04e436 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #013e0f !important;
  background-color: #04e436 !important;
  border-color: #04e436 !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: #42fc6c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #04e436 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #013e0f !important;
  background-color: #42fc6c !important;
  border-color: #42fc6c !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: #42fc6c !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: #03d533 !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: #42fc6c;
}
.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: #42fc6c;
  border-color: #42fc6c;
  color: #015715;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #42fc6c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #42fc6c !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: #42fc6c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #42fc6c;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #42fc6c;
}
.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: #42fc6c;
  border-bottom-color: #42fc6c;
}
.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: #000000 !important;
  background-color: #42fc6c !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='%2342fc6c' %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 #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #000000 !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: #000000 !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: #000000;
  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: #c4c6db !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: #000000;
  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: #000000 !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 #fff0b0;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #c4c6db;
  color: #ffffff !important;
  border: 1px solid #c4c6db;
}
.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-uR5qFWVhAt {
  display: flex;
  background-image: url("../../../assets/images/1692206765671.jpeg-1280x720.jpg");
}
.cid-uR5qFWVhAt .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uR5qFWVhAt {
    align-items: flex-start;
  }
  .cid-uR5qFWVhAt .row {
    justify-content: flex-end;
  }
  .cid-uR5qFWVhAt .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uR5qFWVhAt .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uR5qFWVhAt {
    -webkit-align-items: center;
    align-items: flex-start;
  }
  .cid-uR5qFWVhAt .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uR5qFWVhAt .content-wrap {
    width: 100%;
  }
}
.cid-uR5qFWVhAt .mbr-section-title,
.cid-uR5qFWVhAt .mbr-section-subtitle {
  text-align: center;
}
.cid-uR5qFWVhAt .mbr-text,
.cid-uR5qFWVhAt .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uR5qFWVhAt .mbr-section-title {
  color: #ffffff;
}
.cid-uR1XlJxdVp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR1XlJxdVp .card {
  background: #000000;
  border-radius: 10px;
}
.cid-uR1XlJxdVp img {
  width: 100%;
  border-radius: 10px;
}
.cid-uR1XlJxdVp .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uR1XlJxdVp .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uR1XlJxdVp .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-uR1XlJxdVp img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-uR1XlJxdVp .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-uR1XlJxdVp img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uR1XlJxdVp img {
    width: 100%;
  }
}
.cid-uR1XlJxdVp .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uR1XlJxdVp .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uR1XlJxdVp .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-uR1XlJxdVp .mbr-text,
.cid-uR1XlJxdVp .mbr-section-btn {
  color: #464646;
}
.cid-uR1XlJxdVp .mbr-section-subtitle {
  color: #777777;
}
.cid-uR1XlJxdVp .mbr-section-title {
  color: #ffffff;
}
.cid-uR1XlJxdVp .mbr-list {
  color: #ffffff;
}
.cid-uR1XFMnNKP {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR1XFMnNKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1XFMnNKP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1XFMnNKP .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uR1XFMnNKP .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uR1XFMnNKP .container {
    padding: 0 24px;
  }
}
.cid-uR1XFMnNKP .row {
  justify-content: center;
}
.cid-uR1XFMnNKP .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR1XFMnNKP .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uR1XFMnNKP .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-uR1XFMnNKP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR1XFMnNKP .mbr-section-title {
  color: #141414;
}
.cid-uR1XFMnNKP .mbr-text {
  color: #ffffff;
}
.cid-uR1XFMnNKP .mbr-text DIV {
  text-align: left;
}
.cid-uR5rbHatKu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uR5rbHatKu .content-head {
  max-width: 800px;
}
.cid-uR5rbHatKu .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5rbHatKu .mbr-text,
.cid-uR5rbHatKu .mbr-section-btn {
  text-align: left;
}
.cid-uR2b2dIrlV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uR2b2dIrlV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR2b2dIrlV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR2b2dIrlV .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uR2b2dIrlV .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR2b2dIrlV .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR2b2dIrlV .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR2b2dIrlV .mbr-text,
.cid-uR2b2dIrlV .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR2b2dIrlV .card-title,
.cid-uR2b2dIrlV .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-tNxy6UgDdQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.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 #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  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-uR5ujH7h46 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5ujH7h46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5ujH7h46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5ujH7h46 .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #bed3f9 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uR5ujH7h46 .card-wrapper {
    padding: 16px;
  }
}
.cid-uR5ujH7h46 .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uR5ujH7h46 .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uR5ujH7h46 .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR5ujH7h46 .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uR5ujH7h46 .mbr-section-title {
  color: #121212;
  text-align: left;
}
.cid-uR5ujH7h46 .list {
  color: #ffffff;
  text-align: center;
}
.cid-uR5ujH7h46 .list,
.cid-uR5ujH7h46 .item-wrap,
.cid-uR5ujH7h46 .tabs-wrapper {
  color: #000000;
  text-align: left;
}
.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: #ffffff;
  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-uR5rCIpZQ2 {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uR5rCIpZQ2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5rCIpZQ2 .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-uR5rCIpZQ2 .container {
    padding: 0 22px;
  }
}
.cid-uR5rCIpZQ2 .card {
  justify-content: center;
}
.cid-uR5rCIpZQ2 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uR5rCIpZQ2 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uR5rCIpZQ2 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uR5rCIpZQ2 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5rCIpZQ2 .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uR5rCIpZQ2 .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #fff0e6;
}
@media (max-width: 1440px) {
  .cid-uR5rCIpZQ2 .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uR5rCIpZQ2 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uR5rCIpZQ2 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uR5rCIpZQ2 .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uR5rCIpZQ2 .mbr-section-title {
  color: #ffffff;
}
.cid-uR5rCIpZQ2 .mbr-text {
  color: #ffffff;
}
.cid-uQZifdjJYT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.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-uR2bIFugx2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR2bIFugx2 .mbr-text {
  color: #ffffff;
}
.cid-uR2bIFugx2 .mbr-section-subtitle {
  color: #000000;
}
.cid-uR2bIFugx2 .mbr-section-title {
  color: #ffffff;
}
.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: #fafafa;
  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-uR5sgbSE3I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5sgbSE3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5sgbSE3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5sgbSE3I .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uR5sgbSE3I .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR5sgbSE3I .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5sgbSE3I .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uR5sgbSE3I .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #42fc6c;
}
.cid-uR5sgbSE3I .mbr-section-title {
  color: #ffffff;
}
.cid-uR5tS6E68V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-uR5tS6E68V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5tS6E68V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5tS6E68V .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uR5tS6E68V .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uR5tS6E68V .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-uR5tS6E68V .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uR5tS6E68V .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uR5tS6E68V .content-head {
  max-width: 800px;
}
.cid-uQQv5E9tpJ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  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: #000000;
  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-uQQv5E9tpJ .list,
.cid-uQQv5E9tpJ .item-wrap {
  color: #ffffff;
}
.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 #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #000000 !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: #000000 !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: #000000;
  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: #fc7942 !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: #000000;
  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: #000000 !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 #fff0b0;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #fc7942;
  color: #ffffff !important;
  border: 1px solid #fc7942;
}
.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-uR5v7ydmq9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5v7ydmq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5v7ydmq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5v7ydmq9 .row {
  margin: 0 -8px;
}
.cid-uR5v7ydmq9 .row .card {
  padding: 0 8px;
}
.cid-uR5v7ydmq9 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uR5v7ydmq9 .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uR5v7ydmq9 .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uR5v7ydmq9 .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR5v7ydmq9 .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uR5v7ydmq9 .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR5v7ydmq9 .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5v7ydmq9 .image-wrapper {
  height: 100%;
}
.cid-uR5v7ydmq9 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5v7ydmq9 .image-wrapper img {
    height: 300px;
  }
}
.cid-uR5v7ydmq9 .mbr-section-title {
  color: #2c2c26;
}
.cid-uR5v7ydmq9 .mbr-text,
.cid-uR5v7ydmq9 .text-wrapper {
  color: #63635d;
}
.cid-uR5v7ydmq9 .mbr-section-title,
.cid-uR5v7ydmq9 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tNxBtoyARC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.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: 2rem;
  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: #000000;
  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-uQQv5E9tpJ .list,
.cid-uQQv5E9tpJ .item-wrap {
  color: #ffffff;
}
.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 #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR08qJpPoB .dropdown-item:hover,
.cid-uR08qJpPoB .dropdown-item:focus {
  background: #000000 !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: #000000 !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: #000000;
  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: #fc7942 !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: #000000;
  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: #000000 !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 #fff0b0;
}
.cid-uR08qJpPoB .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR08qJpPoB .nav-item .nav-link:hover {
  background-color: #fc7942;
  color: #ffffff !important;
  border: 1px solid #fc7942;
}
.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-uR5vkC24Yr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5vkC24Yr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5vkC24Yr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5vkC24Yr .row {
  margin: 0 -8px;
}
.cid-uR5vkC24Yr .row .card {
  padding: 0 8px;
}
.cid-uR5vkC24Yr .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .cid-uR5vkC24Yr .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uR5vkC24Yr .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uR5vkC24Yr .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR5vkC24Yr .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uR5vkC24Yr .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uR5vkC24Yr .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5vkC24Yr .image-wrapper {
  height: 100%;
}
.cid-uR5vkC24Yr .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5vkC24Yr .image-wrapper img {
    height: 300px;
  }
}
.cid-uR5vkC24Yr .mbr-section-title {
  color: #2c2c26;
}
.cid-uR5vkC24Yr .mbr-text,
.cid-uR5vkC24Yr .text-wrapper {
  color: #63635d;
}
.cid-uR5vkC24Yr .mbr-section-title,
.cid-uR5vkC24Yr .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-tNy1VTKbJ3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tNy1VTKbJ3 .mbr-text {
  color: #000000;
}
.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: 2rem;
  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: #000000;
  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-uQQv5E9tpJ .list,
.cid-uQQv5E9tpJ .item-wrap {
  color: #ffffff;
}
.cid-uR5EtbtU3v .navbar-dropdown {
  position: relative !important;
}
.cid-uR5EtbtU3v .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR5EtbtU3v .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR5EtbtU3v .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-uR5EtbtU3v .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR5EtbtU3v .dropdown-item {
  border: 1px solid #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR5EtbtU3v .dropdown-item:hover,
.cid-uR5EtbtU3v .dropdown-item:focus {
  background: #000000 !important;
}
.cid-uR5EtbtU3v .dropdown-item:hover span {
  color: white;
}
.cid-uR5EtbtU3v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR5EtbtU3v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR5EtbtU3v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR5EtbtU3v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR5EtbtU3v .nav-link {
  position: relative;
}
.cid-uR5EtbtU3v .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR5EtbtU3v .container {
    flex-wrap: nowrap;
  }
}
.cid-uR5EtbtU3v .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR5EtbtU3v .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR5EtbtU3v .dropdown-menu,
.cid-uR5EtbtU3v .navbar.opened {
  background: #000000 !important;
}
.cid-uR5EtbtU3v .nav-item:focus,
.cid-uR5EtbtU3v .nav-link:focus {
  outline: none;
}
.cid-uR5EtbtU3v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR5EtbtU3v .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR5EtbtU3v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR5EtbtU3v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR5EtbtU3v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR5EtbtU3v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR5EtbtU3v .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: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5EtbtU3v .navbar.opened {
  transition: all 0.3s;
}
.cid-uR5EtbtU3v .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR5EtbtU3v .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR5EtbtU3v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR5EtbtU3v .navbar.collapsed {
  justify-content: center;
}
.cid-uR5EtbtU3v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR5EtbtU3v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR5EtbtU3v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR5EtbtU3v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR5EtbtU3v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR5EtbtU3v .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-uR5EtbtU3v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR5EtbtU3v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR5EtbtU3v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR5EtbtU3v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR5EtbtU3v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR5EtbtU3v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR5EtbtU3v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR5EtbtU3v .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-uR5EtbtU3v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR5EtbtU3v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR5EtbtU3v .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR5EtbtU3v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR5EtbtU3v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR5EtbtU3v .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR5EtbtU3v .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR5EtbtU3v .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR5EtbtU3v .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-uR5EtbtU3v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR5EtbtU3v .navbar-brand .navbar-caption:hover,
.cid-uR5EtbtU3v .navbar-brand .navbar-caption:focus {
  color: #c4c6db !important;
}
.cid-uR5EtbtU3v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR5EtbtU3v .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR5EtbtU3v .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR5EtbtU3v .dropdown-item.active,
.cid-uR5EtbtU3v .dropdown-item:active {
  background-color: transparent;
}
.cid-uR5EtbtU3v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR5EtbtU3v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR5EtbtU3v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR5EtbtU3v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR5EtbtU3v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR5EtbtU3v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR5EtbtU3v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR5EtbtU3v ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR5EtbtU3v ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR5EtbtU3v .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR5EtbtU3v .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR5EtbtU3v .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-uR5EtbtU3v .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR5EtbtU3v 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: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5EtbtU3v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR5EtbtU3v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR5EtbtU3v button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5EtbtU3v button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5EtbtU3v button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR5EtbtU3v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5EtbtU3v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR5EtbtU3v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR5EtbtU3v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5EtbtU3v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR5EtbtU3v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR5EtbtU3v .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-uR5EtbtU3v .navbar {
    height: 70px;
  }
  .cid-uR5EtbtU3v .navbar.opened {
    height: auto;
  }
  .cid-uR5EtbtU3v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5EtbtU3v .navbar-nav {
  margin: 0 auto;
}
.cid-uR5EtbtU3v .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR5EtbtU3v .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 #fff0b0;
}
.cid-uR5EtbtU3v .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR5EtbtU3v .nav-item .nav-link:hover {
  background-color: #c4c6db;
  color: #ffffff !important;
  border: 1px solid #c4c6db;
}
.cid-uR5EtbtU3v .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR5EtbtU3v .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR5EtbtU3v .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR5EtbtU3v .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR5EtbtU3v .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR5EtbtU3v .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR5EtbtU3v .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR5EtbtU3v .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR5EtbtU3v .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR5EtbtU3v .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR5EtbtU3v .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR5EtbtU3v .content-wrap {
  min-height: 110px;
}
.cid-uR5EtbXyci {
  display: flex;
  background-image: url("../../../assets/images/process-1.jpg-565x377.jpg");
}
.cid-uR5EtbXyci .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uR5EtbXyci {
    align-items: flex-start;
  }
  .cid-uR5EtbXyci .row {
    justify-content: flex-end;
  }
  .cid-uR5EtbXyci .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uR5EtbXyci .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uR5EtbXyci {
    -webkit-align-items: center;
    align-items: flex-start;
  }
  .cid-uR5EtbXyci .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uR5EtbXyci .content-wrap {
    width: 100%;
  }
}
.cid-uR5EtbXyci .mbr-section-title,
.cid-uR5EtbXyci .mbr-section-subtitle {
  text-align: center;
}
.cid-uR5EtbXyci .mbr-text,
.cid-uR5EtbXyci .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uR5EtbXyci .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EtcwWO1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EtcwWO1 .card {
  background: #000000;
  border-radius: 10px;
}
.cid-uR5EtcwWO1 img {
  width: 100%;
  border-radius: 10px;
}
.cid-uR5EtcwWO1 .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uR5EtcwWO1 .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EtcwWO1 .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-uR5EtcwWO1 img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-uR5EtcwWO1 .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-uR5EtcwWO1 img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uR5EtcwWO1 img {
    width: 100%;
  }
}
.cid-uR5EtcwWO1 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uR5EtcwWO1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uR5EtcwWO1 .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-uR5EtcwWO1 .mbr-text,
.cid-uR5EtcwWO1 .mbr-section-btn {
  color: #464646;
}
.cid-uR5EtcwWO1 .mbr-section-subtitle {
  color: #777777;
}
.cid-uR5EtcwWO1 .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EtcwWO1 .mbr-list {
  color: #ffffff;
}
.cid-uR5EtcR5SR {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR5EtcR5SR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtcR5SR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EtcR5SR .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uR5EtcR5SR .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EtcR5SR .container {
    padding: 0 24px;
  }
}
.cid-uR5EtcR5SR .row {
  justify-content: center;
}
.cid-uR5EtcR5SR .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR5EtcR5SR .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uR5EtcR5SR .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-uR5EtcR5SR .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EtcR5SR .mbr-section-title {
  color: #141414;
}
.cid-uR5EtcR5SR .mbr-text {
  color: #ffffff;
}
.cid-uR5EtcR5SR .mbr-text DIV {
  text-align: left;
}
.cid-uR5EtddMdB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uR5EtddMdB .content-head {
  max-width: 800px;
}
.cid-uR5EtddMdB .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5EtddMdB .mbr-text,
.cid-uR5EtddMdB .mbr-section-btn {
  text-align: left;
}
.cid-uR5EtdzIZo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uR5EtdzIZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtdzIZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EtdzIZo .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uR5EtdzIZo .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5EtdzIZo .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EtdzIZo .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR5EtdzIZo .mbr-text,
.cid-uR5EtdzIZo .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR5EtdzIZo .card-title,
.cid-uR5EtdzIZo .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uR5EtdWZe6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EtdWZe6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtdWZe6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EtdWZe6 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR5EtdWZe6 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR5EtdWZe6 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR5EtdWZe6 .mbr-section-title {
  color: #131313;
}
.cid-uR5EtdWZe6 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR5EtdWZe6 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR5EtdWZe6 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR5EtdWZe6 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR5EtdWZe6 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR5EtdWZe6 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR5EtdWZe6 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR5EtdWZe6 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR5EtdWZe6 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR5EtdWZe6 .card-title {
  color: #131313;
}
.cid-uR5EtdWZe6 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR5EtdWZe6 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR5EtdWZe6 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR5EtdWZe6 .card-link {
    margin-top: 15px;
  }
}
.cid-uR5EtdWZe6 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR5EtdWZe6 .card-title,
.cid-uR5EtdWZe6 .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR5EteDmWj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EteDmWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EteDmWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EteDmWj .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #bed3f9 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uR5EteDmWj .card-wrapper {
    padding: 16px;
  }
}
.cid-uR5EteDmWj .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uR5EteDmWj .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uR5EteDmWj .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR5EteDmWj .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uR5EteDmWj .mbr-section-title {
  color: #121212;
  text-align: left;
}
.cid-uR5EteDmWj .list {
  color: #ffffff;
  text-align: center;
}
.cid-uR5EteDmWj .list,
.cid-uR5EteDmWj .item-wrap,
.cid-uR5EteDmWj .tabs-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uR5Etf6g2z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR5Etf6g2z .mbr-text {
  color: #000000;
}
.cid-uR5Etf6g2z .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR5Etf6g2z .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5Etf6g2z .mbr-section-subtitle,
.cid-uR5Etf6g2z .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR5Etf6g2z .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR5Etf6g2z .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR5Etf6g2z .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-uR5Etf6g2z .panel-group {
  border: none;
}
.cid-uR5Etf6g2z .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR5Etf6g2z .card-header {
    padding: 0rem;
  }
}
.cid-uR5Etf6g2z .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR5Etf6g2z .collapsed span {
  transform: rotate(0deg);
}
.cid-uR5Etf6g2z .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR5Etf6g2z p {
  margin-bottom: 0.3rem;
}
.cid-uR5Etf6g2z .panel-title-edit {
  color: #000000;
}
.cid-uR5Etf6g2z .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR5Etf6g2z .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR5Etf6g2z .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR5Etf6g2z .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR5Etf6g2z .panel-text {
  color: #000000;
}
.cid-uR5Etf6g2z .panel-title-edit,
.cid-uR5Etf6g2z .mbr-iconfont {
  color: #000000;
}
.cid-uR5EtfJmf8 {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uR5EtfJmf8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtfJmf8 .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-uR5EtfJmf8 .container {
    padding: 0 22px;
  }
}
.cid-uR5EtfJmf8 .card {
  justify-content: center;
}
.cid-uR5EtfJmf8 .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uR5EtfJmf8 .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uR5EtfJmf8 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uR5EtfJmf8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EtfJmf8 .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uR5EtfJmf8 .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #fff0e6;
}
@media (max-width: 1440px) {
  .cid-uR5EtfJmf8 .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uR5EtfJmf8 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EtfJmf8 .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uR5EtfJmf8 .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uR5EtfJmf8 .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EtfJmf8 .mbr-text {
  color: #ffffff;
}
.cid-uR5Etg7Fb8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR5Etg7Fb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Etg7Fb8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Etg7Fb8 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR5Etg7Fb8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR5Etg7Fb8 .items-wrapper {
  margin: 0 -75px;
}
.cid-uR5Etg7Fb8 .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR5Etg7Fb8 .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR5Etg7Fb8 .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR5Etg7Fb8 .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-uR5Etg7Fb8 .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-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR5Etg7Fb8 .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-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR5Etg7Fb8 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5Etg7Fb8 .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR5Etg7Fb8 .card-title {
  color: #0f0f0f;
}
.cid-uR5Etg7Fb8 .card-date {
  color: #666666;
}
.cid-uR5Etg7Fb8 .list,
.cid-uR5Etg7Fb8 .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR5EtgD7Zy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EtgD7Zy .mbr-text {
  color: #ffffff;
}
.cid-uR5EtgD7Zy .mbr-section-subtitle {
  color: #000000;
}
.cid-uR5EtgD7Zy .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EtgZRbH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EtgZRbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtgZRbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EtgZRbH .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR5EtgZRbH .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5EtgZRbH .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EtgZRbH .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR5EtgZRbH .mbr-text,
.cid-uR5EtgZRbH .mbr-section-btn {
  color: #000000;
}
.cid-uR5EtgZRbH .card-title,
.cid-uR5EtgZRbH .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR5PldFjuC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR5PldFjuC .video-wrapper iframe {
  width: 100%;
}
.cid-uR5PldFjuC .mbr-section-title,
.cid-uR5PldFjuC .mbr-section-subtitle,
.cid-uR5PldFjuC .mbr-text {
  text-align: center;
}
.cid-uR5Ethprt5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5Ethprt5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Ethprt5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Ethprt5 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uR5Ethprt5 .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR5Ethprt5 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5Ethprt5 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uR5Ethprt5 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #42fc6c;
}
.cid-uR5Ethprt5 .mbr-section-title {
  color: #ffffff;
}
.cid-uR60wDprVz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR60wDprVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR60wDprVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR60wDprVz .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uR60wDprVz .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR60wDprVz .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uR60wDprVz .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR60wDprVz .container {
    padding: 0 16px;
  }
}
.cid-uR60wDprVz .row {
  justify-content: center;
}
.cid-uR60wDprVz .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uR60wDprVz .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR60wDprVz .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uR60wDprVz .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uR60wDprVz .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uR60wDprVz .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uR60wDprVz .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uR60wDprVz .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR60wDprVz .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR60wDprVz .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uR60wDprVz .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uR60wDprVz .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uR60wDprVz .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uR60wDprVz .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uR60wDprVz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR60wDprVz .panel-title {
  color: #000000;
}
.cid-uR60wDprVz .panel-text {
  color: #000000;
}
.cid-uR5EthUM7P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-uR5EthUM7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EthUM7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EthUM7P .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uR5EthUM7P .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uR5EthUM7P .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-uR5EthUM7P .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uR5EthUM7P .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uR5EthUM7P .content-head {
  max-width: 800px;
}
.cid-uR5EtioLAx {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uR5EtioLAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EtioLAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EtioLAx .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR5EtioLAx .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EtioLAx .content-wrapper {
    padding: 0;
  }
}
.cid-uR5EtioLAx .content-wrapper .card-wrapper {
  background-color: #000000;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR5EtioLAx .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EtioLAx .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR5EtioLAx .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR5EtioLAx .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR5EtioLAx .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-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR5EtioLAx .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-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR5EtioLAx .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-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR5EtioLAx .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR5EtioLAx .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR5EtioLAx .mbr-section-title {
  color: #2C2625;
}
.cid-uR5EtioLAx .mbr-text {
  color: #2C2625;
}
.cid-uR5EtioLAx .list {
  color: #2C2625;
}
.cid-uR5EtioLAx .list,
.cid-uR5EtioLAx .item-wrap {
  color: #ffffff;
}
.cid-uR5Eud9LBx .navbar-dropdown {
  position: relative !important;
}
.cid-uR5Eud9LBx .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR5Eud9LBx .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR5Eud9LBx .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-uR5Eud9LBx .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR5Eud9LBx .dropdown-item {
  border: 1px solid #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR5Eud9LBx .dropdown-item:hover,
.cid-uR5Eud9LBx .dropdown-item:focus {
  background: #000000 !important;
}
.cid-uR5Eud9LBx .dropdown-item:hover span {
  color: white;
}
.cid-uR5Eud9LBx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR5Eud9LBx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR5Eud9LBx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR5Eud9LBx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR5Eud9LBx .nav-link {
  position: relative;
}
.cid-uR5Eud9LBx .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR5Eud9LBx .container {
    flex-wrap: nowrap;
  }
}
.cid-uR5Eud9LBx .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR5Eud9LBx .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR5Eud9LBx .dropdown-menu,
.cid-uR5Eud9LBx .navbar.opened {
  background: #000000 !important;
}
.cid-uR5Eud9LBx .nav-item:focus,
.cid-uR5Eud9LBx .nav-link:focus {
  outline: none;
}
.cid-uR5Eud9LBx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR5Eud9LBx .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR5Eud9LBx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR5Eud9LBx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR5Eud9LBx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR5Eud9LBx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR5Eud9LBx .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: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5Eud9LBx .navbar.opened {
  transition: all 0.3s;
}
.cid-uR5Eud9LBx .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR5Eud9LBx .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR5Eud9LBx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR5Eud9LBx .navbar.collapsed {
  justify-content: center;
}
.cid-uR5Eud9LBx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR5Eud9LBx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR5Eud9LBx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR5Eud9LBx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR5Eud9LBx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR5Eud9LBx .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-uR5Eud9LBx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR5Eud9LBx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR5Eud9LBx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR5Eud9LBx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR5Eud9LBx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR5Eud9LBx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR5Eud9LBx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR5Eud9LBx .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-uR5Eud9LBx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR5Eud9LBx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR5Eud9LBx .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR5Eud9LBx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR5Eud9LBx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR5Eud9LBx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR5Eud9LBx .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR5Eud9LBx .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR5Eud9LBx .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-uR5Eud9LBx .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR5Eud9LBx .navbar-brand .navbar-caption:hover,
.cid-uR5Eud9LBx .navbar-brand .navbar-caption:focus {
  color: #c4c6db !important;
}
.cid-uR5Eud9LBx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR5Eud9LBx .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR5Eud9LBx .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR5Eud9LBx .dropdown-item.active,
.cid-uR5Eud9LBx .dropdown-item:active {
  background-color: transparent;
}
.cid-uR5Eud9LBx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR5Eud9LBx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR5Eud9LBx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR5Eud9LBx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR5Eud9LBx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR5Eud9LBx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR5Eud9LBx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR5Eud9LBx ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR5Eud9LBx ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR5Eud9LBx .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR5Eud9LBx .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR5Eud9LBx .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-uR5Eud9LBx .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR5Eud9LBx 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: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5Eud9LBx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR5Eud9LBx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR5Eud9LBx button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5Eud9LBx button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5Eud9LBx button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR5Eud9LBx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5Eud9LBx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR5Eud9LBx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR5Eud9LBx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5Eud9LBx .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR5Eud9LBx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR5Eud9LBx .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-uR5Eud9LBx .navbar {
    height: 70px;
  }
  .cid-uR5Eud9LBx .navbar.opened {
    height: auto;
  }
  .cid-uR5Eud9LBx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5Eud9LBx .navbar-nav {
  margin: 0 auto;
}
.cid-uR5Eud9LBx .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR5Eud9LBx .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 #fff0b0;
}
.cid-uR5Eud9LBx .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR5Eud9LBx .nav-item .nav-link:hover {
  background-color: #c4c6db;
  color: #ffffff !important;
  border: 1px solid #c4c6db;
}
.cid-uR5Eud9LBx .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR5Eud9LBx .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR5Eud9LBx .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR5Eud9LBx .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR5Eud9LBx .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR5Eud9LBx .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR5Eud9LBx .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR5Eud9LBx .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR5Eud9LBx .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR5Eud9LBx .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR5Eud9LBx .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR5Eud9LBx .content-wrap {
  min-height: 110px;
}
.cid-uR5EudBtLZ {
  display: flex;
  background-image: url("../../../assets/images/1520112595717.jpeg-800x403.jpg");
}
.cid-uR5EudBtLZ .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uR5EudBtLZ {
    align-items: flex-start;
  }
  .cid-uR5EudBtLZ .row {
    justify-content: flex-end;
  }
  .cid-uR5EudBtLZ .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uR5EudBtLZ .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uR5EudBtLZ {
    -webkit-align-items: center;
    align-items: flex-start;
  }
  .cid-uR5EudBtLZ .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uR5EudBtLZ .content-wrap {
    width: 100%;
  }
}
.cid-uR5EudBtLZ .mbr-section-title,
.cid-uR5EudBtLZ .mbr-section-subtitle {
  text-align: center;
}
.cid-uR5EudBtLZ .mbr-text,
.cid-uR5EudBtLZ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uR5EudBtLZ .mbr-section-title {
  color: #ffffff;
}
.cid-uR5Eue1lA0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5Eue1lA0 .card {
  background: #000000;
  border-radius: 10px;
}
.cid-uR5Eue1lA0 img {
  width: 100%;
  border-radius: 10px;
}
.cid-uR5Eue1lA0 .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uR5Eue1lA0 .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5Eue1lA0 .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-uR5Eue1lA0 img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-uR5Eue1lA0 .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-uR5Eue1lA0 img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uR5Eue1lA0 img {
    width: 100%;
  }
}
.cid-uR5Eue1lA0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uR5Eue1lA0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uR5Eue1lA0 .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-uR5Eue1lA0 .mbr-text,
.cid-uR5Eue1lA0 .mbr-section-btn {
  color: #464646;
}
.cid-uR5Eue1lA0 .mbr-section-subtitle {
  color: #777777;
}
.cid-uR5Eue1lA0 .mbr-section-title {
  color: #ffffff;
}
.cid-uR5Eue1lA0 .mbr-list {
  color: #ffffff;
}
.cid-uR5EuejFYw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR5EuejFYw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuejFYw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuejFYw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uR5EuejFYw .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuejFYw .container {
    padding: 0 24px;
  }
}
.cid-uR5EuejFYw .row {
  justify-content: center;
}
.cid-uR5EuejFYw .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR5EuejFYw .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uR5EuejFYw .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-uR5EuejFYw .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EuejFYw .mbr-section-title {
  color: #141414;
}
.cid-uR5EuejFYw .mbr-text {
  color: #ffffff;
}
.cid-uR5EuejFYw .mbr-text DIV {
  text-align: left;
}
.cid-uR5EueGOGR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uR5EueGOGR .content-head {
  max-width: 800px;
}
.cid-uR5EueGOGR .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5EueGOGR .mbr-text,
.cid-uR5EueGOGR .mbr-section-btn {
  text-align: left;
}
.cid-uR5Euf5kNE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uR5Euf5kNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Euf5kNE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Euf5kNE .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uR5Euf5kNE .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5Euf5kNE .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5Euf5kNE .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR5Euf5kNE .mbr-text,
.cid-uR5Euf5kNE .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR5Euf5kNE .card-title,
.cid-uR5Euf5kNE .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uR5Eufr4Up {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5Eufr4Up .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Eufr4Up .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Eufr4Up .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR5Eufr4Up .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR5Eufr4Up .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR5Eufr4Up .mbr-section-title {
  color: #131313;
}
.cid-uR5Eufr4Up .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR5Eufr4Up .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR5Eufr4Up .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR5Eufr4Up .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR5Eufr4Up .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR5Eufr4Up .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR5Eufr4Up .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR5Eufr4Up .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR5Eufr4Up .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR5Eufr4Up .card-title {
  color: #131313;
}
.cid-uR5Eufr4Up .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR5Eufr4Up .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR5Eufr4Up .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR5Eufr4Up .card-link {
    margin-top: 15px;
  }
}
.cid-uR5Eufr4Up .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR5Eufr4Up .card-title,
.cid-uR5Eufr4Up .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR5Eug4y1V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5Eug4y1V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Eug4y1V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Eug4y1V .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #bed3f9 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uR5Eug4y1V .card-wrapper {
    padding: 16px;
  }
}
.cid-uR5Eug4y1V .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uR5Eug4y1V .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uR5Eug4y1V .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR5Eug4y1V .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uR5Eug4y1V .mbr-section-title {
  color: #121212;
  text-align: left;
}
.cid-uR5Eug4y1V .list {
  color: #ffffff;
  text-align: center;
}
.cid-uR5Eug4y1V .list,
.cid-uR5Eug4y1V .item-wrap,
.cid-uR5Eug4y1V .tabs-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uR5EugxZJf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR5EugxZJf .mbr-text {
  color: #000000;
}
.cid-uR5EugxZJf .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR5EugxZJf .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5EugxZJf .mbr-section-subtitle,
.cid-uR5EugxZJf .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR5EugxZJf .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR5EugxZJf .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR5EugxZJf .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-uR5EugxZJf .panel-group {
  border: none;
}
.cid-uR5EugxZJf .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR5EugxZJf .card-header {
    padding: 0rem;
  }
}
.cid-uR5EugxZJf .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR5EugxZJf .collapsed span {
  transform: rotate(0deg);
}
.cid-uR5EugxZJf .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR5EugxZJf p {
  margin-bottom: 0.3rem;
}
.cid-uR5EugxZJf .panel-title-edit {
  color: #000000;
}
.cid-uR5EugxZJf .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR5EugxZJf .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR5EugxZJf .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR5EugxZJf .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR5EugxZJf .panel-text {
  color: #000000;
}
.cid-uR5EugxZJf .panel-title-edit,
.cid-uR5EugxZJf .mbr-iconfont {
  color: #000000;
}
.cid-uR5EuhcfHq {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uR5EuhcfHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuhcfHq .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-uR5EuhcfHq .container {
    padding: 0 22px;
  }
}
.cid-uR5EuhcfHq .card {
  justify-content: center;
}
.cid-uR5EuhcfHq .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uR5EuhcfHq .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uR5EuhcfHq .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uR5EuhcfHq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EuhcfHq .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uR5EuhcfHq .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #fff0e6;
}
@media (max-width: 1440px) {
  .cid-uR5EuhcfHq .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uR5EuhcfHq .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuhcfHq .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uR5EuhcfHq .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uR5EuhcfHq .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuhcfHq .mbr-text {
  color: #ffffff;
}
.cid-uR5EuhA8Sr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR5EuhA8Sr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuhA8Sr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuhA8Sr .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR5EuhA8Sr .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR5EuhA8Sr .items-wrapper {
  margin: 0 -75px;
}
.cid-uR5EuhA8Sr .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR5EuhA8Sr .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR5EuhA8Sr .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR5EuhA8Sr .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-uR5EuhA8Sr .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-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR5EuhA8Sr .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-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR5EuhA8Sr .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5EuhA8Sr .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR5EuhA8Sr .card-title {
  color: #0f0f0f;
}
.cid-uR5EuhA8Sr .card-date {
  color: #666666;
}
.cid-uR5EuhA8Sr .list,
.cid-uR5EuhA8Sr .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR5Eui44Bp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5Eui44Bp .mbr-text {
  color: #ffffff;
}
.cid-uR5Eui44Bp .mbr-section-subtitle {
  color: #000000;
}
.cid-uR5Eui44Bp .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuiruFK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EuiruFK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuiruFK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuiruFK .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR5EuiruFK .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5EuiruFK .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuiruFK .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR5EuiruFK .mbr-text,
.cid-uR5EuiruFK .mbr-section-btn {
  color: #000000;
}
.cid-uR5EuiruFK .card-title,
.cid-uR5EuiruFK .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR5EuiQoMi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EuiQoMi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuiQoMi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuiQoMi .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uR5EuiQoMi .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR5EuiQoMi .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuiQoMi .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uR5EuiQoMi .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #42fc6c;
}
.cid-uR5EuiQoMi .mbr-section-title {
  color: #ffffff;
}
.cid-uR60Bv2G7Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR60Bv2G7Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR60Bv2G7Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR60Bv2G7Q .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uR60Bv2G7Q .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR60Bv2G7Q .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uR60Bv2G7Q .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR60Bv2G7Q .container {
    padding: 0 16px;
  }
}
.cid-uR60Bv2G7Q .row {
  justify-content: center;
}
.cid-uR60Bv2G7Q .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uR60Bv2G7Q .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR60Bv2G7Q .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uR60Bv2G7Q .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uR60Bv2G7Q .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uR60Bv2G7Q .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uR60Bv2G7Q .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uR60Bv2G7Q .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR60Bv2G7Q .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR60Bv2G7Q .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uR60Bv2G7Q .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uR60Bv2G7Q .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uR60Bv2G7Q .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uR60Bv2G7Q .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uR60Bv2G7Q .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR60Bv2G7Q .panel-title {
  color: #000000;
}
.cid-uR60Bv2G7Q .panel-text {
  color: #000000;
}
.cid-uR5Eujrh6x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-uR5Eujrh6x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5Eujrh6x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5Eujrh6x .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uR5Eujrh6x .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uR5Eujrh6x .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-uR5Eujrh6x .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uR5Eujrh6x .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uR5Eujrh6x .content-head {
  max-width: 800px;
}
.cid-uR5EujTBai {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uR5EujTBai .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EujTBai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EujTBai .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR5EujTBai .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EujTBai .content-wrapper {
    padding: 0;
  }
}
.cid-uR5EujTBai .content-wrapper .card-wrapper {
  background-color: #000000;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR5EujTBai .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EujTBai .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR5EujTBai .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR5EujTBai .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR5EujTBai .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-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR5EujTBai .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-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR5EujTBai .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-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR5EujTBai .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR5EujTBai .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR5EujTBai .mbr-section-title {
  color: #2C2625;
}
.cid-uR5EujTBai .mbr-text {
  color: #2C2625;
}
.cid-uR5EujTBai .list {
  color: #2C2625;
}
.cid-uR5EujTBai .list,
.cid-uR5EujTBai .item-wrap {
  color: #ffffff;
}
.cid-uR5EuGOJiq .navbar-dropdown {
  position: relative !important;
}
.cid-uR5EuGOJiq .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uR5EuGOJiq .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uR5EuGOJiq .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-uR5EuGOJiq .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uR5EuGOJiq .dropdown-item {
  border: 1px solid #fff0b0 !important;
  background: #000000 !important;
}
.cid-uR5EuGOJiq .dropdown-item:hover,
.cid-uR5EuGOJiq .dropdown-item:focus {
  background: #000000 !important;
}
.cid-uR5EuGOJiq .dropdown-item:hover span {
  color: white;
}
.cid-uR5EuGOJiq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR5EuGOJiq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR5EuGOJiq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR5EuGOJiq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR5EuGOJiq .nav-link {
  position: relative;
}
.cid-uR5EuGOJiq .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uR5EuGOJiq .container {
    flex-wrap: nowrap;
  }
}
.cid-uR5EuGOJiq .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uR5EuGOJiq .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uR5EuGOJiq .dropdown-menu,
.cid-uR5EuGOJiq .navbar.opened {
  background: #000000 !important;
}
.cid-uR5EuGOJiq .nav-item:focus,
.cid-uR5EuGOJiq .nav-link:focus {
  outline: none;
}
.cid-uR5EuGOJiq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR5EuGOJiq .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uR5EuGOJiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR5EuGOJiq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR5EuGOJiq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR5EuGOJiq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR5EuGOJiq .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: #000000;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5EuGOJiq .navbar.opened {
  transition: all 0.3s;
}
.cid-uR5EuGOJiq .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uR5EuGOJiq .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uR5EuGOJiq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR5EuGOJiq .navbar.collapsed {
  justify-content: center;
}
.cid-uR5EuGOJiq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR5EuGOJiq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR5EuGOJiq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-uR5EuGOJiq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR5EuGOJiq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR5EuGOJiq .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-uR5EuGOJiq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR5EuGOJiq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR5EuGOJiq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR5EuGOJiq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR5EuGOJiq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR5EuGOJiq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR5EuGOJiq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR5EuGOJiq .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-uR5EuGOJiq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR5EuGOJiq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR5EuGOJiq .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uR5EuGOJiq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uR5EuGOJiq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR5EuGOJiq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR5EuGOJiq .navbar.navbar-short {
  min-height: 96px;
}
.cid-uR5EuGOJiq .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uR5EuGOJiq .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-uR5EuGOJiq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uR5EuGOJiq .navbar-brand .navbar-caption:hover,
.cid-uR5EuGOJiq .navbar-brand .navbar-caption:focus {
  color: #c4c6db !important;
}
.cid-uR5EuGOJiq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR5EuGOJiq .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uR5EuGOJiq .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uR5EuGOJiq .dropdown-item.active,
.cid-uR5EuGOJiq .dropdown-item:active {
  background-color: transparent;
}
.cid-uR5EuGOJiq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR5EuGOJiq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR5EuGOJiq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR5EuGOJiq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uR5EuGOJiq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uR5EuGOJiq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uR5EuGOJiq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR5EuGOJiq ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uR5EuGOJiq ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uR5EuGOJiq .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uR5EuGOJiq .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uR5EuGOJiq .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-uR5EuGOJiq .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uR5EuGOJiq 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: #000000 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uR5EuGOJiq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uR5EuGOJiq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uR5EuGOJiq button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5EuGOJiq button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uR5EuGOJiq button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uR5EuGOJiq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5EuGOJiq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR5EuGOJiq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR5EuGOJiq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR5EuGOJiq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR5EuGOJiq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR5EuGOJiq .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-uR5EuGOJiq .navbar {
    height: 70px;
  }
  .cid-uR5EuGOJiq .navbar.opened {
    height: auto;
  }
  .cid-uR5EuGOJiq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5EuGOJiq .navbar-nav {
  margin: 0 auto;
}
.cid-uR5EuGOJiq .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uR5EuGOJiq .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 #fff0b0;
}
.cid-uR5EuGOJiq .nav-item .nav-link::after {
  color: #fff0b0 !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uR5EuGOJiq .nav-item .nav-link:hover {
  background-color: #c4c6db;
  color: #ffffff !important;
  border: 1px solid #c4c6db;
}
.cid-uR5EuGOJiq .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uR5EuGOJiq .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uR5EuGOJiq .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uR5EuGOJiq .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uR5EuGOJiq .navbar {
    justify-content: flex-start !important;
  }
  .cid-uR5EuGOJiq .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uR5EuGOJiq .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uR5EuGOJiq .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uR5EuGOJiq .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uR5EuGOJiq .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uR5EuGOJiq .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uR5EuGOJiq .content-wrap {
  min-height: 110px;
}
.cid-uR5EuHbJXC {
  display: flex;
  background-image: url("../../../assets/images/1696234022132.png-1280x720.png");
}
.cid-uR5EuHbJXC .mbr-overlay {
  background-color: #000000;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .cid-uR5EuHbJXC {
    align-items: flex-start;
  }
  .cid-uR5EuHbJXC .row {
    justify-content: flex-end;
  }
  .cid-uR5EuHbJXC .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uR5EuHbJXC .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uR5EuHbJXC {
    -webkit-align-items: center;
    align-items: flex-start;
  }
  .cid-uR5EuHbJXC .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uR5EuHbJXC .content-wrap {
    width: 100%;
  }
}
.cid-uR5EuHbJXC .mbr-section-title,
.cid-uR5EuHbJXC .mbr-section-subtitle {
  text-align: center;
}
.cid-uR5EuHbJXC .mbr-text,
.cid-uR5EuHbJXC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uR5EuHbJXC .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuHudmG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EuHudmG .card {
  background: #000000;
  border-radius: 10px;
}
.cid-uR5EuHudmG img {
  width: 100%;
  border-radius: 10px;
}
.cid-uR5EuHudmG .wrapper {
  padding: 4rem 2rem;
}
@media (max-width: 767px) {
  .cid-uR5EuHudmG .wrapper {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuHudmG .wrapper {
    max-width: 430px;
    margin: auto;
    padding: 4rem 0;
  }
  .cid-uR5EuHudmG img {
    width: 170%;
    z-index: 2;
    position: relative;
  }
  .cid-uR5EuHudmG .image-wrapper {
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .cid-uR5EuHudmG img {
    width: 150%;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuHudmG img {
    width: 100%;
  }
}
.cid-uR5EuHudmG .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.cid-uR5EuHudmG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uR5EuHudmG .counter-container ul li:before {
  position: absolute;
  left: -15px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
  content: "✓";
}
.cid-uR5EuHudmG .mbr-text,
.cid-uR5EuHudmG .mbr-section-btn {
  color: #464646;
}
.cid-uR5EuHudmG .mbr-section-subtitle {
  color: #777777;
}
.cid-uR5EuHudmG .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuHudmG .mbr-list {
  color: #ffffff;
}
.cid-uR5EuHRVGC {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uR5EuHRVGC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuHRVGC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuHRVGC .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uR5EuHRVGC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuHRVGC .container {
    padding: 0 24px;
  }
}
.cid-uR5EuHRVGC .row {
  justify-content: center;
}
.cid-uR5EuHRVGC .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR5EuHRVGC .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uR5EuHRVGC .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-uR5EuHRVGC .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EuHRVGC .mbr-section-title {
  color: #141414;
}
.cid-uR5EuHRVGC .mbr-text {
  color: #ffffff;
}
.cid-uR5EuHRVGC .mbr-text DIV {
  text-align: left;
}
.cid-uR5EuIdsVU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uR5EuIdsVU .content-head {
  max-width: 800px;
}
.cid-uR5EuIdsVU .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5EuIdsVU .mbr-text,
.cid-uR5EuIdsVU .mbr-section-btn {
  text-align: left;
}
.cid-uR5EuIFMD2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uR5EuIFMD2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuIFMD2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuIFMD2 .card-wrapper {
  background: #000000;
}
@media (max-width: 767px) {
  .cid-uR5EuIFMD2 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5EuIFMD2 .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuIFMD2 .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uR5EuIFMD2 .mbr-text,
.cid-uR5EuIFMD2 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR5EuIFMD2 .card-title,
.cid-uR5EuIFMD2 .card-box {
  text-align: left;
  color: #ffffff;
}
.cid-uR5EuJ07qb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EuJ07qb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuJ07qb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuJ07qb .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uR5EuJ07qb .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uR5EuJ07qb .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uR5EuJ07qb .mbr-section-title {
  color: #131313;
}
.cid-uR5EuJ07qb .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uR5EuJ07qb .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uR5EuJ07qb .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uR5EuJ07qb .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  box-shadow: 4px 4px 0 #ffffff;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uR5EuJ07qb .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuJ07qb .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uR5EuJ07qb .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uR5EuJ07qb .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uR5EuJ07qb .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #fc7942;
}
.cid-uR5EuJ07qb .card-title {
  color: #131313;
}
.cid-uR5EuJ07qb .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uR5EuJ07qb .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uR5EuJ07qb .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uR5EuJ07qb .card-link {
    margin-top: 15px;
  }
}
.cid-uR5EuJ07qb .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uR5EuJ07qb .card-title,
.cid-uR5EuJ07qb .iconfont-wrapper {
  text-align: center;
  color: #000000;
}
.cid-uR5EuJB417 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EuJB417 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuJB417 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuJB417 .card-wrapper {
  padding: 64px;
  background-image: linear-gradient(45deg, #ffffff -30%, #bed3f9 20%, #ffffff 60%);
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uR5EuJB417 .card-wrapper {
    padding: 16px;
  }
}
.cid-uR5EuJB417 .card-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uR5EuJB417 .card-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uR5EuJB417 .card-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uR5EuJB417 .card-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uR5EuJB417 .mbr-section-title {
  color: #121212;
  text-align: left;
}
.cid-uR5EuJB417 .list {
  color: #ffffff;
  text-align: center;
}
.cid-uR5EuJB417 .list,
.cid-uR5EuJB417 .item-wrap,
.cid-uR5EuJB417 .tabs-wrapper {
  color: #000000;
  text-align: left;
}
.cid-uR5EuK3q9F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR5EuK3q9F .mbr-text {
  color: #000000;
}
.cid-uR5EuK3q9F .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uR5EuK3q9F .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5EuK3q9F .mbr-section-subtitle,
.cid-uR5EuK3q9F .main-button {
  text-align: left;
  color: #000000;
}
.cid-uR5EuK3q9F .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uR5EuK3q9F .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uR5EuK3q9F .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-uR5EuK3q9F .panel-group {
  border: none;
}
.cid-uR5EuK3q9F .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uR5EuK3q9F .card-header {
    padding: 0rem;
  }
}
.cid-uR5EuK3q9F .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uR5EuK3q9F .collapsed span {
  transform: rotate(0deg);
}
.cid-uR5EuK3q9F .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR5EuK3q9F p {
  margin-bottom: 0.3rem;
}
.cid-uR5EuK3q9F .panel-title-edit {
  color: #000000;
}
.cid-uR5EuK3q9F .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uR5EuK3q9F .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uR5EuK3q9F .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uR5EuK3q9F .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uR5EuK3q9F .panel-text {
  color: #000000;
}
.cid-uR5EuK3q9F .panel-title-edit,
.cid-uR5EuK3q9F .mbr-iconfont {
  color: #000000;
}
.cid-uR5EuKLl8r {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #000000;
  overflow: hidden;
}
.cid-uR5EuKLl8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuKLl8r .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-uR5EuKLl8r .container {
    padding: 0 22px;
  }
}
.cid-uR5EuKLl8r .card {
  justify-content: center;
}
.cid-uR5EuKLl8r .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uR5EuKLl8r .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uR5EuKLl8r .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uR5EuKLl8r .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uR5EuKLl8r .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uR5EuKLl8r .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #fff0e6;
}
@media (max-width: 1440px) {
  .cid-uR5EuKLl8r .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uR5EuKLl8r .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuKLl8r .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uR5EuKLl8r .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uR5EuKLl8r .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuKLl8r .mbr-text {
  color: #ffffff;
}
.cid-uR5EuLbU3Z {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR5EuLbU3Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuLbU3Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuLbU3Z .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR5EuLbU3Z .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR5EuLbU3Z .items-wrapper {
  margin: 0 -75px;
}
.cid-uR5EuLbU3Z .items-wrapper .item {
  padding: 0 75px;
  margin-bottom: 84px;
}
@media (max-width: 992px) {
  .cid-uR5EuLbU3Z .items-wrapper .item {
    margin-bottom: 40px;
  }
  .cid-uR5EuLbU3Z .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .item-img {
  margin-bottom: 20px;
}
.cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .item-img img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .tags-wrapper {
    margin-bottom: 10px;
  }
}
.cid-uR5EuLbU3Z .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-uR5EuLbU3Z .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-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .tags-wrapper .list .item-wrap {
    padding: 0 14px 5px 0;
  }
}
.cid-uR5EuLbU3Z .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-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .card-date {
  margin-bottom: 0;
}
.cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 14px;
}
.cid-uR5EuLbU3Z .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5EuLbU3Z .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR5EuLbU3Z .card-title {
  color: #0f0f0f;
}
.cid-uR5EuLbU3Z .card-date {
  color: #666666;
}
.cid-uR5EuLbU3Z .list,
.cid-uR5EuLbU3Z .tags-wrapper {
  color: #666666;
  text-align: right;
}
.cid-uR5EuLI6qe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EuLI6qe .mbr-text {
  color: #ffffff;
}
.cid-uR5EuLI6qe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uR5EuLI6qe .mbr-section-title {
  color: #ffffff;
}
.cid-uR5EuM5EVF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR5EuM5EVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuM5EVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuM5EVF .card-wrapper {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uR5EuM5EVF .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR5EuM5EVF .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuM5EVF .card-wrapper {
    padding: 4rem;
  }
}
.cid-uR5EuM5EVF .mbr-text,
.cid-uR5EuM5EVF .mbr-section-btn {
  color: #000000;
}
.cid-uR5EuM5EVF .card-title,
.cid-uR5EuM5EVF .card-box {
  text-align: left;
  color: #000000;
}
.cid-uR5EuMvyIO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uR5EuMvyIO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuMvyIO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuMvyIO .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uR5EuMvyIO .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR5EuMvyIO .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR5EuMvyIO .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uR5EuMvyIO .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #42fc6c;
}
.cid-uR5EuMvyIO .mbr-section-title {
  color: #ffffff;
}
.cid-uR608YFisf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR608YFisf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR608YFisf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR608YFisf .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uR608YFisf .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR608YFisf .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uR608YFisf .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uR608YFisf .container {
    padding: 0 16px;
  }
}
.cid-uR608YFisf .row {
  justify-content: center;
}
.cid-uR608YFisf .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uR608YFisf .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR608YFisf .mbr-section-subtitle {
  margin-bottom: 32px;
  color: #000000;
}
.cid-uR608YFisf .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
.cid-uR608YFisf .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-uR608YFisf .panel-group .card .card-header {
  padding: 24px 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uR608YFisf .panel-group .card .card-header {
    padding: 20px 0;
  }
}
.cid-uR608YFisf .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uR608YFisf .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uR608YFisf .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uR608YFisf .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  color: #000000;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uR608YFisf .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uR608YFisf .panel-group .card .panel-collapse .panel-body {
    padding-bottom: 20px;
  }
}
.cid-uR608YFisf .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uR608YFisf .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR608YFisf .panel-title {
  color: #000000;
}
.cid-uR608YFisf .panel-text {
  color: #000000;
}
.cid-uR5EuN37wg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #000000;
}
.cid-uR5EuN37wg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuN37wg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuN37wg .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uR5EuN37wg .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uR5EuN37wg .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-uR5EuN37wg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uR5EuN37wg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uR5EuN37wg .content-head {
  max-width: 800px;
}
.cid-uR5EuNwUIV {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uR5EuNwUIV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5EuNwUIV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5EuNwUIV .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uR5EuNwUIV .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuNwUIV .content-wrapper {
    padding: 0;
  }
}
.cid-uR5EuNwUIV .content-wrapper .card-wrapper {
  background-color: #000000;
  padding: 108px;
  margin-bottom: 64px;
}
@media (max-width: 1440px) {
  .cid-uR5EuNwUIV .content-wrapper .card-wrapper {
    padding: 108px 64px;
  }
}
@media (max-width: 992px) {
  .cid-uR5EuNwUIV .content-wrapper .card-wrapper {
    padding: 20px;
    margin-bottom: 32px;
  }
}
.cid-uR5EuNwUIV .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uR5EuNwUIV .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .text-wrap {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uR5EuNwUIV .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-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .text-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR5EuNwUIV .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-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .nav-wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uR5EuNwUIV .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-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:hover,
.cid-uR5EuNwUIV .content-wrapper .card-wrapper .card-wrap .nav-wrapper .list .item-wrap:focus {
  text-decoration-color: inherit;
}
.cid-uR5EuNwUIV .mbr-copy {
  margin-bottom: 0;
  color: #131313;
  text-align: center;
}
.cid-uR5EuNwUIV .mbr-section-title {
  color: #2C2625;
}
.cid-uR5EuNwUIV .mbr-text {
  color: #2C2625;
}
.cid-uR5EuNwUIV .list {
  color: #2C2625;
}
.cid-uR5EuNwUIV .list,
.cid-uR5EuNwUIV .item-wrap {
  color: #ffffff;
}
