body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #353535 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ffa500 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffa500 !important;
  border-color: #ffa500 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a86d00 !important;
  border-color: #a86d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a86d00 !important;
  border-color: #a86d00 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a0a0a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #353535 !important;
  border-color: #353535 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa500;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a86d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa500 !important;
  border-color: #ffa500 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #353535 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ffa500 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #020202 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #996300 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #353535;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ffa500;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #353535;
  border-color: #353535;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #353535;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffedcc;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: auto;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #353535 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #353535;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #353535;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #353535;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.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: #353535 !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: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23353535' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ueYMJmXKK6 {
  z-index: 1000;
  width: 100%;
}
.cid-ueYMJmXKK6 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ueYMJmXKK6 nav.navbar {
  position: fixed;
}
.cid-ueYMJmXKK6 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ueYMJmXKK6 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ueYMJmXKK6 .nav-item {
    height: auto;
  }
}
.cid-ueYMJmXKK6 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ueYMJmXKK6 .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-ueYMJmXKK6 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ueYMJmXKK6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ueYMJmXKK6 .dropdown-item:hover,
.cid-ueYMJmXKK6 .dropdown-item:focus {
  background: white !important;
}
.cid-ueYMJmXKK6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ueYMJmXKK6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ueYMJmXKK6 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ueYMJmXKK6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ueYMJmXKK6 .nav-link {
  position: relative;
}
.cid-ueYMJmXKK6 .container {
  display: flex;
  margin: auto;
}
.cid-ueYMJmXKK6 .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ueYMJmXKK6 .dropdown-menu,
.cid-ueYMJmXKK6 .navbar.opened {
  background: #fafafa !important;
}
.cid-ueYMJmXKK6 .nav-item:focus,
.cid-ueYMJmXKK6 .nav-link:focus {
  outline: none;
}
.cid-ueYMJmXKK6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ueYMJmXKK6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ueYMJmXKK6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ueYMJmXKK6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueYMJmXKK6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ueYMJmXKK6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ueYMJmXKK6 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ueYMJmXKK6 .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ueYMJmXKK6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ueYMJmXKK6 .navbar .navbar-logo img {
  width: auto;
}
.cid-ueYMJmXKK6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ueYMJmXKK6 .navbar.collapsed {
  justify-content: center;
}
.cid-ueYMJmXKK6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ueYMJmXKK6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ueYMJmXKK6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ueYMJmXKK6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ueYMJmXKK6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ueYMJmXKK6 .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-ueYMJmXKK6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ueYMJmXKK6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ueYMJmXKK6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ueYMJmXKK6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ueYMJmXKK6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ueYMJmXKK6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ueYMJmXKK6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ueYMJmXKK6 .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-ueYMJmXKK6 .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ueYMJmXKK6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ueYMJmXKK6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ueYMJmXKK6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ueYMJmXKK6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ueYMJmXKK6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ueYMJmXKK6 .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ueYMJmXKK6 .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ueYMJmXKK6 .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ueYMJmXKK6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ueYMJmXKK6 .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-ueYMJmXKK6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ueYMJmXKK6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ueYMJmXKK6 .dropdown-item.active,
.cid-ueYMJmXKK6 .dropdown-item:active {
  background-color: transparent;
}
.cid-ueYMJmXKK6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ueYMJmXKK6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ueYMJmXKK6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ueYMJmXKK6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ueYMJmXKK6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ueYMJmXKK6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ueYMJmXKK6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ueYMJmXKK6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ueYMJmXKK6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ueYMJmXKK6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ueYMJmXKK6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ueYMJmXKK6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueYMJmXKK6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueYMJmXKK6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ueYMJmXKK6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueYMJmXKK6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ueYMJmXKK6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ueYMJmXKK6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueYMJmXKK6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ueYMJmXKK6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueYMJmXKK6 .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-ueYMJmXKK6 .navbar {
    height: 70px;
  }
  .cid-ueYMJmXKK6 .navbar.opened {
    height: auto;
  }
  .cid-ueYMJmXKK6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ueYMYoMMLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueYMYoMMLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/intro.png");
}
.cid-ueYMYoMMLN .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-ueYMYoMMLN .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-ueYMYoMMLN .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-ueYMYoMMLN .mbr-section-title {
  color: #ffa500;
}
.cid-ueYMYoMMLN .mbr-section-subtitle {
  color: #ffa500;
}
.cid-ufRAOuReSU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ufRAOuReSU img,
.cid-ufRAOuReSU .item-img {
  width: 100%;
}
.cid-ufRAOuReSU .item:focus,
.cid-ufRAOuReSU span:focus {
  outline: none;
}
.cid-ufRAOuReSU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ufRAOuReSU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufRAOuReSU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufRAOuReSU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufRAOuReSU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufRAOuReSU .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ufRAOuReSU .mbr-text,
.cid-ufRAOuReSU .mbr-section-btn {
  text-align: center;
}
.cid-ufRAOuReSU .item-title {
  text-align: center;
}
.cid-ufRAOuReSU .item-subtitle {
  text-align: center;
}
.cid-ufRm3SxuGe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ufRm3SxuGe img,
.cid-ufRm3SxuGe .item-img {
  width: 100%;
}
.cid-ufRm3SxuGe .item:focus,
.cid-ufRm3SxuGe span:focus {
  outline: none;
}
.cid-ufRm3SxuGe .item-wrapper {
  position: relative;
}
.cid-ufRm3SxuGe .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufRm3SxuGe .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufRm3SxuGe .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ufRm3SxuGe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufRm3SxuGe .mbr-section-title {
  color: #232323;
}
.cid-ufRm3SxuGe .mbr-text,
.cid-ufRm3SxuGe .mbr-section-btn {
  text-align: left;
}
.cid-ufRm3SxuGe .item-title {
  text-align: left;
}
.cid-ufRm3SxuGe .item-subtitle {
  text-align: left;
}
.cid-ufRm3SxuGe .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ufRm3SxuGe .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ufRm3SxuGe .embla__button--next,
.cid-ufRm3SxuGe .embla__button--prev {
  display: flex;
}
.cid-ufRm3SxuGe .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ufRm3SxuGe .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ufRm3SxuGe .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ufRm3SxuGe .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ufRm3SxuGe .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ufRm3SxuGe .embla__button {
    top: auto;
  }
}
.cid-ufRm3SxuGe .embla {
  position: relative;
  width: 100%;
}
.cid-ufRm3SxuGe .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ufRm3SxuGe .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ufRm3SxuGe .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ufRm3SxuGe .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ufRn9VmfxQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufRn9VmfxQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-ufRn9VmfxQ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ufRn9VmfxQ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ufRn9VmfxQ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ufRn9VmfxQ .card-wrapper {
    padding: 4rem;
  }
}
.cid-ufRn9VmfxQ H4 {
  color: #ffffff;
}
.cid-ufRnkTE9Nv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ufRnkTE9Nv img,
.cid-ufRnkTE9Nv .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-ufRnkTE9Nv .item:focus,
.cid-ufRnkTE9Nv span:focus {
  outline: none;
}
.cid-ufRnkTE9Nv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ufRnkTE9Nv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ufRnkTE9Nv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ufRnkTE9Nv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ufRnkTE9Nv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ufRnkTE9Nv .mbr-section-title {
  color: #232323;
}
.cid-ufRnkTE9Nv .mbr-text,
.cid-ufRnkTE9Nv .mbr-section-btn {
  text-align: left;
}
.cid-ufRnkTE9Nv .item-title {
  text-align: left;
  color: #000000;
}
.cid-ufRnkTE9Nv .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-ufRmERDxX4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ufRmERDxX4 .content {
    text-align: center;
  }
  .cid-ufRmERDxX4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ufRmERDxX4 .map {
  height: 18.75rem;
}
.cid-ufRmERDxX4 .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ufRmERDxX4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ufRmERDxX4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ufRmERDxX4 .google-map {
  height: 25rem;
  position: relative;
}
.cid-ufRmERDxX4 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ufRmERDxX4 .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-ufRmERDxX4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ufRmERDxX4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ufRmERDxX4 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ufRmERDxX4 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ufRmERDxX4 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ufRmERDxX4 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ufRmERDxX4 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufRmERDxX4 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufRmERDxX4 .list {
  list-style-type: none;
  padding: 0;
}
.cid-ug2hoTZy7f {
  z-index: 1000;
  width: 100%;
}
.cid-ug2hoTZy7f .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ug2hoTZy7f nav.navbar {
  position: fixed;
}
.cid-ug2hoTZy7f .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ug2hoTZy7f .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ug2hoTZy7f .nav-item {
    height: auto;
  }
}
.cid-ug2hoTZy7f .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ug2hoTZy7f .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-ug2hoTZy7f .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug2hoTZy7f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug2hoTZy7f .dropdown-item:hover,
.cid-ug2hoTZy7f .dropdown-item:focus {
  background: white !important;
}
.cid-ug2hoTZy7f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug2hoTZy7f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug2hoTZy7f .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ug2hoTZy7f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug2hoTZy7f .nav-link {
  position: relative;
}
.cid-ug2hoTZy7f .container {
  display: flex;
  margin: auto;
}
.cid-ug2hoTZy7f .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ug2hoTZy7f .dropdown-menu,
.cid-ug2hoTZy7f .navbar.opened {
  background: #fafafa !important;
}
.cid-ug2hoTZy7f .nav-item:focus,
.cid-ug2hoTZy7f .nav-link:focus {
  outline: none;
}
.cid-ug2hoTZy7f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug2hoTZy7f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug2hoTZy7f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ug2hoTZy7f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug2hoTZy7f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug2hoTZy7f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug2hoTZy7f .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ug2hoTZy7f .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ug2hoTZy7f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug2hoTZy7f .navbar .navbar-logo img {
  width: auto;
}
.cid-ug2hoTZy7f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug2hoTZy7f .navbar.collapsed {
  justify-content: center;
}
.cid-ug2hoTZy7f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug2hoTZy7f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug2hoTZy7f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ug2hoTZy7f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug2hoTZy7f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug2hoTZy7f .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-ug2hoTZy7f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug2hoTZy7f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug2hoTZy7f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug2hoTZy7f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug2hoTZy7f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug2hoTZy7f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug2hoTZy7f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug2hoTZy7f .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-ug2hoTZy7f .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ug2hoTZy7f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug2hoTZy7f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug2hoTZy7f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug2hoTZy7f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug2hoTZy7f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ug2hoTZy7f .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ug2hoTZy7f .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ug2hoTZy7f .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ug2hoTZy7f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug2hoTZy7f .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-ug2hoTZy7f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug2hoTZy7f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug2hoTZy7f .dropdown-item.active,
.cid-ug2hoTZy7f .dropdown-item:active {
  background-color: transparent;
}
.cid-ug2hoTZy7f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug2hoTZy7f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug2hoTZy7f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug2hoTZy7f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ug2hoTZy7f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug2hoTZy7f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug2hoTZy7f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug2hoTZy7f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug2hoTZy7f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug2hoTZy7f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ug2hoTZy7f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug2hoTZy7f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2hoTZy7f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2hoTZy7f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug2hoTZy7f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2hoTZy7f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug2hoTZy7f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug2hoTZy7f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2hoTZy7f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug2hoTZy7f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug2hoTZy7f .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-ug2hoTZy7f .navbar {
    height: 70px;
  }
  .cid-ug2hoTZy7f .navbar.opened {
    height: auto;
  }
  .cid-ug2hoTZy7f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug2hoUvIi9 {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-ug2hoUvIi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2hoUvIi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2hoUvIi9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-ug2hoUvIi9 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-ug2hoUvIi9 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-ug2jSiIXhH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-ug2jSiIXhH .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-ug2jSiIXhH .card .card-img img {
  transition: all 0.5s;
}
.cid-ug2jSiIXhH .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-ug2jSiIXhH .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-ug2jSiIXhH .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-ug2jSiIXhH .first-card {
  display: block;
}
.cid-ug2jSiIXhH .first-card .card-wrapper {
  height: 100%;
}
.cid-ug2jSiIXhH .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-ug2jSiIXhH .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ug2jSiIXhH .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-ug2jSiIXhH .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-ug2jSiIXhH .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-ug2jSiIXhH .first-row,
.cid-ug2jSiIXhH .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-ug2jSiIXhH .first-row .card .card-wrapper,
.cid-ug2jSiIXhH .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-ug2jSiIXhH .first-row .card .card-wrapper .card-img,
.cid-ug2jSiIXhH .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-ug2jSiIXhH .first-row .card .card-wrapper .card-img img,
.cid-ug2jSiIXhH .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-ug2jSiIXhH .first-row,
  .cid-ug2jSiIXhH .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ug2jSiIXhH .first-row .card .card-wrapper .card-img,
  .cid-ug2jSiIXhH .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ug2jSiIXhH .first-row .card .card-wrapper .card-img img,
  .cid-ug2jSiIXhH .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-ug2jSiIXhH .first-row .caption,
.cid-ug2jSiIXhH .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-ug2jSiIXhH .first-row .caption .price,
.cid-ug2jSiIXhH .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-ug2jSiIXhH .first-row {
  padding-bottom: 1rem;
}
.cid-ug2jSiIXhH .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-ug2jSiIXhH .first-card,
  .cid-ug2jSiIXhH .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ug2jSiIXhH .first-card {
    padding-bottom: 2rem;
  }
  .cid-ug2jSiIXhH .only-first-row {
    height: 100%;
  }
}
.cid-ug2IjjY1aY {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-ug2IjjY1aY {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ug2IjjY1aY {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
  }
}
.cid-ug2IjjY1aY .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-ug2IjjY1aY .f-row {
    flex-direction: column;
  }
}
.cid-ug2IjjY1aY .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-ug2IjjY1aY .f-item {
    flex: 1 1 100%;
  }
}
.cid-ug2IjjY1aY .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ug2IjjY1aY .image-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 500px) {
  .cid-ug2IjjY1aY .image-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-ug2IjjY1aY .image-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-ug2IjjY1aY .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ug2IjjY1aY .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-ug2IjjY1aY .f-row {
    flex-direction: column;
  }
}
.cid-ug2IjjY1aY .mbr-text,
.cid-ug2IjjY1aY .mbr-section-btn {
  text-align: left;
}
.cid-ug2IjjY1aY .card-title {
  text-align: left;
}
.cid-ug2lKgMJmn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ug2lKgMJmn img,
.cid-ug2lKgMJmn .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ug2lKgMJmn .item:focus,
.cid-ug2lKgMJmn span:focus {
  outline: none;
}
.cid-ug2lKgMJmn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ug2lKgMJmn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ug2lKgMJmn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ug2lKgMJmn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ug2lKgMJmn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ug2lKgMJmn .mbr-section-title {
  color: #232323;
}
.cid-ug2lKgMJmn .mbr-text,
.cid-ug2lKgMJmn .mbr-section-btn {
  text-align: left;
}
.cid-ug2lKgMJmn .item-title {
  text-align: left;
}
.cid-ug2lKgMJmn .item-subtitle {
  text-align: left;
}
.cid-ugH9Ozixfy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ugH9Ozixfy img {
  width: 100%;
  margin: auto;
}
.cid-ugH9Ozixfy .card {
  transition: all 0.3s;
  padding: 1rem;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ugH9Ozixfy .card {
    max-width: 15.5%;
  }
}
.cid-ug2hoWOtoc {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ug2hoWOtoc .content {
    text-align: center;
  }
  .cid-ug2hoWOtoc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ug2hoWOtoc .map {
  height: 18.75rem;
}
.cid-ug2hoWOtoc .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ug2hoWOtoc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ug2hoWOtoc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ug2hoWOtoc .google-map {
  height: 25rem;
  position: relative;
}
.cid-ug2hoWOtoc .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ug2hoWOtoc .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-ug2hoWOtoc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ug2hoWOtoc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ug2hoWOtoc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ug2hoWOtoc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ug2hoWOtoc .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ug2hoWOtoc .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ug2hoWOtoc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ug2hoWOtoc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ug2hoWOtoc .list {
  list-style-type: none;
  padding: 0;
}
.cid-ug2MIYtv5m {
  z-index: 1000;
  width: 100%;
}
.cid-ug2MIYtv5m .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ug2MIYtv5m nav.navbar {
  position: fixed;
}
.cid-ug2MIYtv5m .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ug2MIYtv5m .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ug2MIYtv5m .nav-item {
    height: auto;
  }
}
.cid-ug2MIYtv5m .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ug2MIYtv5m .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-ug2MIYtv5m .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ug2MIYtv5m .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ug2MIYtv5m .dropdown-item:hover,
.cid-ug2MIYtv5m .dropdown-item:focus {
  background: white !important;
}
.cid-ug2MIYtv5m .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ug2MIYtv5m .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ug2MIYtv5m .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ug2MIYtv5m .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ug2MIYtv5m .nav-link {
  position: relative;
}
.cid-ug2MIYtv5m .container {
  display: flex;
  margin: auto;
}
.cid-ug2MIYtv5m .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ug2MIYtv5m .dropdown-menu,
.cid-ug2MIYtv5m .navbar.opened {
  background: #fafafa !important;
}
.cid-ug2MIYtv5m .nav-item:focus,
.cid-ug2MIYtv5m .nav-link:focus {
  outline: none;
}
.cid-ug2MIYtv5m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ug2MIYtv5m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug2MIYtv5m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ug2MIYtv5m .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ug2MIYtv5m .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ug2MIYtv5m .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ug2MIYtv5m .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ug2MIYtv5m .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ug2MIYtv5m .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ug2MIYtv5m .navbar .navbar-logo img {
  width: auto;
}
.cid-ug2MIYtv5m .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ug2MIYtv5m .navbar.collapsed {
  justify-content: center;
}
.cid-ug2MIYtv5m .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ug2MIYtv5m .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ug2MIYtv5m .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ug2MIYtv5m .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ug2MIYtv5m .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ug2MIYtv5m .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-ug2MIYtv5m .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ug2MIYtv5m .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ug2MIYtv5m .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ug2MIYtv5m .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ug2MIYtv5m .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ug2MIYtv5m .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ug2MIYtv5m .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ug2MIYtv5m .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-ug2MIYtv5m .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ug2MIYtv5m .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ug2MIYtv5m .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ug2MIYtv5m .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ug2MIYtv5m .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ug2MIYtv5m .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ug2MIYtv5m .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ug2MIYtv5m .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ug2MIYtv5m .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ug2MIYtv5m .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ug2MIYtv5m .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-ug2MIYtv5m .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ug2MIYtv5m .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ug2MIYtv5m .dropdown-item.active,
.cid-ug2MIYtv5m .dropdown-item:active {
  background-color: transparent;
}
.cid-ug2MIYtv5m .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ug2MIYtv5m .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ug2MIYtv5m .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ug2MIYtv5m .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ug2MIYtv5m .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ug2MIYtv5m .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug2MIYtv5m ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ug2MIYtv5m .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ug2MIYtv5m button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ug2MIYtv5m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ug2MIYtv5m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ug2MIYtv5m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2MIYtv5m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ug2MIYtv5m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ug2MIYtv5m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2MIYtv5m nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ug2MIYtv5m nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ug2MIYtv5m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ug2MIYtv5m .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ug2MIYtv5m a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ug2MIYtv5m .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-ug2MIYtv5m .navbar {
    height: 70px;
  }
  .cid-ug2MIYtv5m .navbar.opened {
    height: auto;
  }
  .cid-ug2MIYtv5m .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ug2MIZ81pt {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-ug2MIZ81pt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug2MIZ81pt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug2MIZ81pt .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-ug2MIZ81pt .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-ug2MIZ81pt .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-ugdioZP88P {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ugdioZP88P .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-ugdioZP88P .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-ugdioZP88P .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-ugdioZP88P .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-ugdioZP88P .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-ugdioZP88P .timelines-container {
  margin-top: 60px;
}
.cid-ugdioZP88P .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-ugdioZP88P .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-ugdioZP88P .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 500;
}
.cid-ugdioZP88P .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 22px;
  height: 22px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #353535;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -11px;
}
.cid-ugdioZP88P .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-ugdioZP88P .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-ugdioZP88P .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-ugdioZP88P .container-fluid {
  padding: 0 2rem;
}
.cid-ugdioZP88P .separline:before,
.cid-ugdioZP88P .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 2px;
  background-color: #353535;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-ugdioZP88P .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 2px;
  background-color: #353535;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-ugdioZP88P .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugdioZP88P .iconBackground {
    left: 0px !important;
    top: 33px;
  }
  .cid-ugdioZP88P .separline:before,
  .cid-ugdioZP88P .first-separline:before {
    left: 3px !important;
  }
  .cid-ugdioZP88P .separline:after {
    left: 3px !important;
    top: calc(102.4%);
  }
  .cid-ugdioZP88P .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-ugdioZP88P .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-ugdioZP88P .time-line-date-content p {
    float: left !important;
  }
  .cid-ugdioZP88P .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-ugdioZP88P .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-ugdioZP88P .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-ug2OIASt76 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ug2OIASt76 img,
.cid-ug2OIASt76 .item-img {
  width: 100%;
}
.cid-ug2OIASt76 .item:focus,
.cid-ug2OIASt76 span:focus {
  outline: none;
}
.cid-ug2OIASt76 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ug2OIASt76 .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ug2OIASt76 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ug2OIASt76 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ug2OIASt76 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ug2OIASt76 .mbr-section-title {
  color: #232323;
}
.cid-ug2OIASt76 .mbr-text,
.cid-ug2OIASt76 .mbr-section-btn {
  text-align: left;
}
.cid-ug2OIASt76 .item-title {
  text-align: left;
}
.cid-ug2OIASt76 .item-subtitle {
  text-align: center;
}
.cid-ug2MJ1hW7L {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ug2MJ1hW7L .content {
    text-align: center;
  }
  .cid-ug2MJ1hW7L .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ug2MJ1hW7L .map {
  height: 18.75rem;
}
.cid-ug2MJ1hW7L .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ug2MJ1hW7L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ug2MJ1hW7L .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ug2MJ1hW7L .google-map {
  height: 25rem;
  position: relative;
}
.cid-ug2MJ1hW7L .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ug2MJ1hW7L .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-ug2MJ1hW7L .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ug2MJ1hW7L .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ug2MJ1hW7L .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ug2MJ1hW7L .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ug2MJ1hW7L .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ug2MJ1hW7L .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ug2MJ1hW7L .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ug2MJ1hW7L .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ug2MJ1hW7L .list {
  list-style-type: none;
  padding: 0;
}
.cid-ugzqeGTMmz {
  z-index: 1000;
  width: 100%;
}
.cid-ugzqeGTMmz .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ugzqeGTMmz nav.navbar {
  position: fixed;
}
.cid-ugzqeGTMmz .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ugzqeGTMmz .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ugzqeGTMmz .nav-item {
    height: auto;
  }
}
.cid-ugzqeGTMmz .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ugzqeGTMmz .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-ugzqeGTMmz .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugzqeGTMmz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugzqeGTMmz .dropdown-item:hover,
.cid-ugzqeGTMmz .dropdown-item:focus {
  background: white !important;
}
.cid-ugzqeGTMmz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugzqeGTMmz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugzqeGTMmz .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ugzqeGTMmz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugzqeGTMmz .nav-link {
  position: relative;
}
.cid-ugzqeGTMmz .container {
  display: flex;
  margin: auto;
}
.cid-ugzqeGTMmz .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ugzqeGTMmz .dropdown-menu,
.cid-ugzqeGTMmz .navbar.opened {
  background: #fafafa !important;
}
.cid-ugzqeGTMmz .nav-item:focus,
.cid-ugzqeGTMmz .nav-link:focus {
  outline: none;
}
.cid-ugzqeGTMmz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugzqeGTMmz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugzqeGTMmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ugzqeGTMmz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugzqeGTMmz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugzqeGTMmz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugzqeGTMmz .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ugzqeGTMmz .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ugzqeGTMmz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugzqeGTMmz .navbar .navbar-logo img {
  width: auto;
}
.cid-ugzqeGTMmz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugzqeGTMmz .navbar.collapsed {
  justify-content: center;
}
.cid-ugzqeGTMmz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugzqeGTMmz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugzqeGTMmz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ugzqeGTMmz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugzqeGTMmz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugzqeGTMmz .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-ugzqeGTMmz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugzqeGTMmz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugzqeGTMmz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugzqeGTMmz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugzqeGTMmz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugzqeGTMmz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugzqeGTMmz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugzqeGTMmz .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-ugzqeGTMmz .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ugzqeGTMmz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugzqeGTMmz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugzqeGTMmz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugzqeGTMmz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugzqeGTMmz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugzqeGTMmz .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ugzqeGTMmz .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ugzqeGTMmz .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ugzqeGTMmz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugzqeGTMmz .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-ugzqeGTMmz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugzqeGTMmz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugzqeGTMmz .dropdown-item.active,
.cid-ugzqeGTMmz .dropdown-item:active {
  background-color: transparent;
}
.cid-ugzqeGTMmz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugzqeGTMmz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugzqeGTMmz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugzqeGTMmz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ugzqeGTMmz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugzqeGTMmz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugzqeGTMmz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugzqeGTMmz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugzqeGTMmz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugzqeGTMmz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugzqeGTMmz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugzqeGTMmz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugzqeGTMmz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugzqeGTMmz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugzqeGTMmz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugzqeGTMmz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugzqeGTMmz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugzqeGTMmz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugzqeGTMmz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugzqeGTMmz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugzqeGTMmz .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-ugzqeGTMmz .navbar {
    height: 70px;
  }
  .cid-ugzqeGTMmz .navbar.opened {
    height: auto;
  }
  .cid-ugzqeGTMmz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugzqeHczHq {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-ugzqeHczHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugzqeHczHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugzqeHczHq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-ugzqeHczHq .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-ugzqeHczHq .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-ugzqp8C4bt {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugzqp8C4bt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugzqp8C4bt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugzqp8C4bt .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugzqp8C4bt .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-ugGDoes7vo {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-ugGDoes7vo H1 {
  color: #000000;
}
.cid-ugGDoes7vo .mbr-text,
.cid-ugGDoes7vo .mbr-section-btn {
  color: #353535;
}
.cid-ugGDoes7vo .img-box {
  position: relative;
}
.cid-ugGDoes7vo .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-ugGDoes7vo .img1 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 1;
}
.cid-ugGDoes7vo .img2 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 2;
}
.cid-ugGDoes7vo img {
  width: 60%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ugGDoes7vo .img-box {
    height: 500px;
  }
  .cid-ugGDoes7vo .img1 {
    right: 1rem;
  }
  .cid-ugGDoes7vo .img2 {
    left: 1rem;
  }
  .cid-ugGDoes7vo img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-ugGDoes7vo .card-text {
    display: flex;
    align-items: center;
  }
  .cid-ugGDoes7vo .count {
    padding-right: 16px;
  }
  .cid-ugGDoes7vo img {
    width: 60%;
  }
  .cid-ugGDoes7vo .img-box {
    height: 300px;
  }
  .cid-ugGDoes7vo .card {
    flex-direction: column;
    align-items: center;
    padding: 0!important;
  }
}
.cid-ugGDoes7vo h3,
.cid-ugGDoes7vo h4 {
  margin: 0;
  padding: 0;
}
.cid-ugGDoes7vo H3 {
  color: #000000;
  text-align: center;
}
.cid-ugGDoes7vo H4 {
  color: #716c80;
  text-align: center;
}
.cid-ugGDoes7vo .card-title {
  color: #57468b;
}
.cid-ugGDoes7vo .count-title {
  color: #353535;
}
.cid-ugGDoes7vo H2 {
  color: #57468b;
}
.cid-ugGDoes7vo .card-img {
  width: auto;
}
.cid-ugGFe1GoE6 {
  padding-top: 180px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-ugGFe1GoE6 H1 {
  color: #000000;
}
.cid-ugGFe1GoE6 .mbr-text,
.cid-ugGFe1GoE6 .mbr-section-btn {
  color: #353535;
}
.cid-ugGFe1GoE6 .img-box {
  position: relative;
}
.cid-ugGFe1GoE6 .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-ugGFe1GoE6 .img1 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 1;
}
.cid-ugGFe1GoE6 .img2 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 2;
}
.cid-ugGFe1GoE6 img {
  width: 60%;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-ugGFe1GoE6 .img-box {
    height: 500px;
  }
  .cid-ugGFe1GoE6 .img1 {
    right: 1rem;
  }
  .cid-ugGFe1GoE6 .img2 {
    left: 1rem;
  }
  .cid-ugGFe1GoE6 img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-ugGFe1GoE6 .card-text {
    display: flex;
    align-items: center;
  }
  .cid-ugGFe1GoE6 .count {
    padding-right: 16px;
  }
  .cid-ugGFe1GoE6 img {
    width: 60%;
  }
  .cid-ugGFe1GoE6 .img-box {
    height: 300px;
  }
  .cid-ugGFe1GoE6 .card {
    flex-direction: column;
    align-items: center;
    padding: 0!important;
  }
}
.cid-ugGFe1GoE6 h3,
.cid-ugGFe1GoE6 h4 {
  margin: 0;
  padding: 0;
}
.cid-ugGFe1GoE6 H3 {
  color: #000000;
  text-align: center;
}
.cid-ugGFe1GoE6 H4 {
  color: #716c80;
  text-align: center;
}
.cid-ugGFe1GoE6 .card-title {
  color: #57468b;
}
.cid-ugGFe1GoE6 .count-title {
  color: #353535;
}
.cid-ugGFe1GoE6 H2 {
  color: #57468b;
}
.cid-ugGFe1GoE6 .card-img {
  width: auto;
}
.cid-ugGGE70xk5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-ugGGE70xk5 .count {
  text-align: left;
  word-break: inherit;
}
.cid-ugGGE70xk5 .mbr-section-subtitle {
  color: #353535;
}
.cid-ugGGE70xk5 .mbr-content-title {
  color: #353535;
}
.cid-ugGGE70xk5 .panel-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ugGGE70xk5 .card {
  word-wrap: break-word;
}
.cid-ugGGE70xk5 .mbr-iconfont {
  font-size: 50px;
  color: #232323;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-ugGGE70xk5 .panel-item {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugzqeI6v4m {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ugzqeI6v4m img,
.cid-ugzqeI6v4m .item-img {
  width: 100%;
}
.cid-ugzqeI6v4m .item:focus,
.cid-ugzqeI6v4m span:focus {
  outline: none;
}
.cid-ugzqeI6v4m .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugzqeI6v4m .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugzqeI6v4m .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugzqeI6v4m .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugzqeI6v4m .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugzqeI6v4m .mbr-section-title {
  color: #232323;
}
.cid-ugzqeI6v4m .mbr-text,
.cid-ugzqeI6v4m .mbr-section-btn {
  text-align: left;
}
.cid-ugzqeI6v4m .item-title {
  text-align: left;
}
.cid-ugzqeI6v4m .item-subtitle {
  text-align: center;
}
.cid-ugH77hupR6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-ugH77hupR6 .count {
  text-align: left;
  word-break: inherit;
}
.cid-ugH77hupR6 .mbr-section-subtitle {
  color: #353535;
}
.cid-ugH77hupR6 .mbr-content-title {
  color: #353535;
}
.cid-ugH77hupR6 .panel-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ugH77hupR6 .card {
  word-wrap: break-word;
}
.cid-ugH77hupR6 .mbr-iconfont {
  font-size: 50px;
  color: #232323;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-ugH77hupR6 .panel-item {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugzqeIsLd6 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ugzqeIsLd6 .content {
    text-align: center;
  }
  .cid-ugzqeIsLd6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ugzqeIsLd6 .map {
  height: 18.75rem;
}
.cid-ugzqeIsLd6 .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ugzqeIsLd6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ugzqeIsLd6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ugzqeIsLd6 .google-map {
  height: 25rem;
  position: relative;
}
.cid-ugzqeIsLd6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ugzqeIsLd6 .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-ugzqeIsLd6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ugzqeIsLd6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugzqeIsLd6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ugzqeIsLd6 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ugzqeIsLd6 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ugzqeIsLd6 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ugzqeIsLd6 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugzqeIsLd6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugzqeIsLd6 .list {
  list-style-type: none;
  padding: 0;
}
.cid-ugHdbCLrMB {
  z-index: 1000;
  width: 100%;
}
.cid-ugHdbCLrMB .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ugHdbCLrMB nav.navbar {
  position: fixed;
}
.cid-ugHdbCLrMB .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ugHdbCLrMB .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ugHdbCLrMB .nav-item {
    height: auto;
  }
}
.cid-ugHdbCLrMB .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ugHdbCLrMB .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-ugHdbCLrMB .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugHdbCLrMB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugHdbCLrMB .dropdown-item:hover,
.cid-ugHdbCLrMB .dropdown-item:focus {
  background: white !important;
}
.cid-ugHdbCLrMB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugHdbCLrMB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugHdbCLrMB .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ugHdbCLrMB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugHdbCLrMB .nav-link {
  position: relative;
}
.cid-ugHdbCLrMB .container {
  display: flex;
  margin: auto;
}
.cid-ugHdbCLrMB .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ugHdbCLrMB .dropdown-menu,
.cid-ugHdbCLrMB .navbar.opened {
  background: #fafafa !important;
}
.cid-ugHdbCLrMB .nav-item:focus,
.cid-ugHdbCLrMB .nav-link:focus {
  outline: none;
}
.cid-ugHdbCLrMB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugHdbCLrMB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugHdbCLrMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ugHdbCLrMB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugHdbCLrMB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugHdbCLrMB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugHdbCLrMB .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ugHdbCLrMB .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ugHdbCLrMB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugHdbCLrMB .navbar .navbar-logo img {
  width: auto;
}
.cid-ugHdbCLrMB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugHdbCLrMB .navbar.collapsed {
  justify-content: center;
}
.cid-ugHdbCLrMB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugHdbCLrMB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugHdbCLrMB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ugHdbCLrMB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugHdbCLrMB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugHdbCLrMB .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-ugHdbCLrMB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugHdbCLrMB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugHdbCLrMB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugHdbCLrMB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugHdbCLrMB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugHdbCLrMB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugHdbCLrMB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugHdbCLrMB .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-ugHdbCLrMB .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ugHdbCLrMB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugHdbCLrMB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugHdbCLrMB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugHdbCLrMB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugHdbCLrMB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugHdbCLrMB .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ugHdbCLrMB .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ugHdbCLrMB .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ugHdbCLrMB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugHdbCLrMB .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-ugHdbCLrMB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugHdbCLrMB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugHdbCLrMB .dropdown-item.active,
.cid-ugHdbCLrMB .dropdown-item:active {
  background-color: transparent;
}
.cid-ugHdbCLrMB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugHdbCLrMB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugHdbCLrMB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugHdbCLrMB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ugHdbCLrMB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugHdbCLrMB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugHdbCLrMB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugHdbCLrMB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugHdbCLrMB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugHdbCLrMB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugHdbCLrMB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugHdbCLrMB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugHdbCLrMB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugHdbCLrMB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugHdbCLrMB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugHdbCLrMB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugHdbCLrMB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugHdbCLrMB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugHdbCLrMB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugHdbCLrMB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugHdbCLrMB .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-ugHdbCLrMB .navbar {
    height: 70px;
  }
  .cid-ugHdbCLrMB .navbar.opened {
    height: auto;
  }
  .cid-ugHdbCLrMB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugHdWrB5hG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bg3-2000x1333.jpg");
}
.cid-ugHdWrB5hG .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #353535;
  margin-bottom: 2rem;
}
.cid-ugHdWrB5hG .link {
  opacity: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-ugHdWrB5hG img {
  border-radius: 10px;
}
.cid-ugHdWrB5hG .date {
  margin: 20px 0;
  color: #3F424E;
}
.cid-ugHdWrB5hG .mbr-section-title {
  color: #000000;
}
.cid-ugHdWrB5hG .mbr-buttons {
  background-color: #353535;
}
.cid-ugHdWrB5hG .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-ugHdWrB5hG a {
  text-transform: uppercase;
  color: #353535;
}
.cid-ugHdWrB5hG svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-ugHdWrB5hG .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-ugHdWrB5hG .card-heading {
  line-height: 1.2;
  margin: 0px;
}
.cid-ugHdWrB5hG .item-wrapper:hover {
  cursor: pointer;
}
.cid-ugHdWrB5hG .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-ugHdWrB5hG .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-ugHdWrB5hG .header {
    margin-bottom: 20px;
  }
  .cid-ugHdWrB5hG .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-ugHdWrB5hG .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-ugHdWrB5hG .link {
    margin-bottom: 40px;
  }
}
.cid-ugHdWrB5hG .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-ugHdbGZzLU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ugHdbGZzLU .content {
    text-align: center;
  }
  .cid-ugHdbGZzLU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ugHdbGZzLU .map {
  height: 18.75rem;
}
.cid-ugHdbGZzLU .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ugHdbGZzLU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ugHdbGZzLU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ugHdbGZzLU .google-map {
  height: 25rem;
  position: relative;
}
.cid-ugHdbGZzLU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ugHdbGZzLU .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-ugHdbGZzLU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ugHdbGZzLU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugHdbGZzLU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ugHdbGZzLU .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ugHdbGZzLU .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ugHdbGZzLU .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ugHdbGZzLU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugHdbGZzLU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugHdbGZzLU .list {
  list-style-type: none;
  padding: 0;
}
.cid-ugHloVT2Uz {
  z-index: 1000;
  width: 100%;
}
.cid-ugHloVT2Uz .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-ugHloVT2Uz nav.navbar {
  position: fixed;
}
.cid-ugHloVT2Uz .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-ugHloVT2Uz .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-ugHloVT2Uz .nav-item {
    height: auto;
  }
}
.cid-ugHloVT2Uz .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ugHloVT2Uz .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-ugHloVT2Uz .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugHloVT2Uz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugHloVT2Uz .dropdown-item:hover,
.cid-ugHloVT2Uz .dropdown-item:focus {
  background: white !important;
}
.cid-ugHloVT2Uz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugHloVT2Uz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugHloVT2Uz .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-ugHloVT2Uz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugHloVT2Uz .nav-link {
  position: relative;
}
.cid-ugHloVT2Uz .container {
  display: flex;
  margin: auto;
}
.cid-ugHloVT2Uz .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-ugHloVT2Uz .dropdown-menu,
.cid-ugHloVT2Uz .navbar.opened {
  background: #fafafa !important;
}
.cid-ugHloVT2Uz .nav-item:focus,
.cid-ugHloVT2Uz .nav-link:focus {
  outline: none;
}
.cid-ugHloVT2Uz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugHloVT2Uz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugHloVT2Uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-ugHloVT2Uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugHloVT2Uz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugHloVT2Uz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugHloVT2Uz .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-ugHloVT2Uz .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-ugHloVT2Uz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugHloVT2Uz .navbar .navbar-logo img {
  width: auto;
}
.cid-ugHloVT2Uz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugHloVT2Uz .navbar.collapsed {
  justify-content: center;
}
.cid-ugHloVT2Uz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugHloVT2Uz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugHloVT2Uz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-ugHloVT2Uz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugHloVT2Uz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugHloVT2Uz .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-ugHloVT2Uz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugHloVT2Uz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugHloVT2Uz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugHloVT2Uz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugHloVT2Uz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugHloVT2Uz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugHloVT2Uz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugHloVT2Uz .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-ugHloVT2Uz .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-ugHloVT2Uz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugHloVT2Uz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugHloVT2Uz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugHloVT2Uz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugHloVT2Uz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ugHloVT2Uz .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-ugHloVT2Uz .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-ugHloVT2Uz .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-ugHloVT2Uz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugHloVT2Uz .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-ugHloVT2Uz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugHloVT2Uz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugHloVT2Uz .dropdown-item.active,
.cid-ugHloVT2Uz .dropdown-item:active {
  background-color: transparent;
}
.cid-ugHloVT2Uz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugHloVT2Uz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugHloVT2Uz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugHloVT2Uz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-ugHloVT2Uz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugHloVT2Uz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugHloVT2Uz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugHloVT2Uz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugHloVT2Uz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugHloVT2Uz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-ugHloVT2Uz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugHloVT2Uz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugHloVT2Uz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugHloVT2Uz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugHloVT2Uz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugHloVT2Uz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugHloVT2Uz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugHloVT2Uz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugHloVT2Uz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugHloVT2Uz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugHloVT2Uz .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-ugHloVT2Uz .navbar {
    height: 70px;
  }
  .cid-ugHloVT2Uz .navbar.opened {
    height: auto;
  }
  .cid-ugHloVT2Uz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugHmfLkBuy {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/bg1-2000x2000.jpg");
}
.cid-ugHmfLkBuy .form-group {
  text-align: left;
  min-height: 0px;
  border: 0px solid #ccc;
  border-radius: 5px;
}
.cid-ugHmfLkBuy .jq-selectbox li.selected {
  background-color: #ffa500;
}
.cid-ugHmfLkBuy .jq-selectbox li:hover {
  background-color: #ffa500;
}
.cid-ugHmfLkBuy .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffa500;
}
.cid-ugHmfLkBuy .jq-selectbox__select {
  padding: 20px 25px !important;
}
.cid-ugHmfLkBuy .jq-selectbox__trigger-arrow {
  right: 20px !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}
.cid-ugHmfLkBuy .form-control {
  padding: 0;
  line-height: 1.43 !important;
}
.cid-ugHmfLkBuy .form-control[name='message'] {
  padding: 20px 25px;
}
.cid-ugHmfLkBuy .form-control[name='message']:focus {
  outline: none;
  box-shadow: 0;
}
.cid-ugHmfLkBuy .form-control[name='message']:active {
  outline: none;
  box-shadow: 0;
}
.cid-ugHmfLkBuy .mbr-iconfont-btn {
  margin: 0;
}
.cid-ugHmfLkBuy .jq-selectbox__dropdown {
  top: 65px !important;
}
.cid-ugHmfLkBuy .jq-selectbox__dropdown li {
  background-color: #fff;
}
.cid-ugHmfLkBuy .input-group-btn .btn {
  margin: 0;
  padding: 1.1rem 20px;
  border-radius: 5px;
}
@media (max-width: 991px) {
  .cid-ugHmfLkBuy .align-left {
    text-align: center;
  }
  .cid-ugHmfLkBuy .form-group {
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .cid-ugHmfLkBuy .input-group-btn {
    margin: auto;
  }
}
.cid-ugHmfLkBuy LABEL {
  color: #ffffff;
}
.cid-ugHmywgJWc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ugHmywgJWc img,
.cid-ugHmywgJWc .item-img {
  width: 100%;
}
.cid-ugHmywgJWc .item:focus,
.cid-ugHmywgJWc span:focus {
  outline: none;
}
.cid-ugHmywgJWc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugHmywgJWc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugHmywgJWc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugHmywgJWc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugHmywgJWc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugHmywgJWc .mbr-section-title {
  color: #232323;
}
.cid-ugHmywgJWc .mbr-text,
.cid-ugHmywgJWc .mbr-section-btn {
  text-align: left;
}
.cid-ugHmywgJWc .item-title {
  text-align: left;
}
.cid-ugHmywgJWc .item-subtitle {
  text-align: center;
}
.cid-ugHloWToKZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-ugHloWToKZ .content {
    text-align: center;
  }
  .cid-ugHloWToKZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ugHloWToKZ .map {
  height: 18.75rem;
}
.cid-ugHloWToKZ .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-ugHloWToKZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ugHloWToKZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-ugHloWToKZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-ugHloWToKZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-ugHloWToKZ .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-ugHloWToKZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ugHloWToKZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ugHloWToKZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ugHloWToKZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ugHloWToKZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-ugHloWToKZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-ugHloWToKZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ugHloWToKZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ugHloWToKZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-uhk7OA7ru9 {
  z-index: 1000;
  width: 100%;
}
.cid-uhk7OA7ru9 .navbar-collapse {
  transition: none;
  min-height: 100px;
}
.cid-uhk7OA7ru9 nav.navbar {
  position: fixed;
}
.cid-uhk7OA7ru9 .nav-item {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cid-uhk7OA7ru9 .nav-item:hover {
  background: white;
}
@media (max-width: 992px) {
  .cid-uhk7OA7ru9 .nav-item {
    height: auto;
  }
}
.cid-uhk7OA7ru9 .navbar-nav {
  margin: auto;
  height: 100%!important;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uhk7OA7ru9 .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-uhk7OA7ru9 .dropdown-menu {
  padding: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uhk7OA7ru9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uhk7OA7ru9 .dropdown-item:hover,
.cid-uhk7OA7ru9 .dropdown-item:focus {
  background: white !important;
}
.cid-uhk7OA7ru9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhk7OA7ru9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhk7OA7ru9 .nav-dropdown .link {
  padding: 0.6em .6em !important;
  margin: 0 0.6em !important;
}
.cid-uhk7OA7ru9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhk7OA7ru9 .nav-link {
  position: relative;
}
.cid-uhk7OA7ru9 .container {
  display: flex;
  margin: auto;
}
.cid-uhk7OA7ru9 .iconfont-wrapper {
  color: #ffa500 !important;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background: #ffffff;
  margin: 0 0.3rem;
  border-radius: 10px;
}
.cid-uhk7OA7ru9 .dropdown-menu,
.cid-uhk7OA7ru9 .navbar.opened {
  background: #fafafa !important;
}
.cid-uhk7OA7ru9 .nav-item:focus,
.cid-uhk7OA7ru9 .nav-link:focus {
  outline: none;
}
.cid-uhk7OA7ru9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhk7OA7ru9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhk7OA7ru9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  vertical-align: sub;
}
.cid-uhk7OA7ru9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhk7OA7ru9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhk7OA7ru9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhk7OA7ru9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fafafa;
  background: none;
}
.cid-uhk7OA7ru9 .navbar.opened {
  transition: all 0.3s;
  background: #fafafa !important;
}
.cid-uhk7OA7ru9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhk7OA7ru9 .navbar .navbar-logo img {
  width: auto;
}
.cid-uhk7OA7ru9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhk7OA7ru9 .navbar.collapsed {
  justify-content: center;
}
.cid-uhk7OA7ru9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhk7OA7ru9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhk7OA7ru9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.3rem);
  }
}
.cid-uhk7OA7ru9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhk7OA7ru9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhk7OA7ru9 .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-uhk7OA7ru9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhk7OA7ru9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhk7OA7ru9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhk7OA7ru9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhk7OA7ru9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhk7OA7ru9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhk7OA7ru9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhk7OA7ru9 .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-uhk7OA7ru9 .navbar .navbar-logo img {
    height: 1.8rem !important;
  }
  .cid-uhk7OA7ru9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhk7OA7ru9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhk7OA7ru9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhk7OA7ru9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhk7OA7ru9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uhk7OA7ru9 .navbar.navbar-short {
  background: rgba(200, 200, 200, 0.5);
  min-height: 60px;
}
.cid-uhk7OA7ru9 .navbar.navbar-short .navbar-logo img {
  height: 2rem !important;
}
@media (max-width: 991px) {
  .cid-uhk7OA7ru9 .navbar.navbar-short .navbar-logo img {
    height: 1.5rem !important;
  }
}
.cid-uhk7OA7ru9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhk7OA7ru9 .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-uhk7OA7ru9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhk7OA7ru9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhk7OA7ru9 .dropdown-item.active,
.cid-uhk7OA7ru9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uhk7OA7ru9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhk7OA7ru9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhk7OA7ru9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhk7OA7ru9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uhk7OA7ru9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhk7OA7ru9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhk7OA7ru9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhk7OA7ru9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhk7OA7ru9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhk7OA7ru9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uhk7OA7ru9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhk7OA7ru9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhk7OA7ru9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhk7OA7ru9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhk7OA7ru9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhk7OA7ru9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhk7OA7ru9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhk7OA7ru9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhk7OA7ru9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhk7OA7ru9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhk7OA7ru9 .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-uhk7OA7ru9 .navbar {
    height: 70px;
  }
  .cid-uhk7OA7ru9 .navbar.opened {
    height: auto;
  }
  .cid-uhk7OA7ru9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uhkab9ZT2V {
  overflow: hidden !important;
  background-image: url("../../../assets/images/bg3-2000x1333.jpg");
}
.cid-uhkab9ZT2V .mbr-section-subtitle {
  font-weight: 400;
}
.cid-uhkab9ZT2V .mbr-section-title {
  padding-bottom: 2rem;
}
.cid-uhkab9ZT2V .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uhkab9ZT2V .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
  margin-top: 1rem;
}
.cid-uhkab9ZT2V .mbr-form {
  margin-bottom: 3rem;
}
.cid-uhkab9ZT2V .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  font-size: 18px;
  width: 100%;
}
.cid-uhkab9ZT2V .input-group-btn,
.cid-uhkab9ZT2V .form-group {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uhkab9ZT2V .input-group-btn .btn {
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0.65rem 2rem;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-uhkab9ZT2V .input-group-btn {
    width: 100%;
  }
  .cid-uhkab9ZT2V .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 767px) {
  .cid-uhkab9ZT2V .mbr-form {
    margin-bottom: 0;
  }
  .cid-uhkab9ZT2V .form-control {
    margin-bottom: 10px;
  }
  .cid-uhkab9ZT2V .form-group {
    max-width: 300px;
  }
  .cid-uhkab9ZT2V .mbr-form .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uhkab9ZT2V .form-group {
  margin: 0;
}
@media (min-width: 768px) {
  .cid-uhkab9ZT2V .mbr-form > * {
    margin: 0 0rem;
  }
  .cid-uhkab9ZT2V .input-group-btn,
  .cid-uhkab9ZT2V .form-group {
    padding: 0;
  }
  .cid-uhkab9ZT2V .input-group-btn .btn {
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
  }
  .cid-uhkab9ZT2V .form-group > .form-control:not(:last-child) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
  }
}
.cid-uhkaAlAJaX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uhkaAlAJaX h4,
.cid-uhkaAlAJaX h5 {
  text-align: center;
}
.cid-uhkaAlAJaX h5 {
  font-weight: 400;
}
.cid-uhkaAlAJaX p {
  text-align: center;
}
.cid-uhkaAlAJaX .img-icon {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}
.cid-uhkaAlAJaX .card-box {
  text-align: center;
}
.cid-uhkaAlAJaX .card-box:after {
  content: "";
  display: inline-block;
  width: 150px;
  height: 3px;
  background-color: #353535;
}
@media (min-width: 992px) {
  .cid-uhkaAlAJaX .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-uhk9GHJB2H {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-uhk9GHJB2H ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uhk9GHJB2H ul li {
  padding: 1rem 0;
}
.cid-uhk9GHJB2H ul li:hover {
  color: #353535;
}
.cid-uhk9GHJB2H .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uhk9GHJB2H .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uhk9GHJB2H .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uhk9GHJB2H .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-uhk9GHJB2H .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uhk9GHJB2H .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-uhk9GHJB2H .map {
    height: auto;
  }
}
.cid-uhk9GHJB2H .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uhk9GHJB2H .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-uhk9GHJB2H .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uhk9GHJB2H .social-list a:hover {
  opacity: 1;
}
.cid-uhk9GHJB2H .row-element,
.cid-uhk9GHJB2H .image-element {
  padding: 0;
}
.cid-uhk9GHJB2H .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uhk9GHJB2H .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #353535, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uhk9GHJB2H .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uhk9GHJB2H .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhk9GHJB2H .text-content {
    padding: 2rem 1rem;
  }
  .cid-uhk9GHJB2H .underline .line {
    height: 2px;
  }
  .cid-uhk9GHJB2H .mbr-title,
  .cid-uhk9GHJB2H .underline,
  .cid-uhk9GHJB2H .mbr-text,
  .cid-uhk9GHJB2H .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uhk9GHJB2H .mbr-title,
.cid-uhk9GHJB2H .underline {
  color: #ffffff;
}
.cid-uhk9GHJB2H .mbr-text,
.cid-uhk9GHJB2H .mbr-section-btn {
  color: #ffffff;
}
.cid-uhk9GHJB2H mbr-list LI {
  color: #ffffff;
}
.cid-uhk9GHJB2H mbr-list {
  text-align: center;
}
.cid-uhk9GHJB2H .mbr-list,
.cid-uhk9GHJB2H .social-list mbr-list {
  color: #ffffff;
}
#custom-html-2f {
  /* Type valid CSS here */
}
#custom-html-2f div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2f p {
  font-size: 60px;
  color: #777;
}
.cid-uhke5sDRzj {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-uhke5sDRzj ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uhke5sDRzj ul li {
  padding: 1rem 0;
}
.cid-uhke5sDRzj ul li:hover {
  color: #353535;
}
.cid-uhke5sDRzj .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uhke5sDRzj .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uhke5sDRzj .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-uhke5sDRzj .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uhke5sDRzj .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-uhke5sDRzj .map {
    height: auto;
  }
}
.cid-uhke5sDRzj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uhke5sDRzj .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-uhke5sDRzj .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uhke5sDRzj .social-list a:hover {
  opacity: 1;
}
.cid-uhke5sDRzj .row-element,
.cid-uhke5sDRzj .image-element {
  padding: 0;
}
.cid-uhke5sDRzj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uhke5sDRzj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #353535, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uhke5sDRzj .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uhke5sDRzj .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhke5sDRzj .text-content {
    padding: 2rem 1rem;
  }
  .cid-uhke5sDRzj .underline .line {
    height: 2px;
  }
  .cid-uhke5sDRzj .mbr-title,
  .cid-uhke5sDRzj .underline,
  .cid-uhke5sDRzj .mbr-text,
  .cid-uhke5sDRzj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uhke5sDRzj .mbr-title,
.cid-uhke5sDRzj .underline {
  color: #ffffff;
}
.cid-uhke5sDRzj .mbr-text,
.cid-uhke5sDRzj .mbr-section-btn {
  color: #ffffff;
}
.cid-uhke5sDRzj mbr-list LI {
  color: #ffffff;
}
.cid-uhke5sDRzj mbr-list {
  text-align: center;
}
.cid-uhke5sDRzj .mbr-list,
.cid-uhke5sDRzj .social-list mbr-list {
  color: #ffffff;
}
#custom-html-2g {
  /* Type valid CSS here */
}
#custom-html-2g div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2g p {
  font-size: 60px;
  color: #777;
}
.cid-uhkfDPy2aJ {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-uhkfDPy2aJ ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-uhkfDPy2aJ ul li {
  padding: 1rem 0;
}
.cid-uhkfDPy2aJ ul li:hover {
  color: #353535;
}
.cid-uhkfDPy2aJ .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-uhkfDPy2aJ .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-uhkfDPy2aJ .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-uhkfDPy2aJ .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-uhkfDPy2aJ .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uhkfDPy2aJ .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-uhkfDPy2aJ .map {
    height: auto;
  }
}
.cid-uhkfDPy2aJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uhkfDPy2aJ .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-uhkfDPy2aJ .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uhkfDPy2aJ .social-list a:hover {
  opacity: 1;
}
.cid-uhkfDPy2aJ .row-element,
.cid-uhkfDPy2aJ .image-element {
  padding: 0;
}
.cid-uhkfDPy2aJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-uhkfDPy2aJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #353535, #ff6666);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-uhkfDPy2aJ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-uhkfDPy2aJ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uhkfDPy2aJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-uhkfDPy2aJ .underline .line {
    height: 2px;
  }
  .cid-uhkfDPy2aJ .mbr-title,
  .cid-uhkfDPy2aJ .underline,
  .cid-uhkfDPy2aJ .mbr-text,
  .cid-uhkfDPy2aJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uhkfDPy2aJ .mbr-title,
.cid-uhkfDPy2aJ .underline {
  color: #ffffff;
}
.cid-uhkfDPy2aJ .mbr-text,
.cid-uhkfDPy2aJ .mbr-section-btn {
  color: #ffffff;
}
.cid-uhkfDPy2aJ mbr-list LI {
  color: #ffffff;
}
.cid-uhkfDPy2aJ mbr-list {
  text-align: center;
}
.cid-uhkfDPy2aJ .mbr-list,
.cid-uhkfDPy2aJ .social-list mbr-list {
  color: #ffffff;
}
.cid-uhk9UU8ZmB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhk9UU8ZmB .mbr-section-title,
.cid-uhk9UU8ZmB .title__address,
.cid-uhk9UU8ZmB .title__social {
  margin-bottom: 20px;
}
.cid-uhk9UU8ZmB .info {
  margin-bottom: 20px;
}
.cid-uhk9UU8ZmB .text__info,
.cid-uhk9UU8ZmB .work__time,
.cid-uhk9UU8ZmB .work__address {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-uhk9UU8ZmB .info__wrap {
    padding: 0 30px;
  }
}
.cid-uhk9UU8ZmB .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  margin: 75px 15px 85px;
  opacity: 0.6;
}
.cid-uhk9UU8ZmB .dragArea .form-control {
  height: 49px;
  font-size: 16px;
  color: #232226;
  padding: 14px 15px;
  border: none !important;
  line-height: 1.3;
  border-radius: 4px;
  background-color: #f5f7fd !important;
}
.cid-uhk9UU8ZmB .dragArea .form-control:hover,
.cid-uhk9UU8ZmB .dragArea .form-control:focus {
  border: none !important;
}
.cid-uhk9UU8ZmB .dragArea .jq-selectbox li:hover,
.cid-uhk9UU8ZmB .dragArea .jq-selectbox li.selected {
  background-color: #47b5ed;
  color: #ffffff;
}
.cid-uhk9UU8ZmB .dragArea .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-color: #ff6666 !important;
}
.cid-uhk9UU8ZmB .dragArea .jq-selectbox__select {
  padding: 14px 15px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cid-uhk9UU8ZmB .dragArea .jq-selectbox__select-text {
  color: #232226;
  opacity: 0.8;
}
.cid-uhk9UU8ZmB .dragArea .jq-selectbox__trigger-arrow {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 7px;
  height: 7px;
  top: 40%;
  right: 20px;
  border-color: #ff6666;
}
.cid-uhk9UU8ZmB .dragArea textarea {
  height: 160px !important;
}
.cid-uhk9UU8ZmB .dragArea input::-webkit-input-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-uhk9UU8ZmB .dragArea input::-moz-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-uhk9UU8ZmB .dragArea textarea::-webkit-input-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-uhk9UU8ZmB .dragArea textarea::-moz-placeholder {
  color: #232226;
  opacity: 0.8;
}
.cid-uhk9UU8ZmB .input-group-btn {
  padding: 0 10px;
}
.cid-uhk9UU8ZmB .input-group-btn .btn {
  margin: 0;
  margin-top: 15px;
}
.cid-uhk9UU8ZmB .form-group {
  padding: 10px;
  margin-bottom: 10px;
}
.cid-uhk9UU8ZmB .form-control-label {
  margin-bottom: 8px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .cid-uhk9UU8ZmB .divider {
    margin: 40px 15px 45px;
  }
}
@media (max-width: 767px) {
  .cid-uhk9UU8ZmB .social,
  .cid-uhk9UU8ZmB .address,
  .cid-uhk9UU8ZmB .info__wrap {
    margin-bottom: 30px;
  }
  .cid-uhk9UU8ZmB .form-group {
    padding: 10px 15px;
  }
  .cid-uhk9UU8ZmB .input-group-btn {
    padding: 0 15px;
  }
}
.cid-uhk9UU8ZmB LABEL {
  color: #000000;
}
.cid-uhk7OC9L5c {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #232323;
}
@media (max-width: 767px) {
  .cid-uhk7OC9L5c .content {
    text-align: center;
  }
  .cid-uhk7OC9L5c .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uhk7OC9L5c .map {
  height: 18.75rem;
}
.cid-uhk7OC9L5c .navbar-logo img {
  width: auto;
}
@media (max-width: 767px) {
  .cid-uhk7OC9L5c .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uhk7OC9L5c .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uhk7OC9L5c .google-map {
  height: 25rem;
  position: relative;
}
.cid-uhk7OC9L5c .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhk7OC9L5c .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-uhk7OC9L5c .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhk7OC9L5c .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhk7OC9L5c .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uhk7OC9L5c .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uhk7OC9L5c .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uhk7OC9L5c .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uhk7OC9L5c .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uhk7OC9L5c .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uhk7OC9L5c .list {
  list-style-type: none;
  padding: 0;
}
