body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 0px;
}
.btn-md {
  padding: 10px 15px;
  border-radius: 0px;
}
.btn-lg {
  padding: 20px 20px;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4a52 !important;
}
.bg-success {
  background-color: #7242d6 !important;
}
.bg-info {
  background-color: #48d678 !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #333333 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #fd000b !important;
  border-color: #fd000b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #148479 !important;
  border-color: #148479 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #48d678 !important;
  border-color: #48d678 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #26ab53 !important;
  border-color: #26ab53 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #4f24a7 !important;
  border-color: #4f24a7 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #e3000a;
  color: #e3000a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #ff4a52;
  border-color: #ff4a52;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4a52 !important;
  border-color: #ff4a52 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #116d65;
  color: #116d65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #1ec6b6;
  border-color: #1ec6b6;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #229649;
  color: #229649;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #48d678;
  border-color: #48d678;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #48d678 !important;
  border-color: #48d678 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #452092;
  color: #452092;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #7242d6;
  border-color: #7242d6;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7242d6 !important;
  border-color: #7242d6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff4a52 !important;
}
.text-secondary {
  color: #1ec6b6 !important;
}
.text-success {
  color: #7242d6 !important;
}
.text-info {
  color: #48d678 !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #333333 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #e3000a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #116d65 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #452092 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #229649 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #48d678;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #333333;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff4a52;
  border-color: #ff4a52;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4a52;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #efeafa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #effbf3;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a6a6a6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #ff4a52;
}
.btn-md {
  transition: none;
  padding: 0.5rem 2rem;
}
.btn-md:hover {
  background-color: #1ec6b6 !important;
  border-color: #1ec6b6 !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff4a52;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background: #ffffff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff4a52;
  border-bottom-color: #ff4a52;
}
.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: #ff4a52 !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: #1ec6b6 !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%;
}
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='%23ff4a52' %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;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAmTI1zxXE {
  background-image: url("../../../assets/images/img-7185-2000x1500.webp");
}
.cid-uAmTI1zxXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAmTI1zxXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1mkvHLid {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uV1mkvHLid .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-uV1mkvHLid .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-uV1mkvHLid p {
  line-height: 1.6;
}
.cid-uV1mkvHLid .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-uV1mkvHLid .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-uV1mkvHLid .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-uV1mkvHLid img {
  transition: all 0.3s;
}
.cid-uV1mkvHLid .card-box {
  padding: 1.5rem;
}
.cid-uV1mkvHLid .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-uV1mkvHLid .card-box > p,
.cid-uV1mkvHLid .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uV1mkvHLid .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-uV1mkvHLid .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV1mkvHLid .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAoGYwhJ8c {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uAoGYwhJ8c .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-uAoGYwhJ8c .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-uAoGYwhJ8c p {
  line-height: 1.6;
}
.cid-uAoGYwhJ8c .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-uAoGYwhJ8c .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-uAoGYwhJ8c .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-uAoGYwhJ8c img {
  transition: all 0.3s;
}
.cid-uAoGYwhJ8c .card-box {
  padding: 1.5rem;
}
.cid-uAoGYwhJ8c .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-uAoGYwhJ8c .card-box > p,
.cid-uAoGYwhJ8c .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uAoGYwhJ8c .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-uAoGYwhJ8c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoGYwhJ8c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvcBQE7GRZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-uvcBQE7GRZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-uvcBQE7GRZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uvcBQE7GRZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uvcBQE7GRZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uvcBQE7GRZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uwidukiaD0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwidukiaD0 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uwidukiaD0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uwidukiaD0 img {
  width: 100%;
  padding-bottom: 1.5rem;
}
.cid-uwidukiaD0 .mbr-image-title {
  text-align: center;
  color: #656565;
}
.cid-uwidukiaD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwidukiaD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utGZTrbR2u {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/whatsapp-image-2024-11-25-at-13.18.18-1072x804.webp");
}
.cid-utGZTrbR2u .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-utGZTrbR2u .card {
  background-color: white;
  padding: 2rem;
}
.cid-utGZTrbR2u .input-group-btn {
  display: block;
}
.cid-utGZTrbR2u .form-control {
  background: none;
  border-radius: 6px !important;
}
.cid-utGZTrbR2u .form-control-label {
  font-weight: 700;
}
.cid-utGZTrbR2u .mbr-section-subtitle {
  color: #656565;
}
.cid-utGZTrbR2u .title2 {
  color: #656565;
}
.cid-utGZTrbR2u .form-title {
  color: #656565;
}
@media (max-width: 576px) {
  .cid-utGZTrbR2u .col-sm-12 {
    margin: 1rem;
  }
  .cid-utGZTrbR2u .card {
    padding: 1rem;
  }
}
.cid-utGZTrbR2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-utGZTrbR2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utH0uiQNvI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-utH0uiQNvI .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-utH0uiQNvI .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-utH0uiQNvI .mbr-text {
  color: #444;
}
.cid-utH0uiQNvI h5 {
  margin-bottom: 0;
}
.cid-utH0uiQNvI .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-utH0uiQNvI .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-utH0uiQNvI .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-utH0uiQNvI .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-utH0uiQNvI .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-utH0uiQNvI .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-utH0uiQNvI .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-utH0uiQNvI .social-list a:hover {
  opacity: .4;
}
.cid-utH0uiQNvI .media-container-row > div {
  padding: 0px;
}
.cid-utH0uiQNvI .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-utH0uiQNvI .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-utH0uiQNvI .group-title SPAN {
  color: #ffffff;
}
.cid-utH0uiQNvI .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-utH0uiQNvI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-utH0uiQNvI .social-list,
  .cid-utH0uiQNvI .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-utH0uiQNvI h3 {
    margin-bottom: 10px;
  }
  .cid-utH0uiQNvI .navbar-brand {
    text-align: center;
  }
}
.cid-utH0uiQNvI .links SPAN {
  color: #9e9e9e;
}
.cid-utH0uiQNvI .mbr-fallback-image.disabled {
  display: none;
}
.cid-utH0uiQNvI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwTUrbDgt {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-uxwTUrbDgt .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-uxwTUrbDgt .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-uxwTUrbDgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxwTUrbDgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxwT5v0fxk {
  background: #333333;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uxwT5v0fxk .container-fluid {
  padding: 0 3rem;
}
.cid-uxwT5v0fxk .image-block {
  position: relative;
  margin: auto;
}
.cid-uxwT5v0fxk .image-block img {
  width: 100%;
}
.cid-uxwT5v0fxk .image-block .img-caption {
  background: #7ccbf1;
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  top: 0;
}
.cid-uxwT5v0fxk .image-block .img-caption p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uxwT5v0fxk .container-fluid {
    padding: 0 1rem;
  }
  .cid-uxwT5v0fxk .image-block {
    width: 100% !important;
  }
}
.cid-utHczrlI0b {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #333333;
}
.cid-utHczrlI0b .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-utHczrlI0b .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-utHczrlI0b .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-utHczrlI0b .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-utHczrlI0b .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-utHczrlI0b .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-utHczrlI0b .carousel-control,
.cid-utHczrlI0b .close {
  background: #1b1b1b;
}
.cid-utHczrlI0b .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-utHczrlI0b .carousel-control-prev span {
  margin-right: 5px;
}
.cid-utHczrlI0b .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-utHczrlI0b .carousel-control-next span {
  margin-left: 5px;
}
.cid-utHczrlI0b .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-utHczrlI0b .close::before {
  content: '\e91a';
}
.cid-utHczrlI0b .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-utHczrlI0b .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-utHczrlI0b .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utHczrlI0b .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utHczrlI0b .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-utHczrlI0b .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-utHczrlI0b .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-utHczrlI0b .carousel-indicators li.active,
.cid-utHczrlI0b .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-utHczrlI0b .carousel-indicators li::after,
.cid-utHczrlI0b .carousel-indicators li::before {
  content: none;
}
.cid-utHczrlI0b .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-utHczrlI0b .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-utHczrlI0b .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utHczrlI0b .carousel-indicators {
    display: none;
  }
}
.cid-utHczrlI0b .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-utHczrlI0b .carousel-inner > .active {
  display: block;
}
.cid-utHczrlI0b .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utHczrlI0b .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utHczrlI0b .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-utHczrlI0b .carousel-control,
  .cid-utHczrlI0b .carousel-indicators,
  .cid-utHczrlI0b .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-utHczrlI0b .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-utHczrlI0b .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-utHczrlI0b .carousel-indicators .active,
.cid-utHczrlI0b .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-utHczrlI0b .carousel-indicators .active {
  background: #fff;
}
.cid-utHczrlI0b .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-utHczrlI0b .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-utHczrlI0b .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-utHczrlI0b .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-utHczrlI0b .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-utHczrlI0b .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-utHczrlI0b .carousel {
  width: 100%;
}
.cid-utHczrlI0b .modal-backdrop.in {
  opacity: 0.8;
}
.cid-utHczrlI0b .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-utHczrlI0b .modal.fade .modal-dialog,
.cid-utHczrlI0b .modal.in .modal-dialog {
  transform: none;
}
.cid-utHczrlI0b .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-utHczrlI0b .content-head {
  max-width: 800px;
}
.cid-utHczrlI0b H3 {
  color: #ffffff;
}
.cid-utHczrlI0b H4 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoxHMU8Cc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uAoxHMU8Cc .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uAoxHMU8Cc .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uAoxHMU8Cc .mbr-text {
  color: #444;
}
.cid-uAoxHMU8Cc h5 {
  margin-bottom: 0;
}
.cid-uAoxHMU8Cc .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uAoxHMU8Cc .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAoxHMU8Cc .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uAoxHMU8Cc .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAoxHMU8Cc .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uAoxHMU8Cc .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uAoxHMU8Cc .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAoxHMU8Cc .social-list a:hover {
  opacity: .4;
}
.cid-uAoxHMU8Cc .media-container-row > div {
  padding: 0px;
}
.cid-uAoxHMU8Cc .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoxHMU8Cc .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAoxHMU8Cc .group-title SPAN {
  color: #ffffff;
}
.cid-uAoxHMU8Cc .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uAoxHMU8Cc .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uAoxHMU8Cc .social-list,
  .cid-uAoxHMU8Cc .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uAoxHMU8Cc h3 {
    margin-bottom: 10px;
  }
  .cid-uAoxHMU8Cc .navbar-brand {
    text-align: center;
  }
}
.cid-uAoxHMU8Cc .links SPAN {
  color: #9e9e9e;
}
.cid-uAoxHMU8Cc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoxHMU8Cc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxKPhNaAkS {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-uxKPhNaAkS .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-uxKPhNaAkS .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-uxKPhNaAkS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxKPhNaAkS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAoy5qlOgr {
  background: #333333;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-uAoy5qlOgr .container-fluid {
  padding: 0 3rem;
}
.cid-uAoy5qlOgr .image-block {
  position: relative;
  margin: auto;
}
.cid-uAoy5qlOgr .image-block img {
  width: 100%;
}
.cid-uAoy5qlOgr .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uAoy5qlOgr .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoy5qlOgr .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uAoy5qlOgr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uxKSFhmidO {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #333333;
}
.cid-uxKSFhmidO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uxKSFhmidO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxKSFhmidO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uxKSFhmidO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uxKSFhmidO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uxKSFhmidO .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uxKSFhmidO .carousel-control,
.cid-uxKSFhmidO .close {
  background: #1b1b1b;
}
.cid-uxKSFhmidO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uxKSFhmidO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uxKSFhmidO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uxKSFhmidO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uxKSFhmidO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxKSFhmidO .close::before {
  content: '\e91a';
}
.cid-uxKSFhmidO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxKSFhmidO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uxKSFhmidO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKSFhmidO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxKSFhmidO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxKSFhmidO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uxKSFhmidO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uxKSFhmidO .carousel-indicators li.active,
.cid-uxKSFhmidO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxKSFhmidO .carousel-indicators li::after,
.cid-uxKSFhmidO .carousel-indicators li::before {
  content: none;
}
.cid-uxKSFhmidO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxKSFhmidO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uxKSFhmidO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxKSFhmidO .carousel-indicators {
    display: none;
  }
}
.cid-uxKSFhmidO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uxKSFhmidO .carousel-inner > .active {
  display: block;
}
.cid-uxKSFhmidO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKSFhmidO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxKSFhmidO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uxKSFhmidO .carousel-control,
  .cid-uxKSFhmidO .carousel-indicators,
  .cid-uxKSFhmidO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uxKSFhmidO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uxKSFhmidO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uxKSFhmidO .carousel-indicators .active,
.cid-uxKSFhmidO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uxKSFhmidO .carousel-indicators .active {
  background: #fff;
}
.cid-uxKSFhmidO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uxKSFhmidO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uxKSFhmidO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxKSFhmidO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uxKSFhmidO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uxKSFhmidO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uxKSFhmidO .carousel {
  width: 100%;
}
.cid-uxKSFhmidO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uxKSFhmidO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uxKSFhmidO .modal.fade .modal-dialog,
.cid-uxKSFhmidO .modal.in .modal-dialog {
  transform: none;
}
.cid-uxKSFhmidO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uxKSFhmidO .content-head {
  max-width: 800px;
}
.cid-uxKSFhmidO H3 {
  color: #ffffff;
}
.cid-uxKSFhmidO H4 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoyfpefJc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uAoyfpefJc .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uAoyfpefJc .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uAoyfpefJc .mbr-text {
  color: #444;
}
.cid-uAoyfpefJc h5 {
  margin-bottom: 0;
}
.cid-uAoyfpefJc .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uAoyfpefJc .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAoyfpefJc .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uAoyfpefJc .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAoyfpefJc .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uAoyfpefJc .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uAoyfpefJc .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAoyfpefJc .social-list a:hover {
  opacity: .4;
}
.cid-uAoyfpefJc .media-container-row > div {
  padding: 0px;
}
.cid-uAoyfpefJc .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoyfpefJc .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAoyfpefJc .group-title SPAN {
  color: #ffffff;
}
.cid-uAoyfpefJc .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uAoyfpefJc .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uAoyfpefJc .social-list,
  .cid-uAoyfpefJc .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uAoyfpefJc h3 {
    margin-bottom: 10px;
  }
  .cid-uAoyfpefJc .navbar-brand {
    text-align: center;
  }
}
.cid-uAoyfpefJc .links SPAN {
  color: #9e9e9e;
}
.cid-uAoyfpefJc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoyfpefJc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxKPCKleli {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-uxKPCKleli .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-uxKPCKleli .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-uxKPCKleli .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxKPCKleli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAozR3j4ww {
  background: #333333;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-uAozR3j4ww .container-fluid {
  padding: 0 3rem;
}
.cid-uAozR3j4ww .image-block {
  position: relative;
  margin: auto;
}
.cid-uAozR3j4ww .image-block img {
  width: 100%;
}
.cid-uAozR3j4ww .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uAozR3j4ww .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAozR3j4ww .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uAozR3j4ww .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uxKTGLjSKU {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #333333;
}
.cid-uxKTGLjSKU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uxKTGLjSKU .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxKTGLjSKU .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uxKTGLjSKU .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uxKTGLjSKU .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uxKTGLjSKU .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uxKTGLjSKU .carousel-control,
.cid-uxKTGLjSKU .close {
  background: #1b1b1b;
}
.cid-uxKTGLjSKU .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uxKTGLjSKU .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uxKTGLjSKU .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uxKTGLjSKU .carousel-control-next span {
  margin-left: 5px;
}
.cid-uxKTGLjSKU .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxKTGLjSKU .close::before {
  content: '\e91a';
}
.cid-uxKTGLjSKU .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxKTGLjSKU .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uxKTGLjSKU .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKTGLjSKU .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxKTGLjSKU .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxKTGLjSKU .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uxKTGLjSKU .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uxKTGLjSKU .carousel-indicators li.active,
.cid-uxKTGLjSKU .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxKTGLjSKU .carousel-indicators li::after,
.cid-uxKTGLjSKU .carousel-indicators li::before {
  content: none;
}
.cid-uxKTGLjSKU .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxKTGLjSKU .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uxKTGLjSKU .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxKTGLjSKU .carousel-indicators {
    display: none;
  }
}
.cid-uxKTGLjSKU .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uxKTGLjSKU .carousel-inner > .active {
  display: block;
}
.cid-uxKTGLjSKU .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKTGLjSKU .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxKTGLjSKU .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uxKTGLjSKU .carousel-control,
  .cid-uxKTGLjSKU .carousel-indicators,
  .cid-uxKTGLjSKU .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uxKTGLjSKU .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uxKTGLjSKU .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uxKTGLjSKU .carousel-indicators .active,
.cid-uxKTGLjSKU .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uxKTGLjSKU .carousel-indicators .active {
  background: #fff;
}
.cid-uxKTGLjSKU .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uxKTGLjSKU .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uxKTGLjSKU .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxKTGLjSKU .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uxKTGLjSKU .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uxKTGLjSKU .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uxKTGLjSKU .carousel {
  width: 100%;
}
.cid-uxKTGLjSKU .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uxKTGLjSKU .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uxKTGLjSKU .modal.fade .modal-dialog,
.cid-uxKTGLjSKU .modal.in .modal-dialog {
  transform: none;
}
.cid-uxKTGLjSKU .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uxKTGLjSKU .content-head {
  max-width: 800px;
}
.cid-uxKTGLjSKU H3 {
  color: #ffffff;
}
.cid-uxKTGLjSKU H4 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoA1aXF8C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uAoA1aXF8C .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uAoA1aXF8C .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uAoA1aXF8C .mbr-text {
  color: #444;
}
.cid-uAoA1aXF8C h5 {
  margin-bottom: 0;
}
.cid-uAoA1aXF8C .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uAoA1aXF8C .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAoA1aXF8C .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uAoA1aXF8C .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAoA1aXF8C .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uAoA1aXF8C .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uAoA1aXF8C .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAoA1aXF8C .social-list a:hover {
  opacity: .4;
}
.cid-uAoA1aXF8C .media-container-row > div {
  padding: 0px;
}
.cid-uAoA1aXF8C .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoA1aXF8C .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAoA1aXF8C .group-title SPAN {
  color: #ffffff;
}
.cid-uAoA1aXF8C .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uAoA1aXF8C .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uAoA1aXF8C .social-list,
  .cid-uAoA1aXF8C .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uAoA1aXF8C h3 {
    margin-bottom: 10px;
  }
  .cid-uAoA1aXF8C .navbar-brand {
    text-align: center;
  }
}
.cid-uAoA1aXF8C .links SPAN {
  color: #9e9e9e;
}
.cid-uAoA1aXF8C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoA1aXF8C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxKPRejgCd {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-uxKPRejgCd .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-uxKPRejgCd .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-uxKPRejgCd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxKPRejgCd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAoAhJPgBu {
  background: #333333;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-uAoAhJPgBu .container-fluid {
  padding: 0 3rem;
}
.cid-uAoAhJPgBu .image-block {
  position: relative;
  margin: auto;
}
.cid-uAoAhJPgBu .image-block img {
  width: 100%;
}
.cid-uAoAhJPgBu .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uAoAhJPgBu .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoAhJPgBu .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uAoAhJPgBu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uxKTBfJuW4 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #333333;
}
.cid-uxKTBfJuW4 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uxKTBfJuW4 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxKTBfJuW4 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uxKTBfJuW4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uxKTBfJuW4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uxKTBfJuW4 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uxKTBfJuW4 .carousel-control,
.cid-uxKTBfJuW4 .close {
  background: #1b1b1b;
}
.cid-uxKTBfJuW4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uxKTBfJuW4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uxKTBfJuW4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uxKTBfJuW4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uxKTBfJuW4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxKTBfJuW4 .close::before {
  content: '\e91a';
}
.cid-uxKTBfJuW4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxKTBfJuW4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uxKTBfJuW4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKTBfJuW4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxKTBfJuW4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxKTBfJuW4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uxKTBfJuW4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uxKTBfJuW4 .carousel-indicators li.active,
.cid-uxKTBfJuW4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxKTBfJuW4 .carousel-indicators li::after,
.cid-uxKTBfJuW4 .carousel-indicators li::before {
  content: none;
}
.cid-uxKTBfJuW4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxKTBfJuW4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uxKTBfJuW4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxKTBfJuW4 .carousel-indicators {
    display: none;
  }
}
.cid-uxKTBfJuW4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uxKTBfJuW4 .carousel-inner > .active {
  display: block;
}
.cid-uxKTBfJuW4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKTBfJuW4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxKTBfJuW4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uxKTBfJuW4 .carousel-control,
  .cid-uxKTBfJuW4 .carousel-indicators,
  .cid-uxKTBfJuW4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uxKTBfJuW4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uxKTBfJuW4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uxKTBfJuW4 .carousel-indicators .active,
.cid-uxKTBfJuW4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uxKTBfJuW4 .carousel-indicators .active {
  background: #fff;
}
.cid-uxKTBfJuW4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uxKTBfJuW4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uxKTBfJuW4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxKTBfJuW4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uxKTBfJuW4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uxKTBfJuW4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uxKTBfJuW4 .carousel {
  width: 100%;
}
.cid-uxKTBfJuW4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uxKTBfJuW4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uxKTBfJuW4 .modal.fade .modal-dialog,
.cid-uxKTBfJuW4 .modal.in .modal-dialog {
  transform: none;
}
.cid-uxKTBfJuW4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uxKTBfJuW4 .content-head {
  max-width: 800px;
}
.cid-uxKTBfJuW4 H3 {
  color: #ffffff;
}
.cid-uxKTBfJuW4 H4 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoAZV07tq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uAoAZV07tq .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uAoAZV07tq .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uAoAZV07tq .mbr-text {
  color: #444;
}
.cid-uAoAZV07tq h5 {
  margin-bottom: 0;
}
.cid-uAoAZV07tq .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uAoAZV07tq .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAoAZV07tq .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uAoAZV07tq .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAoAZV07tq .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uAoAZV07tq .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uAoAZV07tq .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAoAZV07tq .social-list a:hover {
  opacity: .4;
}
.cid-uAoAZV07tq .media-container-row > div {
  padding: 0px;
}
.cid-uAoAZV07tq .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoAZV07tq .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAoAZV07tq .group-title SPAN {
  color: #ffffff;
}
.cid-uAoAZV07tq .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uAoAZV07tq .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uAoAZV07tq .social-list,
  .cid-uAoAZV07tq .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uAoAZV07tq h3 {
    margin-bottom: 10px;
  }
  .cid-uAoAZV07tq .navbar-brand {
    text-align: center;
  }
}
.cid-uAoAZV07tq .links SPAN {
  color: #9e9e9e;
}
.cid-uAoAZV07tq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoAZV07tq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxKQ5e0090 {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #333333;
}
.cid-uxKQ5e0090 .mbr-text {
  line-height: 1.5;
  color: #ececec;
  text-align: left;
}
.cid-uxKQ5e0090 .mbr-section-title {
  text-align: center;
  color: #ececec;
}
.cid-uxKQ5e0090 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxKQ5e0090 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAoC8bUG6C {
  background: #333333;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-uAoC8bUG6C .container-fluid {
  padding: 0 3rem;
}
.cid-uAoC8bUG6C .image-block {
  position: relative;
  margin: auto;
}
.cid-uAoC8bUG6C .image-block img {
  width: 100%;
}
.cid-uAoC8bUG6C .image-block .img-caption {
  width: 100%;
  padding: 1rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.cid-uAoC8bUG6C .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-uAoC8bUG6C .mbr-text {
  position: relative;
}
@media (max-width: 767px) {
  .cid-uAoC8bUG6C .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uxKU1XwD0v {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #333333;
}
.cid-uxKU1XwD0v .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uxKU1XwD0v .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uxKU1XwD0v .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uxKU1XwD0v .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uxKU1XwD0v .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  color: #464845 !important;
  transform: translateX(-50%) translateY(-50%);
  background-color: #edefea !important;
  transition: 0.2s;
}
.cid-uxKU1XwD0v .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uxKU1XwD0v .carousel-control,
.cid-uxKU1XwD0v .close {
  background: #1b1b1b;
}
.cid-uxKU1XwD0v .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uxKU1XwD0v .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uxKU1XwD0v .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uxKU1XwD0v .carousel-control-next span {
  margin-left: 5px;
}
.cid-uxKU1XwD0v .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxKU1XwD0v .close::before {
  content: '\e91a';
}
.cid-uxKU1XwD0v .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxKU1XwD0v .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uxKU1XwD0v .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKU1XwD0v .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxKU1XwD0v .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxKU1XwD0v .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uxKU1XwD0v .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uxKU1XwD0v .carousel-indicators li.active,
.cid-uxKU1XwD0v .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxKU1XwD0v .carousel-indicators li::after,
.cid-uxKU1XwD0v .carousel-indicators li::before {
  content: none;
}
.cid-uxKU1XwD0v .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxKU1XwD0v .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uxKU1XwD0v .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxKU1XwD0v .carousel-indicators {
    display: none;
  }
}
.cid-uxKU1XwD0v .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uxKU1XwD0v .carousel-inner > .active {
  display: block;
}
.cid-uxKU1XwD0v .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxKU1XwD0v .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxKU1XwD0v .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uxKU1XwD0v .carousel-control,
  .cid-uxKU1XwD0v .carousel-indicators,
  .cid-uxKU1XwD0v .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uxKU1XwD0v .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uxKU1XwD0v .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uxKU1XwD0v .carousel-indicators .active,
.cid-uxKU1XwD0v .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uxKU1XwD0v .carousel-indicators .active {
  background: #fff;
}
.cid-uxKU1XwD0v .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uxKU1XwD0v .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uxKU1XwD0v .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxKU1XwD0v .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uxKU1XwD0v .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uxKU1XwD0v .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uxKU1XwD0v .carousel {
  width: 100%;
}
.cid-uxKU1XwD0v .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uxKU1XwD0v .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uxKU1XwD0v .modal.fade .modal-dialog,
.cid-uxKU1XwD0v .modal.in .modal-dialog {
  transform: none;
}
.cid-uxKU1XwD0v .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uxKU1XwD0v .content-head {
  max-width: 800px;
}
.cid-uxKU1XwD0v H3 {
  color: #ffffff;
}
.cid-uxKU1XwD0v H4 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoIfuA5eM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uAoIfuA5eM .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-uAoIfuA5eM .navbar-logo {
  width: 80px;
  margin-bottom: 10px;
}
.cid-uAoIfuA5eM .mbr-text {
  color: #444;
}
.cid-uAoIfuA5eM h5 {
  margin-bottom: 0;
}
.cid-uAoIfuA5eM .navbar-brand {
  margin: 0rem;
  width: 100%;
}
.cid-uAoIfuA5eM .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uAoIfuA5eM .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
  display: inline-block;
}
.cid-uAoIfuA5eM .socicon {
  font-size: 1.3rem;
  background: #ff4a52;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uAoIfuA5eM .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uAoIfuA5eM .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-uAoIfuA5eM .social-list a {
  margin: 0;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uAoIfuA5eM .social-list a:hover {
  opacity: .4;
}
.cid-uAoIfuA5eM .media-container-row > div {
  padding: 0px;
}
.cid-uAoIfuA5eM .text2 {
  color: #ffffff;
  text-align: left;
}
.cid-uAoIfuA5eM .group-title {
  text-align: left;
  color: #ffffff;
}
.cid-uAoIfuA5eM .group-title SPAN {
  color: #ffffff;
}
.cid-uAoIfuA5eM .links {
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .cid-uAoIfuA5eM .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uAoIfuA5eM .social-list,
  .cid-uAoIfuA5eM .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uAoIfuA5eM h3 {
    margin-bottom: 10px;
  }
  .cid-uAoIfuA5eM .navbar-brand {
    text-align: center;
  }
}
.cid-uAoIfuA5eM .links SPAN {
  color: #9e9e9e;
}
.cid-uAoIfuA5eM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAoIfuA5eM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV1k67YzY6 {
  z-index: 1000;
  width: 100%;
}
.cid-uV1k67YzY6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uV1k67YzY6 nav.navbar {
  position: fixed;
}
.cid-uV1k67YzY6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uV1k67YzY6 .nav-item {
    height: auto;
  }
}
.cid-uV1k67YzY6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uV1k67YzY6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uV1k67YzY6 .dropdown-item:hover,
.cid-uV1k67YzY6 .dropdown-item:focus {
  background: white !important;
}
.cid-uV1k67YzY6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uV1k67YzY6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uV1k67YzY6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uV1k67YzY6 .nav-link {
  position: relative;
}
.cid-uV1k67YzY6 .container {
  display: flex;
  margin: auto;
}
.cid-uV1k67YzY6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: white;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uV1k67YzY6 .dropdown-menu,
.cid-uV1k67YzY6 .navbar.opened {
  background: #efefef !important;
}
.cid-uV1k67YzY6 .nav-item:focus,
.cid-uV1k67YzY6 .nav-link:focus {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uV1k67YzY6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uV1k67YzY6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uV1k67YzY6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uV1k67YzY6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(239, 239, 239, 0);
}
.cid-uV1k67YzY6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uV1k67YzY6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uV1k67YzY6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uV1k67YzY6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uV1k67YzY6 .navbar.collapsed {
  justify-content: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uV1k67YzY6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uV1k67YzY6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uV1k67YzY6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uV1k67YzY6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uV1k67YzY6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uV1k67YzY6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uV1k67YzY6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uV1k67YzY6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uV1k67YzY6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uV1k67YzY6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uV1k67YzY6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uV1k67YzY6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uV1k67YzY6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uV1k67YzY6 .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-uV1k67YzY6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uV1k67YzY6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uV1k67YzY6 .dropdown-item.active,
.cid-uV1k67YzY6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uV1k67YzY6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uV1k67YzY6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uV1k67YzY6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uV1k67YzY6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uV1k67YzY6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uV1k67YzY6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uV1k67YzY6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uV1k67YzY6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uV1k67YzY6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uV1k67YzY6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uV1k67YzY6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uV1k67YzY6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uV1k67YzY6 .navbar {
    height: 70px;
  }
  .cid-uV1k67YzY6 .navbar.opened {
    height: auto;
  }
  .cid-uV1k67YzY6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
