body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.display-1 {
  font-family: 'EB Garamond', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'EB Garamond', serif;
  font-size: 3.2rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: 0.8rem 3.5rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #f51a1a !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: #f51a1a !important;
  border-color: #f51a1a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d3ff24 !important;
  border-color: #d3ff24 !important;
  color: #1d2400 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #1d2400 !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #000000 !important;
  border-color: #000000 !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: #f51a1a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b10808 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f51a1a !important;
  border-color: #f51a1a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d3ff24;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a3cc00 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #1d2400 !important;
  background-color: #d3ff24 !important;
  border-color: #d3ff24 !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: #f51a1a !important;
}
.text-secondary {
  color: #d3ff24 !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: #a20707 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d3ff24 !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;
}
.nav-tabs .nav-link.active {
  color: #f51a1a;
}
.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: #f51a1a;
  border-color: #f51a1a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f51a1a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fedddd;
}
.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: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f51a1a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #f51a1a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f51a1a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f51a1a;
}
.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: #f51a1a;
  border-bottom-color: #f51a1a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #f51a1a !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: #d3ff24 !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='%23f51a1a' %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-t6VseZVvUM {
  background: transparent;
}
.cid-t6VseZVvUM .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-t6VseZVvUM .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t6VseZVvUM .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-t6VseZVvUM .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-t6VseZVvUM .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-t6VseZVvUM .nav-link {
  position: relative;
}
.cid-t6VseZVvUM .nav-link:hover {
  color: #f51a1a !important;
}
.cid-t6VseZVvUM .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-t6VseZVvUM .navbar.opened {
  transition: all 0.3s;
}
.cid-t6VseZVvUM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t6VseZVvUM .navbar .navbar-logo img {
  width: auto;
}
.cid-t6VseZVvUM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t6VseZVvUM .navbar.collapsed {
  justify-content: center;
}
.cid-t6VseZVvUM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t6VseZVvUM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t6VseZVvUM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-t6VseZVvUM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t6VseZVvUM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t6VseZVvUM .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-t6VseZVvUM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t6VseZVvUM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t6VseZVvUM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t6VseZVvUM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t6VseZVvUM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t6VseZVvUM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t6VseZVvUM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t6VseZVvUM .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-t6VseZVvUM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t6VseZVvUM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t6VseZVvUM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t6VseZVvUM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t6VseZVvUM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t6VseZVvUM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t6VseZVvUM .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-t6VseZVvUM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t6VseZVvUM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t6VseZVvUM .dropdown-item:hover,
.cid-t6VseZVvUM .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-t6VseZVvUM .dropdown-item:hover span {
  color: white;
}
.cid-t6VseZVvUM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t6VseZVvUM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t6VseZVvUM .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-t6VseZVvUM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t6VseZVvUM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t6VseZVvUM .dropdown-menu,
.cid-t6VseZVvUM .navbar.opened {
  background: #000000 !important;
}
.cid-t6VseZVvUM .nav-item:focus,
.cid-t6VseZVvUM .nav-link:focus {
  outline: none;
}
.cid-t6VseZVvUM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t6VseZVvUM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6VseZVvUM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t6VseZVvUM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t6VseZVvUM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t6VseZVvUM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t6VseZVvUM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t6VseZVvUM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t6VseZVvUM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t6VseZVvUM .dropdown-item.active,
.cid-t6VseZVvUM .dropdown-item:active {
  background-color: transparent;
}
.cid-t6VseZVvUM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t6VseZVvUM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t6VseZVvUM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t6VseZVvUM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-t6VseZVvUM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t6VseZVvUM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6VseZVvUM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t6VseZVvUM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t6VseZVvUM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t6VseZVvUM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-t6VseZVvUM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t6VseZVvUM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6VseZVvUM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t6VseZVvUM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t6VseZVvUM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6VseZVvUM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t6VseZVvUM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t6VseZVvUM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t6VseZVvUM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-t6VseZVvUM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t6VseZVvUM .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-t6VseZVvUM .navbar {
    height: 70px;
  }
  .cid-t6VseZVvUM .navbar.opened {
    height: auto;
  }
  .cid-t6VseZVvUM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3LbtLJdG1 {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LbtLJdG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LbtLJdG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LbtLJdG1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3LbtLJdG1 .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3LbtLJdG1 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3LbtLJdG1 .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3LbtLJdG1 .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3LbtLJdG1 .header-menu li p {
  margin: 0;
}
.cid-v3LbtLJdG1 .content-head {
  max-width: 800px;
}
.cid-v3LbtLJdG1 .mbr-section-title {
  color: #000000;
}
.cid-v3LbtLJdG1 .mbr-text,
.cid-v3LbtLJdG1 .mbr-section-btn {
  color: #000000;
}
.cid-v3Lb5SOO9I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3Lb5SOO9I .li-item {
  align-items: center;
  display: flex;
}
.cid-v3Lb5SOO9I .item {
  color: #e43f3f;
}
.cid-v3Lb5SOO9I svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-v3Lb5SOO9I path {
  fill: currentColor;
}
.cid-v3Lb5SOO9I .item,
.cid-v3Lb5SOO9I path {
  color: #000000;
}
.cid-v3LbdAddAK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LbdAddAK .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v3LbdAddAK .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v3Lclbz6aF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3Lclbz6aF .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3Lclbz6aF .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3Lclbz6aF img {
  width: 100%;
  border-radius: 30px;
}
.cid-v3Lclbz6aF .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lclbz6aF .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Lclbz6aF .wrapp {
    padding: 3rem;
  }
}
.cid-v3Lclbz6aF .mbr-section-subtitle {
  color: #000000;
}
.cid-v3Lclbz6aF .mbr-text {
  color: #000000;
}
.cid-t6WvWvzuZL {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t6WvWvzuZL img {
  border-radius: 1rem;
  height: 200px;
  object-fit: cover;
}
.cid-t6WvWvzuZL .item-wrapper {
  padding: 2rem;
  position: relative;
  border-radius: 2rem;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-t6WvWvzuZL .item-wrapper {
    padding: 1rem;
  }
}
.cid-t6WvWvzuZL .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-t6WvWvzuZL .d-flex {
  align-items: center;
}
.cid-t6WvWvzuZL .item-subtitle {
  background: #d3ff24;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #000000;
  margin: 0;
  margin-left: 10px;
}
.cid-t6WvWvzuZL .mbr-iconfont {
  font-size: 1.5rem;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t6WvWvzuZL img,
.cid-t6WvWvzuZL .item-img {
  width: 100%;
}
.cid-t6WvWvzuZL .item:focus,
.cid-t6WvWvzuZL span:focus {
  outline: none;
}
.cid-t6WvWvzuZL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t6WvWvzuZL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t6WvWvzuZL .mbr-section-title {
  color: #000000;
}
.cid-t6WvWvzuZL .mbr-text,
.cid-t6WvWvzuZL .mbr-section-btn {
  text-align: left;
}
.cid-t6WvWvzuZL .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-t6WvWvzuZL .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LbY7a9y2 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LbY7a9y2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LbY7a9y2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LbY7a9y2 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3LbY7a9y2 .container-fluid {
    padding: 0;
  }
}
.cid-v3LbY7a9y2 .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3LbY7a9y2 .container {
    padding: 0 30px;
  }
}
.cid-v3LbY7a9y2 .card {
  padding: 0;
}
.cid-v3LbY7a9y2 .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3LbY7a9y2 .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3LbY7a9y2 .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3LbY7a9y2 .mbr-text {
  color: #4e4e4e;
}
.cid-v3LbY7a9y2 .mbr-text,
.cid-v3LbY7a9y2 .mbr-section-btn {
  color: #000000;
}
.cid-v3L9LwXUnE {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3L9LwXUnE img,
.cid-v3L9LwXUnE .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3L9LwXUnE .item:focus,
.cid-v3L9LwXUnE span:focus {
  outline: none;
}
.cid-v3L9LwXUnE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3L9LwXUnE .item-wrapper {
  position: relative;
  border-radius: 1.5rem;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3L9LwXUnE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3L9LwXUnE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3L9LwXUnE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3L9LwXUnE .mbr-section-title {
  color: #232323;
}
.cid-v3L9LwXUnE .mbr-text,
.cid-v3L9LwXUnE .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v3KpbJxpA5 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3KpbJxpA5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3KpbJxpA5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3KpbJxpA5 .mbr-text,
.cid-v3KpbJxpA5 .mbr-section-btn {
  text-align: center;
}
.cid-v3KpbJxpA5 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3LaoywZeA {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3LaoywZeA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LaoywZeA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LaoywZeA .text-wrapper {
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-v3LaoywZeA .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v3LaoywZeA .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-v3LaoywZeA .image-wrapper {
  padding: 0;
}
.cid-v3LaoywZeA .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3LaoywZeA .mbr-section-title {
  color: #000000;
}
.cid-v3LdrYo4xk {
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3LdrYo4xk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LdrYo4xk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LdrYo4xk .container-fluid {
  padding: 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .container-fluid {
    padding: 0;
  }
}
.cid-v3LdrYo4xk .container {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .container {
    padding: 0 28px;
  }
}
.cid-v3LdrYo4xk .row {
  margin: -1px 0 0 0;
}
.cid-v3LdrYo4xk .card {
  padding: 40px;
  justify-content: center;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .card {
    padding: 28px;
  }
}
.cid-v3LdrYo4xk .card:first-child {
  border-right: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .card:first-child {
    border-right: 0;
    border-bottom: 1px solid #000000;
  }
}
.cid-v3LdrYo4xk .card:last-child {
  border-right: none;
  padding: 40px 100px;
}
@media (max-width: 1200px) {
  .cid-v3LdrYo4xk .card:last-child {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .card:last-child {
    padding: 28px;
  }
}
.cid-v3LdrYo4xk .image-wrapper img {
  min-height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3LdrYo4xk .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-v3LdrYo4xk .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3LdrYo4xk .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3LdrYo4xk .title-wrapper img {
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 30px;
}
.cid-v3LdrYo4xk .mbr-section-title {
  color: #000000;
}
.cid-v3LdrYo4xk .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3LdrYo4xk .mbr-section-title,
.cid-v3LdrYo4xk .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3KqBwUib5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3KqBwUib5 .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-v3KqBwUib5 .panel-group {
  border: none;
}
.cid-v3KqBwUib5 .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v3KqBwUib5 .card-header {
    padding: 0rem;
  }
}
.cid-v3KqBwUib5 .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v3KqBwUib5 .img-col {
  padding: 0;
}
.cid-v3KqBwUib5 .img-item {
  height: 100%;
}
.cid-v3KqBwUib5 img {
  height: 100%;
  object-fit: cover;
}
.cid-v3KqBwUib5 .collapsed span {
  transform: rotate(0deg);
}
.cid-v3KqBwUib5 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3KqBwUib5 p {
  margin-bottom: 0.3rem;
}
.cid-v3KqBwUib5 .panel-title-edit {
  color: #22a5e5;
}
.cid-v3KqBwUib5 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v3KqBwUib5 .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v3KqBwUib5 .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v3KqBwUib5 .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v3KqBwUib5 .panel-text {
  color: #000000;
}
.cid-v3KqBwUib5 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3KqBwUib5 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v3KqBwUib5 .panel-title-edit,
.cid-v3KqBwUib5 .mbr-iconfont {
  color: #000000;
}
.cid-v3Kpdf89cy {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3Kpdf89cy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Kpdf89cy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Kpdf89cy .mbr-text,
.cid-v3Kpdf89cy .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Kpdf89cy .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3KIm0ow5e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3KIm0ow5e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3KIm0ow5e .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-v3KIm0ow5e .container {
    padding: 0 20px;
  }
}
.cid-v3KIm0ow5e .row {
  margin: 0;
}
.cid-v3KIm0ow5e .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3KIm0ow5e .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3KIm0ow5e .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3KIm0ow5e .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3KIm0ow5e .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3KIm0ow5e .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3KIm0ow5e .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3LcQQPkkx {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3LcQQPkkx .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LcQQPkkx .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3LcQQPkkx .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3LcQQPkkx .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v3LcQQPkkx .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v3LcQQPkkx .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v3LcQQPkkx .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v3LcQQPkkx .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LcQQPkkx .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LcQQPkkx .wrapp {
    padding: 1rem;
  }
}
.cid-v3LcQQPkkx H3 {
  color: #000000;
}
.cid-v3LcQQPkkx .mbr-text,
.cid-v3LcQQPkkx .mbr-section-btn {
  color: #000000;
}
.cid-t6Wwq0WES6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t6Wwq0WES6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6Wwq0WES6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6Wwq0WES6 .google-map {
  height: 35rem;
  position: relative;
}
.cid-t6Wwq0WES6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t6Wwq0WES6 .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-t6Wwq0WES6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t6Wwq0WES6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t6WwH9bQc4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-t6WwH9bQc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-t6WwH9bQc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-t6WwH9bQc4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-t6WwH9bQc4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-t6WwH9bQc4 .socicon {
  color: #6592e6 !important;
}
@media (max-width: 767px) {
  .cid-t6WwH9bQc4 .row {
    text-align: center;
  }
  .cid-t6WwH9bQc4 .social-row {
    justify-content: center;
  }
}
.cid-t6WwH9bQc4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-t6WwH9bQc4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t6WwH9bQc4 .list {
    margin-bottom: 0rem;
  }
}
.cid-t6WwH9bQc4 .mbr-text {
  color: #bbbbbb;
}
.cid-t6WwH9bQc4 .mbr-iconfont {
  color: black;
}
.cid-t6WwH9bQc4 .copyright {
  color: #ffffff;
}
.cid-t6WwH9bQc4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t6WwHi8FoY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-t6WwHi8FoY .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-t6WwHi8FoY .d-flex {
    flex-direction: column;
  }
}
.cid-t6WwHi8FoY .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-v3Kto3QMEZ {
  background: transparent;
}
.cid-v3Kto3QMEZ .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-v3Kto3QMEZ .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3Kto3QMEZ .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-v3Kto3QMEZ .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-v3Kto3QMEZ .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-v3Kto3QMEZ .nav-link {
  position: relative;
}
.cid-v3Kto3QMEZ .nav-link:hover {
  color: #f51a1a !important;
}
.cid-v3Kto3QMEZ .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-v3Kto3QMEZ .navbar.opened {
  transition: all 0.3s;
}
.cid-v3Kto3QMEZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3Kto3QMEZ .navbar .navbar-logo img {
  width: auto;
}
.cid-v3Kto3QMEZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3Kto3QMEZ .navbar.collapsed {
  justify-content: center;
}
.cid-v3Kto3QMEZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3Kto3QMEZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3Kto3QMEZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3Kto3QMEZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3Kto3QMEZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3Kto3QMEZ .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-v3Kto3QMEZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3Kto3QMEZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3Kto3QMEZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3Kto3QMEZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3Kto3QMEZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3Kto3QMEZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3Kto3QMEZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3Kto3QMEZ .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-v3Kto3QMEZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3Kto3QMEZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3Kto3QMEZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3Kto3QMEZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3Kto3QMEZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3Kto3QMEZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3Kto3QMEZ .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-v3Kto3QMEZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3Kto3QMEZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3Kto3QMEZ .dropdown-item:hover,
.cid-v3Kto3QMEZ .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-v3Kto3QMEZ .dropdown-item:hover span {
  color: white;
}
.cid-v3Kto3QMEZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3Kto3QMEZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3Kto3QMEZ .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-v3Kto3QMEZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3Kto3QMEZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3Kto3QMEZ .dropdown-menu,
.cid-v3Kto3QMEZ .navbar.opened {
  background: #000000 !important;
}
.cid-v3Kto3QMEZ .nav-item:focus,
.cid-v3Kto3QMEZ .nav-link:focus {
  outline: none;
}
.cid-v3Kto3QMEZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3Kto3QMEZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3Kto3QMEZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3Kto3QMEZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3Kto3QMEZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3Kto3QMEZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3Kto3QMEZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3Kto3QMEZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3Kto3QMEZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3Kto3QMEZ .dropdown-item.active,
.cid-v3Kto3QMEZ .dropdown-item:active {
  background-color: transparent;
}
.cid-v3Kto3QMEZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3Kto3QMEZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3Kto3QMEZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3Kto3QMEZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3Kto3QMEZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3Kto3QMEZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3Kto3QMEZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3Kto3QMEZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3Kto3QMEZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3Kto3QMEZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3Kto3QMEZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3Kto3QMEZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Kto3QMEZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Kto3QMEZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3Kto3QMEZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Kto3QMEZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3Kto3QMEZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3Kto3QMEZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Kto3QMEZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v3Kto3QMEZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3Kto3QMEZ .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-v3Kto3QMEZ .navbar {
    height: 70px;
  }
  .cid-v3Kto3QMEZ .navbar.opened {
    height: auto;
  }
  .cid-v3Kto3QMEZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3Lt64eBZz {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lt64eBZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lt64eBZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lt64eBZz .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Lt64eBZz .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3Lt64eBZz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3Lt64eBZz .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3Lt64eBZz .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3Lt64eBZz .header-menu li p {
  margin: 0;
}
.cid-v3Lt64eBZz .content-head {
  max-width: 800px;
}
.cid-v3Lt64eBZz .mbr-section-title {
  color: #000000;
}
.cid-v3Lt64eBZz .mbr-text,
.cid-v3Lt64eBZz .mbr-section-btn {
  color: #000000;
}
.cid-v3Kto7iv4D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v3Kto7iv4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Kto7iv4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Kto7iv4D .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff;
}
@media (max-width: 767px) {
  .cid-v3Kto7iv4D .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-v3Kto7iv4D .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-v3Kto7iv4D .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-v3Kto7iv4D .card-title {
    margin-bottom: 20px;
  }
}
.cid-v3Kto7iv4D .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-v3Kto7iv4D .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v3Kto7iv4D .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-v3Ktoi3D2h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v3Ktoi3D2h .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Ktoi3D2h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Ktoi3D2h .google-map {
  height: 35rem;
  position: relative;
}
.cid-v3Ktoi3D2h .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v3Ktoi3D2h .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-v3Ktoi3D2h .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v3Ktoi3D2h .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v3Ktoj9n6T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3Ktoj9n6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Ktoj9n6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Ktoj9n6T .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v3Ktoj9n6T .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v3Ktoj9n6T .socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-v3Ktoj9n6T .row {
    text-align: center;
  }
  .cid-v3Ktoj9n6T .social-row {
    justify-content: center;
  }
}
.cid-v3Ktoj9n6T .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v3Ktoj9n6T .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Ktoj9n6T .list {
    margin-bottom: 0rem;
  }
}
.cid-v3Ktoj9n6T .mbr-text {
  color: #bbbbbb;
}
.cid-v3Ktoj9n6T .mbr-iconfont {
  color: black;
}
.cid-v3Ktoj9n6T .copyright {
  color: #ffffff;
}
.cid-v3KtoktKXr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v3KtoktKXr .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v3KtoktKXr .d-flex {
    flex-direction: column;
  }
}
.cid-v3KtoktKXr .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-v3KvEZm7Mu {
  background: transparent;
}
.cid-v3KvEZm7Mu .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-v3KvEZm7Mu .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3KvEZm7Mu .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-v3KvEZm7Mu .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-v3KvEZm7Mu .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-v3KvEZm7Mu .nav-link {
  position: relative;
}
.cid-v3KvEZm7Mu .nav-link:hover {
  color: #f51a1a !important;
}
.cid-v3KvEZm7Mu .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-v3KvEZm7Mu .navbar.opened {
  transition: all 0.3s;
}
.cid-v3KvEZm7Mu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3KvEZm7Mu .navbar .navbar-logo img {
  width: auto;
}
.cid-v3KvEZm7Mu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3KvEZm7Mu .navbar.collapsed {
  justify-content: center;
}
.cid-v3KvEZm7Mu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3KvEZm7Mu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3KvEZm7Mu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3KvEZm7Mu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3KvEZm7Mu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3KvEZm7Mu .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-v3KvEZm7Mu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3KvEZm7Mu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3KvEZm7Mu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3KvEZm7Mu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3KvEZm7Mu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3KvEZm7Mu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3KvEZm7Mu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3KvEZm7Mu .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-v3KvEZm7Mu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3KvEZm7Mu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3KvEZm7Mu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3KvEZm7Mu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3KvEZm7Mu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3KvEZm7Mu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3KvEZm7Mu .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-v3KvEZm7Mu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3KvEZm7Mu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3KvEZm7Mu .dropdown-item:hover,
.cid-v3KvEZm7Mu .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-v3KvEZm7Mu .dropdown-item:hover span {
  color: white;
}
.cid-v3KvEZm7Mu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3KvEZm7Mu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3KvEZm7Mu .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-v3KvEZm7Mu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3KvEZm7Mu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3KvEZm7Mu .dropdown-menu,
.cid-v3KvEZm7Mu .navbar.opened {
  background: #000000 !important;
}
.cid-v3KvEZm7Mu .nav-item:focus,
.cid-v3KvEZm7Mu .nav-link:focus {
  outline: none;
}
.cid-v3KvEZm7Mu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3KvEZm7Mu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3KvEZm7Mu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3KvEZm7Mu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3KvEZm7Mu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3KvEZm7Mu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3KvEZm7Mu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3KvEZm7Mu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3KvEZm7Mu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3KvEZm7Mu .dropdown-item.active,
.cid-v3KvEZm7Mu .dropdown-item:active {
  background-color: transparent;
}
.cid-v3KvEZm7Mu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3KvEZm7Mu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3KvEZm7Mu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3KvEZm7Mu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3KvEZm7Mu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3KvEZm7Mu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3KvEZm7Mu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3KvEZm7Mu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3KvEZm7Mu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3KvEZm7Mu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3KvEZm7Mu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3KvEZm7Mu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3KvEZm7Mu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3KvEZm7Mu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3KvEZm7Mu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3KvEZm7Mu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3KvEZm7Mu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3KvEZm7Mu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3KvEZm7Mu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v3KvEZm7Mu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3KvEZm7Mu .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-v3KvEZm7Mu .navbar {
    height: 70px;
  }
  .cid-v3KvEZm7Mu .navbar.opened {
    height: auto;
  }
  .cid-v3KvEZm7Mu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3LtBFUlDD {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LtBFUlDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LtBFUlDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LtBFUlDD .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3LtBFUlDD .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3LtBFUlDD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3LtBFUlDD .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3LtBFUlDD .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3LtBFUlDD .header-menu li p {
  margin: 0;
}
.cid-v3LtBFUlDD .content-head {
  max-width: 800px;
}
.cid-v3LtBFUlDD .mbr-section-title {
  color: #000000;
}
.cid-v3LtBFUlDD .mbr-text,
.cid-v3LtBFUlDD .mbr-section-btn {
  color: #000000;
}
.cid-v3KvF1eMyi {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-v3KvF1eMyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3KvF1eMyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3KvF1eMyi .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 55px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff;
}
@media (max-width: 767px) {
  .cid-v3KvF1eMyi .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-v3KvF1eMyi .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-v3KvF1eMyi .card-title {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-v3KvF1eMyi .card-title {
    margin-bottom: 20px;
  }
}
.cid-v3KvF1eMyi .card-subtitle {
  color: #212428;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cid-v3KvF1eMyi .card-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v3KvF1eMyi .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-v3KvF1Vesd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v3KvF1Vesd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3KvF1Vesd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3KvF1Vesd .google-map {
  height: 35rem;
  position: relative;
}
.cid-v3KvF1Vesd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v3KvF1Vesd .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-v3KvF1Vesd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v3KvF1Vesd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v3KvF2NRWm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3KvF2NRWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3KvF2NRWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3KvF2NRWm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v3KvF2NRWm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v3KvF2NRWm .socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-v3KvF2NRWm .row {
    text-align: center;
  }
  .cid-v3KvF2NRWm .social-row {
    justify-content: center;
  }
}
.cid-v3KvF2NRWm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v3KvF2NRWm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3KvF2NRWm .list {
    margin-bottom: 0rem;
  }
}
.cid-v3KvF2NRWm .mbr-text {
  color: #bbbbbb;
}
.cid-v3KvF2NRWm .mbr-iconfont {
  color: black;
}
.cid-v3KvF2NRWm .copyright {
  color: #ffffff;
}
.cid-v3KvF3FQpl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v3KvF3FQpl .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v3KvF3FQpl .d-flex {
    flex-direction: column;
  }
}
.cid-v3KvF3FQpl .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-v3LgiV0cD3 {
  background: transparent;
}
.cid-v3LgiV0cD3 .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-v3LgiV0cD3 .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3LgiV0cD3 .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-v3LgiV0cD3 .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-v3LgiV0cD3 .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-v3LgiV0cD3 .nav-link {
  position: relative;
}
.cid-v3LgiV0cD3 .nav-link:hover {
  color: #f51a1a !important;
}
.cid-v3LgiV0cD3 .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-v3LgiV0cD3 .navbar.opened {
  transition: all 0.3s;
}
.cid-v3LgiV0cD3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3LgiV0cD3 .navbar .navbar-logo img {
  width: auto;
}
.cid-v3LgiV0cD3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3LgiV0cD3 .navbar.collapsed {
  justify-content: center;
}
.cid-v3LgiV0cD3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3LgiV0cD3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3LgiV0cD3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3LgiV0cD3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3LgiV0cD3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3LgiV0cD3 .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-v3LgiV0cD3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3LgiV0cD3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3LgiV0cD3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3LgiV0cD3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3LgiV0cD3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3LgiV0cD3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3LgiV0cD3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3LgiV0cD3 .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-v3LgiV0cD3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3LgiV0cD3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3LgiV0cD3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3LgiV0cD3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3LgiV0cD3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3LgiV0cD3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3LgiV0cD3 .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-v3LgiV0cD3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3LgiV0cD3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3LgiV0cD3 .dropdown-item:hover,
.cid-v3LgiV0cD3 .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-v3LgiV0cD3 .dropdown-item:hover span {
  color: white;
}
.cid-v3LgiV0cD3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3LgiV0cD3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3LgiV0cD3 .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-v3LgiV0cD3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3LgiV0cD3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3LgiV0cD3 .dropdown-menu,
.cid-v3LgiV0cD3 .navbar.opened {
  background: #000000 !important;
}
.cid-v3LgiV0cD3 .nav-item:focus,
.cid-v3LgiV0cD3 .nav-link:focus {
  outline: none;
}
.cid-v3LgiV0cD3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3LgiV0cD3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3LgiV0cD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3LgiV0cD3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3LgiV0cD3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3LgiV0cD3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3LgiV0cD3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3LgiV0cD3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3LgiV0cD3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3LgiV0cD3 .dropdown-item.active,
.cid-v3LgiV0cD3 .dropdown-item:active {
  background-color: transparent;
}
.cid-v3LgiV0cD3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3LgiV0cD3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3LgiV0cD3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3LgiV0cD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3LgiV0cD3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3LgiV0cD3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3LgiV0cD3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3LgiV0cD3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3LgiV0cD3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3LgiV0cD3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3LgiV0cD3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3LgiV0cD3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3LgiV0cD3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3LgiV0cD3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3LgiV0cD3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3LgiV0cD3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3LgiV0cD3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3LgiV0cD3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3LgiV0cD3 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v3LgiV0cD3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3LgiV0cD3 .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-v3LgiV0cD3 .navbar {
    height: 70px;
  }
  .cid-v3LgiV0cD3 .navbar.opened {
    height: auto;
  }
  .cid-v3LgiV0cD3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3LgiVNWFq {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LgiVNWFq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LgiVNWFq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LgiVNWFq .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3LgiVNWFq .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3LgiVNWFq .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3LgiVNWFq .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3LgiVNWFq .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3LgiVNWFq .header-menu li p {
  margin: 0;
}
.cid-v3LgiVNWFq .content-head {
  max-width: 800px;
}
.cid-v3LgiVNWFq .mbr-section-title {
  color: #000000;
}
.cid-v3LgiVNWFq .mbr-text,
.cid-v3LgiVNWFq .mbr-section-btn {
  color: #000000;
}
.cid-v3LgiWml4b {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3LgiWml4b .li-item {
  align-items: center;
  display: flex;
}
.cid-v3LgiWml4b .item {
  color: #e43f3f;
}
.cid-v3LgiWml4b svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-v3LgiWml4b path {
  fill: currentColor;
}
.cid-v3LgiWml4b .item,
.cid-v3LgiWml4b path {
  color: #000000;
}
.cid-v3LgiWSeSn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LgiWSeSn .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v3LgiWSeSn .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v3LgiXmPhH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3LgiXmPhH .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3LgiXmPhH .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3LgiXmPhH img {
  width: 100%;
  border-radius: 30px;
}
.cid-v3LgiXmPhH .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LgiXmPhH .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v3LgiXmPhH .wrapp {
    padding: 3rem;
  }
}
.cid-v3LgiXmPhH .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LgiXmPhH .mbr-text {
  color: #000000;
}
.cid-v3LgiXWdxM {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LgiXWdxM img {
  border-radius: 1rem;
  height: 200px;
  object-fit: cover;
}
.cid-v3LgiXWdxM .item-wrapper {
  padding: 2rem;
  position: relative;
  border-radius: 2rem;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-v3LgiXWdxM .item-wrapper {
    padding: 1rem;
  }
}
.cid-v3LgiXWdxM .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-v3LgiXWdxM .d-flex {
  align-items: center;
}
.cid-v3LgiXWdxM .item-subtitle {
  background: #d3ff24;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #000000;
  margin: 0;
  margin-left: 10px;
}
.cid-v3LgiXWdxM .mbr-iconfont {
  font-size: 1.5rem;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3LgiXWdxM img,
.cid-v3LgiXWdxM .item-img {
  width: 100%;
}
.cid-v3LgiXWdxM .item:focus,
.cid-v3LgiXWdxM span:focus {
  outline: none;
}
.cid-v3LgiXWdxM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3LgiXWdxM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3LgiXWdxM .mbr-section-title {
  color: #000000;
}
.cid-v3LgiXWdxM .mbr-text,
.cid-v3LgiXWdxM .mbr-section-btn {
  text-align: left;
}
.cid-v3LgiXWdxM .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3LgiXWdxM .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LgiZiZMV {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LgiZiZMV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LgiZiZMV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LgiZiZMV .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3LgiZiZMV .container-fluid {
    padding: 0;
  }
}
.cid-v3LgiZiZMV .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3LgiZiZMV .container {
    padding: 0 30px;
  }
}
.cid-v3LgiZiZMV .card {
  padding: 0;
}
.cid-v3LgiZiZMV .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3LgiZiZMV .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3LgiZiZMV .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3LgiZiZMV .mbr-text {
  color: #4e4e4e;
}
.cid-v3LgiZiZMV .mbr-text,
.cid-v3LgiZiZMV .mbr-section-btn {
  color: #000000;
}
.cid-v3Lgj04XqQ {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3Lgj04XqQ img,
.cid-v3Lgj04XqQ .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3Lgj04XqQ .item:focus,
.cid-v3Lgj04XqQ span:focus {
  outline: none;
}
.cid-v3Lgj04XqQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Lgj04XqQ .item-wrapper {
  position: relative;
  border-radius: 1.5rem;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Lgj04XqQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Lgj04XqQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3Lgj04XqQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Lgj04XqQ .mbr-section-title {
  color: #232323;
}
.cid-v3Lgj04XqQ .mbr-text,
.cid-v3Lgj04XqQ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v3Lgj11ax2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3Lgj11ax2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj11ax2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj11ax2 .mbr-text,
.cid-v3Lgj11ax2 .mbr-section-btn {
  text-align: center;
}
.cid-v3Lgj11ax2 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3Lgj1ICU7 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3Lgj1ICU7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj1ICU7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj1ICU7 .text-wrapper {
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-v3Lgj1ICU7 .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v3Lgj1ICU7 .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-v3Lgj1ICU7 .image-wrapper {
  padding: 0;
}
.cid-v3Lgj1ICU7 .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Lgj1ICU7 .mbr-section-title {
  color: #000000;
}
.cid-v3Lgj2Ayiv {
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3Lgj2Ayiv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj2Ayiv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj2Ayiv .container-fluid {
  padding: 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .container-fluid {
    padding: 0;
  }
}
.cid-v3Lgj2Ayiv .container {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .container {
    padding: 0 28px;
  }
}
.cid-v3Lgj2Ayiv .row {
  margin: -1px 0 0 0;
}
.cid-v3Lgj2Ayiv .card {
  padding: 40px;
  justify-content: center;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .card {
    padding: 28px;
  }
}
.cid-v3Lgj2Ayiv .card:first-child {
  border-right: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .card:first-child {
    border-right: 0;
    border-bottom: 1px solid #000000;
  }
}
.cid-v3Lgj2Ayiv .card:last-child {
  border-right: none;
  padding: 40px 100px;
}
@media (max-width: 1200px) {
  .cid-v3Lgj2Ayiv .card:last-child {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .card:last-child {
    padding: 28px;
  }
}
.cid-v3Lgj2Ayiv .image-wrapper img {
  min-height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3Lgj2Ayiv .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-v3Lgj2Ayiv .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3Lgj2Ayiv .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3Lgj2Ayiv .title-wrapper img {
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 30px;
}
.cid-v3Lgj2Ayiv .mbr-section-title {
  color: #000000;
}
.cid-v3Lgj2Ayiv .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3Lgj2Ayiv .mbr-section-title,
.cid-v3Lgj2Ayiv .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Lgj3pJmk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3Lgj3pJmk .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-v3Lgj3pJmk .panel-group {
  border: none;
}
.cid-v3Lgj3pJmk .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v3Lgj3pJmk .card-header {
    padding: 0rem;
  }
}
.cid-v3Lgj3pJmk .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v3Lgj3pJmk .img-col {
  padding: 0;
}
.cid-v3Lgj3pJmk .img-item {
  height: 100%;
}
.cid-v3Lgj3pJmk img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Lgj3pJmk .collapsed span {
  transform: rotate(0deg);
}
.cid-v3Lgj3pJmk .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3Lgj3pJmk p {
  margin-bottom: 0.3rem;
}
.cid-v3Lgj3pJmk .panel-title-edit {
  color: #22a5e5;
}
.cid-v3Lgj3pJmk .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v3Lgj3pJmk .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v3Lgj3pJmk .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v3Lgj3pJmk .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v3Lgj3pJmk .panel-text {
  color: #000000;
}
.cid-v3Lgj3pJmk .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3Lgj3pJmk .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v3Lgj3pJmk .panel-title-edit,
.cid-v3Lgj3pJmk .mbr-iconfont {
  color: #000000;
}
.cid-v3Lgj4Mk3b {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3Lgj4Mk3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj4Mk3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj4Mk3b .mbr-text,
.cid-v3Lgj4Mk3b .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Lgj4Mk3b .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3Lgj5qpZp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lgj5qpZp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj5qpZp .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-v3Lgj5qpZp .container {
    padding: 0 20px;
  }
}
.cid-v3Lgj5qpZp .row {
  margin: 0;
}
.cid-v3Lgj5qpZp .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3Lgj5qpZp .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3Lgj5qpZp .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3Lgj5qpZp .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3Lgj5qpZp .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3Lgj5qpZp .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3Lgj5qpZp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3Lgj6hn9p {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3Lgj6hn9p .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lgj6hn9p .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3Lgj6hn9p .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3Lgj6hn9p .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v3Lgj6hn9p .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v3Lgj6hn9p .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v3Lgj6hn9p .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v3Lgj6hn9p .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lgj6hn9p .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Lgj6hn9p .wrapp {
    padding: 1rem;
  }
}
.cid-v3Lgj6hn9p H3 {
  color: #000000;
}
.cid-v3Lgj6hn9p .mbr-text,
.cid-v3Lgj6hn9p .mbr-section-btn {
  color: #000000;
}
.cid-v3LnGkPoNx {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LnGkPoNx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LnGkPoNx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LnGkPoNx .card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cid-v3LnGkPoNx .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-v3LnGkPoNx .panel-group {
  border: none;
}
.cid-v3LnGkPoNx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3LnGkPoNx .panel-body,
.cid-v3LnGkPoNx .card-header {
  padding: 1rem 0;
}
.cid-v3LnGkPoNx .panel-title-edit {
  color: #000000;
}
.cid-v3LnGkPoNx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v3LnGkPoNx H3 {
  color: #000000;
}
.cid-v3Lgj6YOT0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v3Lgj6YOT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj6YOT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj6YOT0 .google-map {
  height: 35rem;
  position: relative;
}
.cid-v3Lgj6YOT0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v3Lgj6YOT0 .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-v3Lgj6YOT0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v3Lgj6YOT0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v3Lgj7Lmnb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3Lgj7Lmnb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lgj7Lmnb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lgj7Lmnb .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v3Lgj7Lmnb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v3Lgj7Lmnb .socicon {
  color: #6592e6 !important;
}
@media (max-width: 767px) {
  .cid-v3Lgj7Lmnb .row {
    text-align: center;
  }
  .cid-v3Lgj7Lmnb .social-row {
    justify-content: center;
  }
}
.cid-v3Lgj7Lmnb .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v3Lgj7Lmnb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Lgj7Lmnb .list {
    margin-bottom: 0rem;
  }
}
.cid-v3Lgj7Lmnb .mbr-text {
  color: #bbbbbb;
}
.cid-v3Lgj7Lmnb .mbr-iconfont {
  color: black;
}
.cid-v3Lgj7Lmnb .copyright {
  color: #ffffff;
}
.cid-v3Lgj7Lmnb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Lgj8EAgD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v3Lgj8EAgD .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v3Lgj8EAgD .d-flex {
    flex-direction: column;
  }
}
.cid-v3Lgj8EAgD .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-v3LhVxH8jW {
  background: transparent;
}
.cid-v3LhVxH8jW .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-v3LhVxH8jW .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3LhVxH8jW .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-v3LhVxH8jW .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-v3LhVxH8jW .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-v3LhVxH8jW .nav-link {
  position: relative;
}
.cid-v3LhVxH8jW .nav-link:hover {
  color: #f51a1a !important;
}
.cid-v3LhVxH8jW .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-v3LhVxH8jW .navbar.opened {
  transition: all 0.3s;
}
.cid-v3LhVxH8jW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3LhVxH8jW .navbar .navbar-logo img {
  width: auto;
}
.cid-v3LhVxH8jW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3LhVxH8jW .navbar.collapsed {
  justify-content: center;
}
.cid-v3LhVxH8jW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3LhVxH8jW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3LhVxH8jW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3LhVxH8jW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3LhVxH8jW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3LhVxH8jW .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-v3LhVxH8jW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3LhVxH8jW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3LhVxH8jW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3LhVxH8jW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3LhVxH8jW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3LhVxH8jW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3LhVxH8jW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3LhVxH8jW .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-v3LhVxH8jW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3LhVxH8jW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3LhVxH8jW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3LhVxH8jW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3LhVxH8jW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3LhVxH8jW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3LhVxH8jW .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-v3LhVxH8jW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3LhVxH8jW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3LhVxH8jW .dropdown-item:hover,
.cid-v3LhVxH8jW .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-v3LhVxH8jW .dropdown-item:hover span {
  color: white;
}
.cid-v3LhVxH8jW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3LhVxH8jW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3LhVxH8jW .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-v3LhVxH8jW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3LhVxH8jW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3LhVxH8jW .dropdown-menu,
.cid-v3LhVxH8jW .navbar.opened {
  background: #000000 !important;
}
.cid-v3LhVxH8jW .nav-item:focus,
.cid-v3LhVxH8jW .nav-link:focus {
  outline: none;
}
.cid-v3LhVxH8jW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3LhVxH8jW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3LhVxH8jW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3LhVxH8jW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3LhVxH8jW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3LhVxH8jW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3LhVxH8jW .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3LhVxH8jW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3LhVxH8jW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3LhVxH8jW .dropdown-item.active,
.cid-v3LhVxH8jW .dropdown-item:active {
  background-color: transparent;
}
.cid-v3LhVxH8jW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3LhVxH8jW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3LhVxH8jW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3LhVxH8jW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3LhVxH8jW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3LhVxH8jW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3LhVxH8jW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3LhVxH8jW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3LhVxH8jW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3LhVxH8jW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3LhVxH8jW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3LhVxH8jW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3LhVxH8jW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3LhVxH8jW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3LhVxH8jW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3LhVxH8jW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3LhVxH8jW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3LhVxH8jW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3LhVxH8jW .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v3LhVxH8jW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3LhVxH8jW .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-v3LhVxH8jW .navbar {
    height: 70px;
  }
  .cid-v3LhVxH8jW .navbar.opened {
    height: auto;
  }
  .cid-v3LhVxH8jW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3LhVyGlq4 {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LhVyGlq4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVyGlq4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVyGlq4 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3LhVyGlq4 .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3LhVyGlq4 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3LhVyGlq4 .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3LhVyGlq4 .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3LhVyGlq4 .header-menu li p {
  margin: 0;
}
.cid-v3LhVyGlq4 .content-head {
  max-width: 800px;
}
.cid-v3LhVyGlq4 .mbr-section-title {
  color: #000000;
}
.cid-v3LhVyGlq4 .mbr-text,
.cid-v3LhVyGlq4 .mbr-section-btn {
  color: #000000;
}
.cid-v3LhVzhnxl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3LhVzhnxl .li-item {
  align-items: center;
  display: flex;
}
.cid-v3LhVzhnxl .item {
  color: #e43f3f;
}
.cid-v3LhVzhnxl svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-v3LhVzhnxl path {
  fill: currentColor;
}
.cid-v3LhVzhnxl .item,
.cid-v3LhVzhnxl path {
  color: #000000;
}
.cid-v3LhVzhnxl .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LhVzXZMs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LhVzXZMs .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v3LhVzXZMs .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v3LhVAvMNs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3LhVAvMNs .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3LhVAvMNs .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3LhVAvMNs img {
  width: 100%;
  border-radius: 30px;
}
.cid-v3LhVAvMNs .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LhVAvMNs .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v3LhVAvMNs .wrapp {
    padding: 3rem;
  }
}
.cid-v3LhVAvMNs .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LhVAvMNs .mbr-text {
  color: #000000;
}
.cid-v3LhVBbtN0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LhVBbtN0 img {
  border-radius: 1rem;
  height: 200px;
  object-fit: cover;
}
.cid-v3LhVBbtN0 .item-wrapper {
  padding: 2rem;
  position: relative;
  border-radius: 2rem;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-v3LhVBbtN0 .item-wrapper {
    padding: 1rem;
  }
}
.cid-v3LhVBbtN0 .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-v3LhVBbtN0 .d-flex {
  align-items: center;
}
.cid-v3LhVBbtN0 .item-subtitle {
  background: #d3ff24;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #000000;
  margin: 0;
  margin-left: 10px;
}
.cid-v3LhVBbtN0 .mbr-iconfont {
  font-size: 1.5rem;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3LhVBbtN0 img,
.cid-v3LhVBbtN0 .item-img {
  width: 100%;
}
.cid-v3LhVBbtN0 .item:focus,
.cid-v3LhVBbtN0 span:focus {
  outline: none;
}
.cid-v3LhVBbtN0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3LhVBbtN0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3LhVBbtN0 .mbr-section-title {
  color: #000000;
}
.cid-v3LhVBbtN0 .mbr-text,
.cid-v3LhVBbtN0 .mbr-section-btn {
  text-align: left;
}
.cid-v3LhVBbtN0 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3LhVBbtN0 .mbr-section-subtitle {
  color: #000000;
}
.cid-v3LhVClPAh {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LhVClPAh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVClPAh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVClPAh .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3LhVClPAh .container-fluid {
    padding: 0;
  }
}
.cid-v3LhVClPAh .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3LhVClPAh .container {
    padding: 0 30px;
  }
}
.cid-v3LhVClPAh .card {
  padding: 0;
}
.cid-v3LhVClPAh .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3LhVClPAh .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3LhVClPAh .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3LhVClPAh .mbr-text {
  color: #4e4e4e;
}
.cid-v3LhVClPAh .mbr-text,
.cid-v3LhVClPAh .mbr-section-btn {
  color: #000000;
}
.cid-v3LhVD61WC {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3LhVD61WC img,
.cid-v3LhVD61WC .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3LhVD61WC .item:focus,
.cid-v3LhVD61WC span:focus {
  outline: none;
}
.cid-v3LhVD61WC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3LhVD61WC .item-wrapper {
  position: relative;
  border-radius: 1.5rem;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3LhVD61WC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LhVD61WC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3LhVD61WC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3LhVD61WC .mbr-section-title {
  color: #232323;
}
.cid-v3LhVD61WC .mbr-text,
.cid-v3LhVD61WC .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v3LhVDT0HJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LhVDT0HJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVDT0HJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVDT0HJ .mbr-text,
.cid-v3LhVDT0HJ .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3LhVDT0HJ .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3LhVEzGZY {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3LhVEzGZY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVEzGZY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVEzGZY .text-wrapper {
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-v3LhVEzGZY .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v3LhVEzGZY .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-v3LhVEzGZY .image-wrapper {
  padding: 0;
}
.cid-v3LhVEzGZY .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3LhVEzGZY .mbr-section-title {
  color: #000000;
}
.cid-v3LhVFrXZz {
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3LhVFrXZz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVFrXZz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVFrXZz .container-fluid {
  padding: 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .container-fluid {
    padding: 0;
  }
}
.cid-v3LhVFrXZz .container {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .container {
    padding: 0 28px;
  }
}
.cid-v3LhVFrXZz .row {
  margin: -1px 0 0 0;
}
.cid-v3LhVFrXZz .card {
  padding: 40px;
  justify-content: center;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .card {
    padding: 28px;
  }
}
.cid-v3LhVFrXZz .card:first-child {
  border-right: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .card:first-child {
    border-right: 0;
    border-bottom: 1px solid #000000;
  }
}
.cid-v3LhVFrXZz .card:last-child {
  border-right: none;
  padding: 40px 100px;
}
@media (max-width: 1200px) {
  .cid-v3LhVFrXZz .card:last-child {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .card:last-child {
    padding: 28px;
  }
}
.cid-v3LhVFrXZz .image-wrapper img {
  min-height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3LhVFrXZz .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-v3LhVFrXZz .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3LhVFrXZz .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3LhVFrXZz .title-wrapper img {
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 30px;
}
.cid-v3LhVFrXZz .mbr-section-title {
  color: #000000;
}
.cid-v3LhVFrXZz .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3LhVFrXZz .mbr-section-title,
.cid-v3LhVFrXZz .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3LhVGpO6b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3LhVGpO6b .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-v3LhVGpO6b .panel-group {
  border: none;
}
.cid-v3LhVGpO6b .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v3LhVGpO6b .card-header {
    padding: 0rem;
  }
}
.cid-v3LhVGpO6b .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v3LhVGpO6b .img-col {
  padding: 0;
}
.cid-v3LhVGpO6b .img-item {
  height: 100%;
}
.cid-v3LhVGpO6b img {
  height: 100%;
  object-fit: cover;
}
.cid-v3LhVGpO6b .collapsed span {
  transform: rotate(0deg);
}
.cid-v3LhVGpO6b .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3LhVGpO6b p {
  margin-bottom: 0.3rem;
}
.cid-v3LhVGpO6b .panel-title-edit {
  color: #22a5e5;
}
.cid-v3LhVGpO6b .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v3LhVGpO6b .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v3LhVGpO6b .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v3LhVGpO6b .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v3LhVGpO6b .panel-text {
  color: #000000;
}
.cid-v3LhVGpO6b .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3LhVGpO6b .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v3LhVGpO6b .panel-title-edit,
.cid-v3LhVGpO6b .mbr-iconfont {
  color: #000000;
}
.cid-v3LhVHs6B7 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3LhVHs6B7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVHs6B7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVHs6B7 .mbr-text,
.cid-v3LhVHs6B7 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3LhVHs6B7 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3LhVIarIb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3LhVIarIb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVIarIb .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-v3LhVIarIb .container {
    padding: 0 20px;
  }
}
.cid-v3LhVIarIb .row {
  margin: 0;
}
.cid-v3LhVIarIb .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3LhVIarIb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3LhVIarIb .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3LhVIarIb .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3LhVIarIb .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3LhVIarIb .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3LhVIarIb .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3LhVISMbh {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3LhVISMbh .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LhVISMbh .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3LhVISMbh .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3LhVISMbh .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v3LhVISMbh .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v3LhVISMbh .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v3LhVISMbh .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v3LhVISMbh .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3LhVISMbh .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3LhVISMbh .wrapp {
    padding: 1rem;
  }
}
.cid-v3LhVISMbh H3 {
  color: #000000;
}
.cid-v3LhVISMbh .mbr-text,
.cid-v3LhVISMbh .mbr-section-btn {
  color: #000000;
}
.cid-v3LoX4ieqd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LoX4ieqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LoX4ieqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LoX4ieqd .card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cid-v3LoX4ieqd .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-v3LoX4ieqd .panel-group {
  border: none;
}
.cid-v3LoX4ieqd .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3LoX4ieqd .panel-body,
.cid-v3LoX4ieqd .card-header {
  padding: 1rem 0;
}
.cid-v3LoX4ieqd .panel-title-edit {
  color: #000000;
}
.cid-v3LoX4ieqd .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v3LoX4ieqd H3 {
  color: #000000;
}
.cid-v3LhVJK50e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v3LhVJK50e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVJK50e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVJK50e .google-map {
  height: 35rem;
  position: relative;
}
.cid-v3LhVJK50e .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v3LhVJK50e .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-v3LhVJK50e .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v3LhVJK50e .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v3LhVKBJYu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3LhVKBJYu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LhVKBJYu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LhVKBJYu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v3LhVKBJYu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v3LhVKBJYu .socicon {
  color: #6592e6 !important;
}
@media (max-width: 767px) {
  .cid-v3LhVKBJYu .row {
    text-align: center;
  }
  .cid-v3LhVKBJYu .social-row {
    justify-content: center;
  }
}
.cid-v3LhVKBJYu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v3LhVKBJYu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3LhVKBJYu .list {
    margin-bottom: 0rem;
  }
}
.cid-v3LhVKBJYu .mbr-text {
  color: #bbbbbb;
}
.cid-v3LhVKBJYu .mbr-iconfont {
  color: black;
}
.cid-v3LhVKBJYu .copyright {
  color: #ffffff;
}
.cid-v3LhVKBJYu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3LhVLvqgh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v3LhVLvqgh .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v3LhVLvqgh .d-flex {
    flex-direction: column;
  }
}
.cid-v3LhVLvqgh .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-v3Lk4dgQ8D {
  background: transparent;
}
.cid-v3Lk4dgQ8D .navbar-nav {
  background: #000000;
  border-radius: 1.5rem;
  padding: 0 1rem;
}
.cid-v3Lk4dgQ8D .container {
  max-width: 1150px;
  height: 50px;
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3Lk4dgQ8D .container {
    flex-wrap: nowrap;
  }
}
@media (max-width: 992px) {
  .cid-v3Lk4dgQ8D .container {
    height: 70px;
  }
}
@media (min-width: 992px) {
  .cid-v3Lk4dgQ8D .navbar {
    top: 50px;
    background: transparent !important;
  }
}
.cid-v3Lk4dgQ8D .nav-link {
  position: relative;
}
.cid-v3Lk4dgQ8D .nav-link:hover {
  color: #f51a1a !important;
}
.cid-v3Lk4dgQ8D .navbar {
  min-height: 50px;
  background: #000000;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-v3Lk4dgQ8D .navbar.opened {
  transition: all 0.3s;
}
.cid-v3Lk4dgQ8D .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3Lk4dgQ8D .navbar .navbar-logo img {
  width: auto;
}
.cid-v3Lk4dgQ8D .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3Lk4dgQ8D .navbar.collapsed {
  justify-content: center;
}
.cid-v3Lk4dgQ8D .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3Lk4dgQ8D .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3Lk4dgQ8D .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-v3Lk4dgQ8D .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3Lk4dgQ8D .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3Lk4dgQ8D .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-v3Lk4dgQ8D .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3Lk4dgQ8D .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3Lk4dgQ8D .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3Lk4dgQ8D .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3Lk4dgQ8D .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3Lk4dgQ8D .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3Lk4dgQ8D .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3Lk4dgQ8D .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-v3Lk4dgQ8D .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3Lk4dgQ8D .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3Lk4dgQ8D .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3Lk4dgQ8D .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3Lk4dgQ8D .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3Lk4dgQ8D .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v3Lk4dgQ8D .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-v3Lk4dgQ8D .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3Lk4dgQ8D .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3Lk4dgQ8D .dropdown-item:hover,
.cid-v3Lk4dgQ8D .dropdown-item:focus {
  background: #f51a1a !important;
  color: white !important;
}
.cid-v3Lk4dgQ8D .dropdown-item:hover span {
  color: white;
}
.cid-v3Lk4dgQ8D .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3Lk4dgQ8D .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3Lk4dgQ8D .nav-dropdown .link {
  padding: 0 0.2em !important;
  margin: 0.667em 1em !important;
}
.cid-v3Lk4dgQ8D .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3Lk4dgQ8D .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3Lk4dgQ8D .dropdown-menu,
.cid-v3Lk4dgQ8D .navbar.opened {
  background: #000000 !important;
}
.cid-v3Lk4dgQ8D .nav-item:focus,
.cid-v3Lk4dgQ8D .nav-link:focus {
  outline: none;
}
.cid-v3Lk4dgQ8D .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3Lk4dgQ8D .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3Lk4dgQ8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3Lk4dgQ8D .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3Lk4dgQ8D .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3Lk4dgQ8D .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3Lk4dgQ8D .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3Lk4dgQ8D .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3Lk4dgQ8D .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3Lk4dgQ8D .dropdown-item.active,
.cid-v3Lk4dgQ8D .dropdown-item:active {
  background-color: transparent;
}
.cid-v3Lk4dgQ8D .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3Lk4dgQ8D .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3Lk4dgQ8D .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3Lk4dgQ8D .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v3Lk4dgQ8D .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3Lk4dgQ8D .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3Lk4dgQ8D ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3Lk4dgQ8D .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3Lk4dgQ8D button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3Lk4dgQ8D button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3Lk4dgQ8D button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3Lk4dgQ8D button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Lk4dgQ8D button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3Lk4dgQ8D button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3Lk4dgQ8D nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Lk4dgQ8D nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3Lk4dgQ8D nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3Lk4dgQ8D nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3Lk4dgQ8D .navbar-dropdown {
  padding: 0 1rem;
}
.cid-v3Lk4dgQ8D a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3Lk4dgQ8D .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-v3Lk4dgQ8D .navbar {
    height: 70px;
  }
  .cid-v3Lk4dgQ8D .navbar.opened {
    height: auto;
  }
  .cid-v3Lk4dgQ8D .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3Lk4eaMVV {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lk4eaMVV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4eaMVV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4eaMVV .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v3Lk4eaMVV .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-v3Lk4eaMVV .row-links {
  width: 100%;
  justify-content: center;
}
.cid-v3Lk4eaMVV .header-menu {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v3Lk4eaMVV .header-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v3Lk4eaMVV .header-menu li p {
  margin: 0;
}
.cid-v3Lk4eaMVV .content-head {
  max-width: 800px;
}
.cid-v3Lk4eaMVV .mbr-section-title {
  color: #000000;
}
.cid-v3Lk4eaMVV .mbr-text,
.cid-v3Lk4eaMVV .mbr-section-btn {
  color: #000000;
}
.cid-v3Lk4f3eRJ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3Lk4f3eRJ .li-item {
  align-items: center;
  display: flex;
}
.cid-v3Lk4f3eRJ .item {
  color: #e43f3f;
}
.cid-v3Lk4f3eRJ svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-v3Lk4f3eRJ path {
  fill: currentColor;
}
.cid-v3Lk4f3eRJ .item,
.cid-v3Lk4f3eRJ path {
  color: #000000;
}
.cid-v3Lk4f3eRJ .mbr-section-subtitle {
  color: #000000;
}
.cid-v3Lk4fF1kq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lk4fF1kq .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v3Lk4fF1kq .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v3Lk4geZwL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-v3Lk4geZwL .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3Lk4geZwL .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3Lk4geZwL img {
  width: 100%;
  border-radius: 30px;
}
.cid-v3Lk4geZwL .wrapp {
  padding: 44px 40px;
  border: 1px solid;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lk4geZwL .wrapp {
    padding: 3rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Lk4geZwL .wrapp {
    padding: 3rem;
  }
}
.cid-v3Lk4geZwL .mbr-section-subtitle {
  color: #000000;
}
.cid-v3Lk4geZwL .mbr-text {
  color: #000000;
}
.cid-v3Lk4gWQ00 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3Lk4gWQ00 img {
  border-radius: 1rem;
  height: 200px;
  object-fit: cover;
}
.cid-v3Lk4gWQ00 .item-wrapper {
  padding: 2rem;
  position: relative;
  border-radius: 2rem;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-v3Lk4gWQ00 .item-wrapper {
    padding: 1rem;
  }
}
.cid-v3Lk4gWQ00 .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-v3Lk4gWQ00 .d-flex {
  align-items: center;
}
.cid-v3Lk4gWQ00 .item-subtitle {
  background: #d3ff24;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #000000;
  margin: 0;
  margin-left: 10px;
}
.cid-v3Lk4gWQ00 .mbr-iconfont {
  font-size: 1.5rem;
  border: 1px solid black;
  border-radius: 50%;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3Lk4gWQ00 img,
.cid-v3Lk4gWQ00 .item-img {
  width: 100%;
}
.cid-v3Lk4gWQ00 .item:focus,
.cid-v3Lk4gWQ00 span:focus {
  outline: none;
}
.cid-v3Lk4gWQ00 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Lk4gWQ00 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Lk4gWQ00 .mbr-section-title {
  color: #000000;
}
.cid-v3Lk4gWQ00 .mbr-text,
.cid-v3Lk4gWQ00 .mbr-section-btn {
  text-align: left;
}
.cid-v3Lk4gWQ00 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-v3Lk4gWQ00 .mbr-section-subtitle {
  color: #000000;
}
.cid-v3Lk4iaQc3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lk4iaQc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4iaQc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4iaQc3 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3Lk4iaQc3 .container-fluid {
    padding: 0;
  }
}
.cid-v3Lk4iaQc3 .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v3Lk4iaQc3 .container {
    padding: 0 30px;
  }
}
.cid-v3Lk4iaQc3 .card {
  padding: 0;
}
.cid-v3Lk4iaQc3 .card .card-wrapper {
  padding: 50px;
  border-radius: 3em;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v3Lk4iaQc3 .card .card-wrapper {
    padding: 30px;
  }
}
.cid-v3Lk4iaQc3 .card .card-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3Lk4iaQc3 .mbr-text {
  color: #4e4e4e;
}
.cid-v3Lk4iaQc3 .mbr-text,
.cid-v3Lk4iaQc3 .mbr-section-btn {
  color: #000000;
}
.cid-v3Lk4iQxLT {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3Lk4iQxLT img,
.cid-v3Lk4iQxLT .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v3Lk4iQxLT .item:focus,
.cid-v3Lk4iQxLT span:focus {
  outline: none;
}
.cid-v3Lk4iQxLT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Lk4iQxLT .item-wrapper {
  position: relative;
  border-radius: 1.5rem;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Lk4iQxLT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Lk4iQxLT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3Lk4iQxLT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Lk4iQxLT .mbr-section-title {
  color: #232323;
}
.cid-v3Lk4iQxLT .mbr-text,
.cid-v3Lk4iQxLT .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v3Lk4jNhGz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3Lk4jNhGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4jNhGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4jNhGz .mbr-text,
.cid-v3Lk4jNhGz .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Lk4jNhGz .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3Lk4kzSsy {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-v3Lk4kzSsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4kzSsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4kzSsy .text-wrapper {
  padding: 2rem 4rem;
}
@media (max-width: 767px) {
  .cid-v3Lk4kzSsy .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v3Lk4kzSsy .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-v3Lk4kzSsy .image-wrapper {
  padding: 0;
}
.cid-v3Lk4kzSsy .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Lk4kzSsy .mbr-section-title {
  color: #000000;
}
.cid-v3Lk4lCKee {
  padding-top: 7rem;
  padding-bottom: 8rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-v3Lk4lCKee .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4lCKee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4lCKee .container-fluid {
  padding: 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .container-fluid {
    padding: 0;
  }
}
.cid-v3Lk4lCKee .container {
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .container {
    padding: 0 28px;
  }
}
.cid-v3Lk4lCKee .row {
  margin: -1px 0 0 0;
}
.cid-v3Lk4lCKee .card {
  padding: 40px;
  justify-content: center;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .card {
    padding: 28px;
  }
}
.cid-v3Lk4lCKee .card:first-child {
  border-right: 1px solid #000000;
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .card:first-child {
    border-right: 0;
    border-bottom: 1px solid #000000;
  }
}
.cid-v3Lk4lCKee .card:last-child {
  border-right: none;
  padding: 40px 100px;
}
@media (max-width: 1200px) {
  .cid-v3Lk4lCKee .card:last-child {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .card:last-child {
    padding: 28px;
  }
}
.cid-v3Lk4lCKee .image-wrapper img {
  min-height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3Lk4lCKee .image-wrapper img {
    min-height: auto;
    height: 350px;
  }
}
.cid-v3Lk4lCKee .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3Lk4lCKee .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-v3Lk4lCKee .title-wrapper img {
  max-width: 400px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto 30px;
}
.cid-v3Lk4lCKee .mbr-section-title {
  color: #000000;
}
.cid-v3Lk4lCKee .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v3Lk4lCKee .mbr-section-title,
.cid-v3Lk4lCKee .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Lk4mBbAx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-v3Lk4mBbAx .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-v3Lk4mBbAx .panel-group {
  border: none;
}
.cid-v3Lk4mBbAx .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-v3Lk4mBbAx .card-header {
    padding: 0rem;
  }
}
.cid-v3Lk4mBbAx .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-v3Lk4mBbAx .img-col {
  padding: 0;
}
.cid-v3Lk4mBbAx .img-item {
  height: 100%;
}
.cid-v3Lk4mBbAx img {
  height: 100%;
  object-fit: cover;
}
.cid-v3Lk4mBbAx .collapsed span {
  transform: rotate(0deg);
}
.cid-v3Lk4mBbAx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3Lk4mBbAx p {
  margin-bottom: 0.3rem;
}
.cid-v3Lk4mBbAx .panel-title-edit {
  color: #22a5e5;
}
.cid-v3Lk4mBbAx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-v3Lk4mBbAx .card {
  background: #ffffff;
  padding: 2.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-v3Lk4mBbAx .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v3Lk4mBbAx .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-v3Lk4mBbAx .panel-text {
  color: #000000;
}
.cid-v3Lk4mBbAx .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-v3Lk4mBbAx .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-v3Lk4mBbAx .panel-title-edit,
.cid-v3Lk4mBbAx .mbr-iconfont {
  color: #000000;
}
.cid-v3Lk4nHpY5 {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v3Lk4nHpY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4nHpY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4nHpY5 .mbr-text,
.cid-v3Lk4nHpY5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v3Lk4nHpY5 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-v3Lk4oxe5L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3Lk4oxe5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4oxe5L .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-v3Lk4oxe5L .container {
    padding: 0 20px;
  }
}
.cid-v3Lk4oxe5L .row {
  margin: 0;
}
.cid-v3Lk4oxe5L .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v3Lk4oxe5L .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3Lk4oxe5L .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v3Lk4oxe5L .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v3Lk4oxe5L .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v3Lk4oxe5L .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v3Lk4oxe5L .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v3Lk4phaky {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v3Lk4phaky .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lk4phaky .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-v3Lk4phaky .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-v3Lk4phaky .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-v3Lk4phaky .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-v3Lk4phaky .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-v3Lk4phaky .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-v3Lk4phaky .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-v3Lk4phaky .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Lk4phaky .wrapp {
    padding: 1rem;
  }
}
.cid-v3Lk4phaky H3 {
  color: #000000;
}
.cid-v3Lk4phaky .mbr-text,
.cid-v3Lk4phaky .mbr-section-btn {
  color: #000000;
}
.cid-v3LpDbmgFA {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v3LpDbmgFA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3LpDbmgFA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3LpDbmgFA .card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cid-v3LpDbmgFA .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: black;
  margin-left: 1rem;
}
.cid-v3LpDbmgFA .panel-group {
  border: none;
}
.cid-v3LpDbmgFA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-v3LpDbmgFA .panel-body,
.cid-v3LpDbmgFA .card-header {
  padding: 1rem 0;
}
.cid-v3LpDbmgFA .panel-title-edit {
  color: #000000;
}
.cid-v3LpDbmgFA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-v3LpDbmgFA H3 {
  color: #000000;
}
.cid-v3Lk4q6tXL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v3Lk4q6tXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4q6tXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4q6tXL .google-map {
  height: 35rem;
  position: relative;
}
.cid-v3Lk4q6tXL .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v3Lk4q6tXL .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-v3Lk4q6tXL .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v3Lk4q6tXL .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v3Lk4r076a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v3Lk4r076a .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3Lk4r076a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3Lk4r076a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v3Lk4r076a .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-v3Lk4r076a .socicon {
  color: #6592e6 !important;
}
@media (max-width: 767px) {
  .cid-v3Lk4r076a .row {
    text-align: center;
  }
  .cid-v3Lk4r076a .social-row {
    justify-content: center;
  }
}
.cid-v3Lk4r076a .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-v3Lk4r076a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v3Lk4r076a .list {
    margin-bottom: 0rem;
  }
}
.cid-v3Lk4r076a .mbr-text {
  color: #bbbbbb;
}
.cid-v3Lk4r076a .mbr-iconfont {
  color: black;
}
.cid-v3Lk4r076a .copyright {
  color: #ffffff;
}
.cid-v3Lk4r076a .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v3Lk4rT7yh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
  overflow: hidden;
}
.cid-v3Lk4rT7yh .d-flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .cid-v3Lk4rT7yh .d-flex {
    flex-direction: column;
  }
}
.cid-v3Lk4rT7yh .line {
  width: 100%;
  height: 1px;
  background: gray;
  margin-bottom: 2rem;
}
