.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bbbbbb !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !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: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !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: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #bbbbbb !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #888888 !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: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bbbbbb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-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: #bbbbbb;
  border-color: #bbbbbb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bbbbbb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bbbbbb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #bbbbbb;
}
/* 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: #bbbbbb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bbbbbb;
}
.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: #bbbbbb;
  border-bottom-color: #bbbbbb;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bbbbbb !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='%23bbbbbb' %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-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMqSBV6Iws {
  background-image: url("../../../assets/images/long-island-junk-car-removal-main-image-1.jpg");
}
.cid-uMqSBV6Iws .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqSBV6Iws .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqSBV6Iws .mbr-section-title {
  color: #ffffff;
}
.cid-uMqSBV6Iws .mbr-text,
.cid-uMqSBV6Iws .mbr-section-btn {
  color: #ffffff;
}
.cid-sFzxmVl7J6 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
}
.cid-tZcCIV18ox {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tZcCIV18ox .mbr-fallback-image.disabled {
  display: none;
}
.cid-tZcCIV18ox .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFzyUE9AaP {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sFzyUE9AaP .container {
    max-width: 1400px;
  }
}
.cid-sFzyUE9AaP .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #232323;
  margin-bottom: 2rem;
}
.cid-sFzyUE9AaP .card-wrapper {
  margin-top: 3rem;
}
.cid-sFzyUE9AaP .row {
  justify-content: center;
}
.cid-sFzyUE9AaP .card-title,
.cid-sFzyUE9AaP .iconfont-wrapper {
  color: #000000;
  text-align: center;
}
.cid-sFzyUE9AaP .card-text {
  color: #000000;
}
.cid-sFzyUE9AaP .mbr-section-title {
  color: #000000;
}
.cid-uLSe4R8TQY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLSe4R8TQY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLSe4R8TQY p {
  font-size: 1.25rem;
}
.cid-uLSe4R8TQY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFzIA7KGYz {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sFCygHrmNf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  position: relative !important;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFCw1qGFAI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0OHLPXSgZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u0OHLPXSgZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0OHLPXSgZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0OAvnZkMX {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-u0OAvnZkMX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0OAvnZkMX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sFCygHrmNf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-sFCygHrmNf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-sFCygHrmNf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-sFCygHrmNf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-sFCygHrmNf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-sFCygHrmNf .row .foot-menu li p {
  margin: 0;
}
.cid-sFCygHrmNf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-sFCygHrmNf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-sFCygHrmNf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sFCygHrmNf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-sFCygHrmNf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sFCygHrmNf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFCygHrmNf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-sFCygHrmNf .row .row-copirayt p {
  width: 100%;
}
.cid-uLLCFt9O94 .navbar-dropdown {
  position: relative !important;
}
.cid-uLLCFt9O94 .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-uLLCFt9O94 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLLCFt9O94 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLLCFt9O94 .dropdown-item:hover,
.cid-uLLCFt9O94 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uLLCFt9O94 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLLCFt9O94 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLLCFt9O94 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLLCFt9O94 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLLCFt9O94 .nav-link {
  position: relative;
}
.cid-uLLCFt9O94 .container {
  display: flex;
  margin: auto;
}
.cid-uLLCFt9O94 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLLCFt9O94 .dropdown-menu,
.cid-uLLCFt9O94 .navbar.opened {
  background: #fafafa !important;
}
.cid-uLLCFt9O94 .nav-item:focus,
.cid-uLLCFt9O94 .nav-link:focus {
  outline: none;
}
.cid-uLLCFt9O94 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLLCFt9O94 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLLCFt9O94 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLLCFt9O94 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLLCFt9O94 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLLCFt9O94 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLLCFt9O94 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uLLCFt9O94 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLLCFt9O94 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLLCFt9O94 .navbar .navbar-logo img {
  width: auto;
}
.cid-uLLCFt9O94 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLLCFt9O94 .navbar.collapsed {
  justify-content: center;
}
.cid-uLLCFt9O94 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLLCFt9O94 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLLCFt9O94 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uLLCFt9O94 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLLCFt9O94 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLLCFt9O94 .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-uLLCFt9O94 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLLCFt9O94 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLLCFt9O94 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLLCFt9O94 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLLCFt9O94 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLLCFt9O94 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLLCFt9O94 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLLCFt9O94 .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-uLLCFt9O94 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLLCFt9O94 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLLCFt9O94 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLLCFt9O94 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLLCFt9O94 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLLCFt9O94 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLLCFt9O94 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLLCFt9O94 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLLCFt9O94 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLLCFt9O94 .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-uLLCFt9O94 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLLCFt9O94 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLLCFt9O94 .dropdown-item.active,
.cid-uLLCFt9O94 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLLCFt9O94 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLLCFt9O94 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLLCFt9O94 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLLCFt9O94 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uLLCFt9O94 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLLCFt9O94 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLLCFt9O94 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLLCFt9O94 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLLCFt9O94 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLLCFt9O94 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLLCFt9O94 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLLCFt9O94 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLLCFt9O94 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLLCFt9O94 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLLCFt9O94 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLLCFt9O94 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLLCFt9O94 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLLCFt9O94 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLLCFt9O94 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLLCFt9O94 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLLCFt9O94 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLLCFt9O94 .navbar {
    height: 70px;
  }
  .cid-uLLCFt9O94 .navbar.opened {
    height: auto;
  }
  .cid-uLLCFt9O94 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLLTHvR1Ed {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uLLTHvR1Ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLLTHvR1Ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLLCFtS6TL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uLLCFtS6TL .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLLCFtS6TL .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLLCFtS6TL .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLLCFtS6TL .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLLCFtS6TL .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLLCFtS6TL .row .foot-menu li p {
  margin: 0;
}
.cid-uLLCFtS6TL .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uLLCFtS6TL .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLLCFtS6TL .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLLCFtS6TL .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLLCFtS6TL .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLLCFtS6TL .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLLCFtS6TL .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLLCFtS6TL .row .row-copirayt p {
  width: 100%;
}
.cid-u27WR0CbJ1 .navbar-dropdown {
  position: relative !important;
}
.cid-u27WR0CbJ1 .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-u27WR0CbJ1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u27WR0CbJ1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u27WR0CbJ1 .dropdown-item:hover,
.cid-u27WR0CbJ1 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-u27WR0CbJ1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u27WR0CbJ1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u27WR0CbJ1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u27WR0CbJ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u27WR0CbJ1 .nav-link {
  position: relative;
}
.cid-u27WR0CbJ1 .container {
  display: flex;
  margin: auto;
}
.cid-u27WR0CbJ1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u27WR0CbJ1 .dropdown-menu,
.cid-u27WR0CbJ1 .navbar.opened {
  background: #fafafa !important;
}
.cid-u27WR0CbJ1 .nav-item:focus,
.cid-u27WR0CbJ1 .nav-link:focus {
  outline: none;
}
.cid-u27WR0CbJ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u27WR0CbJ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u27WR0CbJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u27WR0CbJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u27WR0CbJ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u27WR0CbJ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u27WR0CbJ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-u27WR0CbJ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-u27WR0CbJ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u27WR0CbJ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-u27WR0CbJ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u27WR0CbJ1 .navbar.collapsed {
  justify-content: center;
}
.cid-u27WR0CbJ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u27WR0CbJ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u27WR0CbJ1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-u27WR0CbJ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u27WR0CbJ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u27WR0CbJ1 .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-u27WR0CbJ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u27WR0CbJ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u27WR0CbJ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u27WR0CbJ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u27WR0CbJ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u27WR0CbJ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u27WR0CbJ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u27WR0CbJ1 .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-u27WR0CbJ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u27WR0CbJ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u27WR0CbJ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u27WR0CbJ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u27WR0CbJ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u27WR0CbJ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u27WR0CbJ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u27WR0CbJ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u27WR0CbJ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u27WR0CbJ1 .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-u27WR0CbJ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u27WR0CbJ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u27WR0CbJ1 .dropdown-item.active,
.cid-u27WR0CbJ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-u27WR0CbJ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u27WR0CbJ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u27WR0CbJ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u27WR0CbJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u27WR0CbJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u27WR0CbJ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u27WR0CbJ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u27WR0CbJ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u27WR0CbJ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u27WR0CbJ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u27WR0CbJ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u27WR0CbJ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u27WR0CbJ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u27WR0CbJ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u27WR0CbJ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u27WR0CbJ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u27WR0CbJ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u27WR0CbJ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u27WR0CbJ1 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u27WR0CbJ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u27WR0CbJ1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u27WR0CbJ1 .navbar {
    height: 70px;
  }
  .cid-u27WR0CbJ1 .navbar.opened {
    height: auto;
  }
  .cid-u27WR0CbJ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u28iCBji5s {
  background-image: url("../../../assets/images/amityville-ny-1.jpg");
}
.cid-u28iCBji5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28iCBji5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u28iCBji5s .mbr-section-title {
  color: #ffffff;
}
.cid-u28iCBji5s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2dI9Uj1xJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2dI9Uj1xJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2dI9Uj1xJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u2dI9Uj1xJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u2dI9Uj1xJ .row {
  flex-direction: row-reverse;
}
.cid-u2dI9Uj1xJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2dI9Uj1xJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u28pRi0CL0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-u28pRi0CL0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28pRi0CL0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u28pRi0CL0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u28pRi0CL0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u28pRi0CL0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u28pRi0CL0 .mbr-section-title {
  text-align: left;
}
.cid-u2dEx1SISa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u2dEx1SISa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2dEx1SISa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-u2dEx1SISa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u2dEx1SISa .row {
  flex-direction: row-reverse;
}
.cid-u2dEx1SISa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u2dEx1SISa .text-wrapper {
    padding: 2rem;
  }
}
.cid-u28qX8fHHC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-u28qX8fHHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28qX8fHHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u28qX8fHHC .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-u28qX8fHHC .panel-group {
  border: none;
}
.cid-u28qX8fHHC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u28qX8fHHC .panel-body,
.cid-u28qX8fHHC .card-header {
  padding: 1rem 0;
}
.cid-u28qX8fHHC .panel-title-edit {
  color: #000000;
}
.cid-u28qX8fHHC .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u2dTRijZGU {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-u2dTRijZGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2dTRijZGU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2dTRijZGU .google-map {
  height: 30rem;
  position: relative;
}
.cid-u2dTRijZGU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u2dTRijZGU .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u2dTRijZGU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u2dTRijZGU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u27WR29A3Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u27WR29A3Y .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u27WR29A3Y .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u27WR29A3Y .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u27WR29A3Y .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u27WR29A3Y .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u27WR29A3Y .row .foot-menu li p {
  margin: 0;
}
.cid-u27WR29A3Y .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u27WR29A3Y .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u27WR29A3Y .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u27WR29A3Y .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u27WR29A3Y .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u27WR29A3Y .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u27WR29A3Y .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u27WR29A3Y .row .row-copirayt p {
  width: 100%;
}
.cid-uLY0VIClPj .navbar-dropdown {
  position: relative !important;
}
.cid-uLY0VIClPj .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-uLY0VIClPj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uLY0VIClPj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uLY0VIClPj .dropdown-item:hover,
.cid-uLY0VIClPj .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uLY0VIClPj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uLY0VIClPj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uLY0VIClPj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uLY0VIClPj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uLY0VIClPj .nav-link {
  position: relative;
}
.cid-uLY0VIClPj .container {
  display: flex;
  margin: auto;
}
.cid-uLY0VIClPj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLY0VIClPj .dropdown-menu,
.cid-uLY0VIClPj .navbar.opened {
  background: #fafafa !important;
}
.cid-uLY0VIClPj .nav-item:focus,
.cid-uLY0VIClPj .nav-link:focus {
  outline: none;
}
.cid-uLY0VIClPj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLY0VIClPj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLY0VIClPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLY0VIClPj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLY0VIClPj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLY0VIClPj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLY0VIClPj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uLY0VIClPj .navbar.opened {
  transition: all 0.3s;
}
.cid-uLY0VIClPj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLY0VIClPj .navbar .navbar-logo img {
  width: auto;
}
.cid-uLY0VIClPj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uLY0VIClPj .navbar.collapsed {
  justify-content: center;
}
.cid-uLY0VIClPj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLY0VIClPj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLY0VIClPj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uLY0VIClPj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLY0VIClPj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLY0VIClPj .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-uLY0VIClPj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLY0VIClPj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLY0VIClPj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uLY0VIClPj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLY0VIClPj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLY0VIClPj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLY0VIClPj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLY0VIClPj .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-uLY0VIClPj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLY0VIClPj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uLY0VIClPj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLY0VIClPj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uLY0VIClPj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLY0VIClPj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLY0VIClPj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLY0VIClPj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLY0VIClPj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLY0VIClPj .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-uLY0VIClPj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLY0VIClPj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLY0VIClPj .dropdown-item.active,
.cid-uLY0VIClPj .dropdown-item:active {
  background-color: transparent;
}
.cid-uLY0VIClPj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLY0VIClPj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLY0VIClPj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLY0VIClPj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uLY0VIClPj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLY0VIClPj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLY0VIClPj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLY0VIClPj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLY0VIClPj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLY0VIClPj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLY0VIClPj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLY0VIClPj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLY0VIClPj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLY0VIClPj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLY0VIClPj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLY0VIClPj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLY0VIClPj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLY0VIClPj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLY0VIClPj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLY0VIClPj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLY0VIClPj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLY0VIClPj .navbar {
    height: 70px;
  }
  .cid-uLY0VIClPj .navbar.opened {
    height: auto;
  }
  .cid-uLY0VIClPj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLY1894q8z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uLY1894q8z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLY1894q8z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uLY1894q8z .row {
    flex-direction: column-reverse;
  }
  .cid-uLY1894q8z .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLY1894q8z .google-map {
  height: 100%;
  position: relative;
}
.cid-uLY1894q8z .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uLY1894q8z .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLY1894q8z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLY1894q8z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLY1894q8z .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uLY1894q8z .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uLY1894q8z .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uLY1894q8z .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLY1894q8z .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uLY1894q8z .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #bbbbbb;
}
.cid-uLY24TBvpZ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uLY24TBvpZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uLY24TBvpZ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uLY24TBvpZ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uLY24TBvpZ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uLY0VJwRum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uLY0VJwRum .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uLY0VJwRum .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uLY0VJwRum .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uLY0VJwRum .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uLY0VJwRum .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uLY0VJwRum .row .foot-menu li p {
  margin: 0;
}
.cid-uLY0VJwRum .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uLY0VJwRum .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uLY0VJwRum .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uLY0VJwRum .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uLY0VJwRum .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uLY0VJwRum .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uLY0VJwRum .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uLY0VJwRum .row .row-copirayt p {
  width: 100%;
}
.cid-uM2zxvZpTb .navbar-dropdown {
  position: relative !important;
}
.cid-uM2zxvZpTb .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-uM2zxvZpTb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM2zxvZpTb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM2zxvZpTb .dropdown-item:hover,
.cid-uM2zxvZpTb .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uM2zxvZpTb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM2zxvZpTb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM2zxvZpTb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM2zxvZpTb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM2zxvZpTb .nav-link {
  position: relative;
}
.cid-uM2zxvZpTb .container {
  display: flex;
  margin: auto;
}
.cid-uM2zxvZpTb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM2zxvZpTb .dropdown-menu,
.cid-uM2zxvZpTb .navbar.opened {
  background: #fafafa !important;
}
.cid-uM2zxvZpTb .nav-item:focus,
.cid-uM2zxvZpTb .nav-link:focus {
  outline: none;
}
.cid-uM2zxvZpTb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM2zxvZpTb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM2zxvZpTb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM2zxvZpTb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM2zxvZpTb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM2zxvZpTb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM2zxvZpTb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uM2zxvZpTb .navbar.opened {
  transition: all 0.3s;
}
.cid-uM2zxvZpTb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM2zxvZpTb .navbar .navbar-logo img {
  width: auto;
}
.cid-uM2zxvZpTb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM2zxvZpTb .navbar.collapsed {
  justify-content: center;
}
.cid-uM2zxvZpTb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM2zxvZpTb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM2zxvZpTb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uM2zxvZpTb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM2zxvZpTb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM2zxvZpTb .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-uM2zxvZpTb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM2zxvZpTb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM2zxvZpTb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM2zxvZpTb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM2zxvZpTb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM2zxvZpTb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM2zxvZpTb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM2zxvZpTb .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-uM2zxvZpTb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM2zxvZpTb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM2zxvZpTb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM2zxvZpTb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM2zxvZpTb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM2zxvZpTb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM2zxvZpTb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM2zxvZpTb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM2zxvZpTb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM2zxvZpTb .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-uM2zxvZpTb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM2zxvZpTb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM2zxvZpTb .dropdown-item.active,
.cid-uM2zxvZpTb .dropdown-item:active {
  background-color: transparent;
}
.cid-uM2zxvZpTb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM2zxvZpTb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM2zxvZpTb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM2zxvZpTb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uM2zxvZpTb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM2zxvZpTb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM2zxvZpTb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM2zxvZpTb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM2zxvZpTb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM2zxvZpTb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uM2zxvZpTb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM2zxvZpTb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM2zxvZpTb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM2zxvZpTb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM2zxvZpTb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM2zxvZpTb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM2zxvZpTb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM2zxvZpTb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM2zxvZpTb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uM2zxvZpTb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM2zxvZpTb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uM2zxvZpTb .navbar {
    height: 70px;
  }
  .cid-uM2zxvZpTb .navbar.opened {
    height: auto;
  }
  .cid-uM2zxvZpTb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM2zxwjT9w {
  background-image: url("../../../assets/images/aquebogue-ny-1.jpg");
}
.cid-uM2zxwjT9w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxwjT9w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2zxwjT9w .mbr-section-title {
  color: #ffffff;
}
.cid-uM2zxwjT9w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uM2zxwBNRO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM2zxwBNRO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxwBNRO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2zxwBNRO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2zxwBNRO .row {
  flex-direction: row-reverse;
}
.cid-uM2zxwBNRO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2zxwBNRO .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2zxwPCEe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM2zxwPCEe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxwPCEe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2zxwPCEe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2zxwPCEe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2zxwPCEe .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2zxwPCEe .mbr-section-title {
  text-align: left;
}
.cid-uM2zxx5MXL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM2zxx5MXL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxx5MXL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2zxx5MXL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2zxx5MXL .row {
  flex-direction: row-reverse;
}
.cid-uM2zxx5MXL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2zxx5MXL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2zxxkws6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM2zxxkws6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxxkws6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2zxxkws6 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uM2zxxkws6 .panel-group {
  border: none;
}
.cid-uM2zxxkws6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uM2zxxkws6 .panel-body,
.cid-uM2zxxkws6 .card-header {
  padding: 1rem 0;
}
.cid-uM2zxxkws6 .panel-title-edit {
  color: #000000;
}
.cid-uM2zxxkws6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uM2zxxDiTl {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uM2zxxDiTl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2zxxDiTl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2zxxDiTl .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM2zxxDiTl .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM2zxxDiTl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM2zxxDiTl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM2zxxDiTl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM2zxxWuGz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uM2zxxWuGz .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uM2zxxWuGz .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uM2zxxWuGz .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uM2zxxWuGz .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uM2zxxWuGz .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uM2zxxWuGz .row .foot-menu li p {
  margin: 0;
}
.cid-uM2zxxWuGz .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uM2zxxWuGz .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uM2zxxWuGz .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uM2zxxWuGz .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uM2zxxWuGz .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uM2zxxWuGz .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uM2zxxWuGz .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uM2zxxWuGz .row .row-copirayt p {
  width: 100%;
}
.cid-uM3oQPDjG7 .navbar-dropdown {
  position: relative !important;
}
.cid-uM3oQPDjG7 .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-uM3oQPDjG7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM3oQPDjG7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM3oQPDjG7 .dropdown-item:hover,
.cid-uM3oQPDjG7 .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uM3oQPDjG7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM3oQPDjG7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM3oQPDjG7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM3oQPDjG7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM3oQPDjG7 .nav-link {
  position: relative;
}
.cid-uM3oQPDjG7 .container {
  display: flex;
  margin: auto;
}
.cid-uM3oQPDjG7 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM3oQPDjG7 .dropdown-menu,
.cid-uM3oQPDjG7 .navbar.opened {
  background: #fafafa !important;
}
.cid-uM3oQPDjG7 .nav-item:focus,
.cid-uM3oQPDjG7 .nav-link:focus {
  outline: none;
}
.cid-uM3oQPDjG7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM3oQPDjG7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM3oQPDjG7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM3oQPDjG7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM3oQPDjG7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM3oQPDjG7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM3oQPDjG7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uM3oQPDjG7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uM3oQPDjG7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM3oQPDjG7 .navbar .navbar-logo img {
  width: auto;
}
.cid-uM3oQPDjG7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM3oQPDjG7 .navbar.collapsed {
  justify-content: center;
}
.cid-uM3oQPDjG7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM3oQPDjG7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM3oQPDjG7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uM3oQPDjG7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM3oQPDjG7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM3oQPDjG7 .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-uM3oQPDjG7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM3oQPDjG7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM3oQPDjG7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM3oQPDjG7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM3oQPDjG7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM3oQPDjG7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM3oQPDjG7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM3oQPDjG7 .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-uM3oQPDjG7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM3oQPDjG7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM3oQPDjG7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM3oQPDjG7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM3oQPDjG7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM3oQPDjG7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM3oQPDjG7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM3oQPDjG7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM3oQPDjG7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM3oQPDjG7 .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-uM3oQPDjG7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM3oQPDjG7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM3oQPDjG7 .dropdown-item.active,
.cid-uM3oQPDjG7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uM3oQPDjG7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM3oQPDjG7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM3oQPDjG7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM3oQPDjG7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uM3oQPDjG7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM3oQPDjG7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM3oQPDjG7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM3oQPDjG7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM3oQPDjG7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM3oQPDjG7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uM3oQPDjG7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM3oQPDjG7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM3oQPDjG7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM3oQPDjG7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM3oQPDjG7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM3oQPDjG7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM3oQPDjG7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM3oQPDjG7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM3oQPDjG7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uM3oQPDjG7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM3oQPDjG7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uM3oQPDjG7 .navbar {
    height: 70px;
  }
  .cid-uM3oQPDjG7 .navbar.opened {
    height: auto;
  }
  .cid-uM3oQPDjG7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM3oQPY340 {
  background-image: url("../../../assets/images/babylon-ny-1.jpg");
}
.cid-uM3oQPY340 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQPY340 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM3oQPY340 .mbr-section-title {
  color: #ffffff;
}
.cid-uM3oQPY340 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uM3oQQknhc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM3oQQknhc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQQknhc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM3oQQknhc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM3oQQknhc .row {
  flex-direction: row-reverse;
}
.cid-uM3oQQknhc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM3oQQknhc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM3oQQDcIC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM3oQQDcIC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQQDcIC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM3oQQDcIC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM3oQQDcIC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM3oQQDcIC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM3oQQDcIC .mbr-section-title {
  text-align: left;
}
.cid-uM3oQQUobV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM3oQQUobV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQQUobV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM3oQQUobV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM3oQQUobV .row {
  flex-direction: row-reverse;
}
.cid-uM3oQQUobV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM3oQQUobV .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM3oQRabUG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM3oQRabUG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQRabUG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM3oQRabUG .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uM3oQRabUG .panel-group {
  border: none;
}
.cid-uM3oQRabUG .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uM3oQRabUG .panel-body,
.cid-uM3oQRabUG .card-header {
  padding: 1rem 0;
}
.cid-uM3oQRabUG .panel-title-edit {
  color: #000000;
}
.cid-uM3oQRabUG .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uM3oQRtwuR {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uM3oQRtwuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM3oQRtwuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM3oQRtwuR .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM3oQRtwuR .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM3oQRtwuR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM3oQRtwuR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM3oQRtwuR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM3oQROt4l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uM3oQROt4l .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uM3oQROt4l .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uM3oQROt4l .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uM3oQROt4l .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uM3oQROt4l .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uM3oQROt4l .row .foot-menu li p {
  margin: 0;
}
.cid-uM3oQROt4l .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uM3oQROt4l .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uM3oQROt4l .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uM3oQROt4l .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uM3oQROt4l .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uM3oQROt4l .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uM3oQROt4l .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uM3oQROt4l .row .row-copirayt p {
  width: 100%;
}
.cid-uMqjOMRFGj .navbar-dropdown {
  position: relative !important;
}
.cid-uMqjOMRFGj .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-uMqjOMRFGj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMqjOMRFGj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMqjOMRFGj .dropdown-item:hover,
.cid-uMqjOMRFGj .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMqjOMRFGj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMqjOMRFGj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMqjOMRFGj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMqjOMRFGj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMqjOMRFGj .nav-link {
  position: relative;
}
.cid-uMqjOMRFGj .container {
  display: flex;
  margin: auto;
}
.cid-uMqjOMRFGj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMqjOMRFGj .dropdown-menu,
.cid-uMqjOMRFGj .navbar.opened {
  background: #fafafa !important;
}
.cid-uMqjOMRFGj .nav-item:focus,
.cid-uMqjOMRFGj .nav-link:focus {
  outline: none;
}
.cid-uMqjOMRFGj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMqjOMRFGj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMqjOMRFGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMqjOMRFGj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMqjOMRFGj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMqjOMRFGj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMqjOMRFGj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMqjOMRFGj .navbar.opened {
  transition: all 0.3s;
}
.cid-uMqjOMRFGj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMqjOMRFGj .navbar .navbar-logo img {
  width: auto;
}
.cid-uMqjOMRFGj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMqjOMRFGj .navbar.collapsed {
  justify-content: center;
}
.cid-uMqjOMRFGj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMqjOMRFGj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMqjOMRFGj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMqjOMRFGj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMqjOMRFGj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMqjOMRFGj .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-uMqjOMRFGj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMqjOMRFGj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMqjOMRFGj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMqjOMRFGj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMqjOMRFGj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMqjOMRFGj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMqjOMRFGj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMqjOMRFGj .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-uMqjOMRFGj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMqjOMRFGj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMqjOMRFGj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMqjOMRFGj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMqjOMRFGj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMqjOMRFGj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMqjOMRFGj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMqjOMRFGj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMqjOMRFGj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMqjOMRFGj .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-uMqjOMRFGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMqjOMRFGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMqjOMRFGj .dropdown-item.active,
.cid-uMqjOMRFGj .dropdown-item:active {
  background-color: transparent;
}
.cid-uMqjOMRFGj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMqjOMRFGj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMqjOMRFGj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMqjOMRFGj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMqjOMRFGj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMqjOMRFGj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMqjOMRFGj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMqjOMRFGj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMqjOMRFGj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMqjOMRFGj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMqjOMRFGj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMqjOMRFGj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqjOMRFGj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqjOMRFGj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMqjOMRFGj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqjOMRFGj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMqjOMRFGj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMqjOMRFGj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqjOMRFGj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMqjOMRFGj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMqjOMRFGj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMqjOMRFGj .navbar {
    height: 70px;
  }
  .cid-uMqjOMRFGj .navbar.opened {
    height: auto;
  }
  .cid-uMqjOMRFGj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMqjON90uG {
  background-image: url("../../../assets/images/baiting-hollow-ny-1.jpg");
}
.cid-uMqjON90uG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjON90uG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqjON90uG .mbr-section-title {
  color: #ffffff;
}
.cid-uMqjON90uG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMqjONnAOc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqjONnAOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjONnAOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqjONnAOc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqjONnAOc .row {
  flex-direction: row-reverse;
}
.cid-uMqjONnAOc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqjONnAOc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqjONB1o3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqjONB1o3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjONB1o3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqjONB1o3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqjONB1o3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqjONB1o3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqjONB1o3 .mbr-section-title {
  text-align: left;
}
.cid-uMqjONR4wA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqjONR4wA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjONR4wA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqjONR4wA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqjONR4wA .row {
  flex-direction: row-reverse;
}
.cid-uMqjONR4wA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqjONR4wA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqjOO6yaV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqjOO6yaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjOO6yaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqjOO6yaV .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMqjOO6yaV .panel-group {
  border: none;
}
.cid-uMqjOO6yaV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMqjOO6yaV .panel-body,
.cid-uMqjOO6yaV .card-header {
  padding: 1rem 0;
}
.cid-uMqjOO6yaV .panel-title-edit {
  color: #000000;
}
.cid-uMqjOO6yaV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMqjOOrwNi {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMqjOOrwNi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqjOOrwNi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqjOOrwNi .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMqjOOrwNi .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMqjOOrwNi .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMqjOOrwNi .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMqjOOrwNi .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMqjOOHdyM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMqjOOHdyM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMqjOOHdyM .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMqjOOHdyM .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMqjOOHdyM .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMqjOOHdyM .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMqjOOHdyM .row .foot-menu li p {
  margin: 0;
}
.cid-uMqjOOHdyM .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMqjOOHdyM .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMqjOOHdyM .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMqjOOHdyM .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMqjOOHdyM .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMqjOOHdyM .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMqjOOHdyM .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMqjOOHdyM .row .row-copirayt p {
  width: 100%;
}
.cid-uMqmH0ko8A .navbar-dropdown {
  position: relative !important;
}
.cid-uMqmH0ko8A .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-uMqmH0ko8A .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMqmH0ko8A .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMqmH0ko8A .dropdown-item:hover,
.cid-uMqmH0ko8A .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMqmH0ko8A .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMqmH0ko8A .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMqmH0ko8A .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMqmH0ko8A .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMqmH0ko8A .nav-link {
  position: relative;
}
.cid-uMqmH0ko8A .container {
  display: flex;
  margin: auto;
}
.cid-uMqmH0ko8A .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMqmH0ko8A .dropdown-menu,
.cid-uMqmH0ko8A .navbar.opened {
  background: #fafafa !important;
}
.cid-uMqmH0ko8A .nav-item:focus,
.cid-uMqmH0ko8A .nav-link:focus {
  outline: none;
}
.cid-uMqmH0ko8A .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMqmH0ko8A .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMqmH0ko8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMqmH0ko8A .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMqmH0ko8A .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMqmH0ko8A .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMqmH0ko8A .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMqmH0ko8A .navbar.opened {
  transition: all 0.3s;
}
.cid-uMqmH0ko8A .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMqmH0ko8A .navbar .navbar-logo img {
  width: auto;
}
.cid-uMqmH0ko8A .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMqmH0ko8A .navbar.collapsed {
  justify-content: center;
}
.cid-uMqmH0ko8A .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMqmH0ko8A .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMqmH0ko8A .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMqmH0ko8A .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMqmH0ko8A .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMqmH0ko8A .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-uMqmH0ko8A .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMqmH0ko8A .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMqmH0ko8A .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMqmH0ko8A .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMqmH0ko8A .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMqmH0ko8A .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMqmH0ko8A .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMqmH0ko8A .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-uMqmH0ko8A .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMqmH0ko8A .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMqmH0ko8A .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMqmH0ko8A .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMqmH0ko8A .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMqmH0ko8A .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMqmH0ko8A .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMqmH0ko8A .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMqmH0ko8A .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMqmH0ko8A .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-uMqmH0ko8A .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMqmH0ko8A .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMqmH0ko8A .dropdown-item.active,
.cid-uMqmH0ko8A .dropdown-item:active {
  background-color: transparent;
}
.cid-uMqmH0ko8A .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMqmH0ko8A .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMqmH0ko8A .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMqmH0ko8A .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMqmH0ko8A .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMqmH0ko8A .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMqmH0ko8A ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMqmH0ko8A .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMqmH0ko8A button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMqmH0ko8A button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMqmH0ko8A button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMqmH0ko8A button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqmH0ko8A button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqmH0ko8A button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMqmH0ko8A nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqmH0ko8A nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMqmH0ko8A nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMqmH0ko8A nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqmH0ko8A .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMqmH0ko8A a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMqmH0ko8A .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMqmH0ko8A .navbar {
    height: 70px;
  }
  .cid-uMqmH0ko8A .navbar.opened {
    height: auto;
  }
  .cid-uMqmH0ko8A .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMqmH0LymV {
  background-image: url("../../../assets/images/bayshore-ny-1.jpg");
}
.cid-uMqmH0LymV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH0LymV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqmH0LymV .mbr-section-title {
  color: #ffffff;
}
.cid-uMqmH0LymV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMqmH178QM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqmH178QM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH178QM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqmH178QM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqmH178QM .row {
  flex-direction: row-reverse;
}
.cid-uMqmH178QM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqmH178QM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqmH1nE1G {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqmH1nE1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH1nE1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqmH1nE1G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqmH1nE1G img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqmH1nE1G .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqmH1nE1G .mbr-section-title {
  text-align: left;
}
.cid-uMqmH1Fz1o {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqmH1Fz1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH1Fz1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqmH1Fz1o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqmH1Fz1o .row {
  flex-direction: row-reverse;
}
.cid-uMqmH1Fz1o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqmH1Fz1o .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqmH1VeNM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqmH1VeNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH1VeNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqmH1VeNM .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMqmH1VeNM .panel-group {
  border: none;
}
.cid-uMqmH1VeNM .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMqmH1VeNM .panel-body,
.cid-uMqmH1VeNM .card-header {
  padding: 1rem 0;
}
.cid-uMqmH1VeNM .panel-title-edit {
  color: #000000;
}
.cid-uMqmH1VeNM .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMqmH2hdfz {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMqmH2hdfz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqmH2hdfz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqmH2hdfz .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMqmH2hdfz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMqmH2hdfz .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMqmH2hdfz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMqmH2hdfz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMqmH2Cybm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMqmH2Cybm .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMqmH2Cybm .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMqmH2Cybm .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMqmH2Cybm .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMqmH2Cybm .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMqmH2Cybm .row .foot-menu li p {
  margin: 0;
}
.cid-uMqmH2Cybm .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMqmH2Cybm .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMqmH2Cybm .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMqmH2Cybm .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMqmH2Cybm .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMqmH2Cybm .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMqmH2Cybm .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMqmH2Cybm .row .row-copirayt p {
  width: 100%;
}
.cid-uMqqeNSyGJ .navbar-dropdown {
  position: relative !important;
}
.cid-uMqqeNSyGJ .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-uMqqeNSyGJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMqqeNSyGJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMqqeNSyGJ .dropdown-item:hover,
.cid-uMqqeNSyGJ .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMqqeNSyGJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMqqeNSyGJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMqqeNSyGJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMqqeNSyGJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMqqeNSyGJ .nav-link {
  position: relative;
}
.cid-uMqqeNSyGJ .container {
  display: flex;
  margin: auto;
}
.cid-uMqqeNSyGJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMqqeNSyGJ .dropdown-menu,
.cid-uMqqeNSyGJ .navbar.opened {
  background: #fafafa !important;
}
.cid-uMqqeNSyGJ .nav-item:focus,
.cid-uMqqeNSyGJ .nav-link:focus {
  outline: none;
}
.cid-uMqqeNSyGJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMqqeNSyGJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMqqeNSyGJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMqqeNSyGJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMqqeNSyGJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMqqeNSyGJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMqqeNSyGJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMqqeNSyGJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uMqqeNSyGJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMqqeNSyGJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uMqqeNSyGJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMqqeNSyGJ .navbar.collapsed {
  justify-content: center;
}
.cid-uMqqeNSyGJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMqqeNSyGJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMqqeNSyGJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMqqeNSyGJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMqqeNSyGJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMqqeNSyGJ .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-uMqqeNSyGJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMqqeNSyGJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMqqeNSyGJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMqqeNSyGJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMqqeNSyGJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMqqeNSyGJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMqqeNSyGJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMqqeNSyGJ .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-uMqqeNSyGJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMqqeNSyGJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMqqeNSyGJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMqqeNSyGJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMqqeNSyGJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMqqeNSyGJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMqqeNSyGJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMqqeNSyGJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMqqeNSyGJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMqqeNSyGJ .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-uMqqeNSyGJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMqqeNSyGJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMqqeNSyGJ .dropdown-item.active,
.cid-uMqqeNSyGJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uMqqeNSyGJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMqqeNSyGJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMqqeNSyGJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMqqeNSyGJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMqqeNSyGJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMqqeNSyGJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMqqeNSyGJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMqqeNSyGJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMqqeNSyGJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMqqeNSyGJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMqqeNSyGJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMqqeNSyGJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqqeNSyGJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMqqeNSyGJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMqqeNSyGJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqqeNSyGJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMqqeNSyGJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMqqeNSyGJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMqqeNSyGJ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMqqeNSyGJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMqqeNSyGJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMqqeNSyGJ .navbar {
    height: 70px;
  }
  .cid-uMqqeNSyGJ .navbar.opened {
    height: auto;
  }
  .cid-uMqqeNSyGJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMqqeOftCd {
  background-image: url("../../../assets/images/bayport-ny-1.jpg");
}
.cid-uMqqeOftCd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqeOftCd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqqeOftCd .mbr-section-title {
  color: #ffffff;
}
.cid-uMqqeOftCd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMqqeOyJGl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqqeOyJGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqeOyJGl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqqeOyJGl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqqeOyJGl .row {
  flex-direction: row-reverse;
}
.cid-uMqqeOyJGl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqqeOyJGl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqqeONSiA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqqeONSiA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqeONSiA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqqeONSiA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqqeONSiA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqqeONSiA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqqeONSiA .mbr-section-title {
  text-align: left;
}
.cid-uMqqeP2vhU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMqqeP2vhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqeP2vhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMqqeP2vhU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMqqeP2vhU .row {
  flex-direction: row-reverse;
}
.cid-uMqqeP2vhU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMqqeP2vhU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMqqePkUvF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMqqePkUvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqePkUvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqqePkUvF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMqqePkUvF .panel-group {
  border: none;
}
.cid-uMqqePkUvF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMqqePkUvF .panel-body,
.cid-uMqqePkUvF .card-header {
  padding: 1rem 0;
}
.cid-uMqqePkUvF .panel-title-edit {
  color: #000000;
}
.cid-uMqqePkUvF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMqqePEfBM {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMqqePEfBM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqqePEfBM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqqePEfBM .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMqqePEfBM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMqqePEfBM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMqqePEfBM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMqqePEfBM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMqqePYECG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMqqePYECG .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMqqePYECG .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMqqePYECG .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMqqePYECG .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMqqePYECG .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMqqePYECG .row .foot-menu li p {
  margin: 0;
}
.cid-uMqqePYECG .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMqqePYECG .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMqqePYECG .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMqqePYECG .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMqqePYECG .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMqqePYECG .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMqqePYECG .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMqqePYECG .row .row-copirayt p {
  width: 100%;
}
.cid-u4M1oemjqq .navbar-dropdown {
  position: relative !important;
}
.cid-u4M1oemjqq .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-u4M1oemjqq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u4M1oemjqq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u4M1oemjqq .dropdown-item:hover,
.cid-u4M1oemjqq .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-u4M1oemjqq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u4M1oemjqq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u4M1oemjqq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u4M1oemjqq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4M1oemjqq .nav-link {
  position: relative;
}
.cid-u4M1oemjqq .container {
  display: flex;
  margin: auto;
}
.cid-u4M1oemjqq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4M1oemjqq .dropdown-menu,
.cid-u4M1oemjqq .navbar.opened {
  background: #fafafa !important;
}
.cid-u4M1oemjqq .nav-item:focus,
.cid-u4M1oemjqq .nav-link:focus {
  outline: none;
}
.cid-u4M1oemjqq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4M1oemjqq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4M1oemjqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4M1oemjqq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4M1oemjqq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4M1oemjqq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4M1oemjqq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-u4M1oemjqq .navbar.opened {
  transition: all 0.3s;
}
.cid-u4M1oemjqq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4M1oemjqq .navbar .navbar-logo img {
  width: auto;
}
.cid-u4M1oemjqq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4M1oemjqq .navbar.collapsed {
  justify-content: center;
}
.cid-u4M1oemjqq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4M1oemjqq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4M1oemjqq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-u4M1oemjqq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4M1oemjqq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4M1oemjqq .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-u4M1oemjqq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4M1oemjqq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4M1oemjqq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4M1oemjqq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4M1oemjqq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4M1oemjqq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4M1oemjqq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4M1oemjqq .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-u4M1oemjqq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4M1oemjqq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4M1oemjqq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4M1oemjqq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4M1oemjqq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4M1oemjqq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4M1oemjqq .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4M1oemjqq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4M1oemjqq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4M1oemjqq .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-u4M1oemjqq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4M1oemjqq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4M1oemjqq .dropdown-item.active,
.cid-u4M1oemjqq .dropdown-item:active {
  background-color: transparent;
}
.cid-u4M1oemjqq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4M1oemjqq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4M1oemjqq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4M1oemjqq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-u4M1oemjqq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4M1oemjqq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4M1oemjqq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4M1oemjqq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u4M1oemjqq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4M1oemjqq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u4M1oemjqq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4M1oemjqq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4M1oemjqq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4M1oemjqq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4M1oemjqq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4M1oemjqq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4M1oemjqq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4M1oemjqq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4M1oemjqq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-u4M1oemjqq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4M1oemjqq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4M1oemjqq .navbar {
    height: 70px;
  }
  .cid-u4M1oemjqq .navbar.opened {
    height: auto;
  }
  .cid-u4M1oemjqq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4MpfzSj9o {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4MpfzSj9o img,
.cid-u4MpfzSj9o .item-img {
  width: 100%;
}
.cid-u4MpfzSj9o .item:focus,
.cid-u4MpfzSj9o span:focus {
  outline: none;
}
.cid-u4MpfzSj9o .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4MpfzSj9o .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4MpfzSj9o .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4MpfzSj9o .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4MpfzSj9o .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4MpfzSj9o .mbr-section-title {
  color: #232323;
}
.cid-u4MpfzSj9o .mbr-text,
.cid-u4MpfzSj9o .mbr-section-btn {
  text-align: left;
}
.cid-u4MpfzSj9o .item-title {
  text-align: left;
}
.cid-u4MpfzSj9o .item-subtitle {
  text-align: center;
}
.cid-uLY46GaG5p {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-uLY46GaG5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLY46GaG5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLY46GaG5p .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uLY46GaG5p .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uLY46GaG5p .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uLY46GaG5p .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uLY46GaG5p .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uLY46GaG5p .content-head {
  max-width: 800px;
}
.cid-u4M1ofB87K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-u4M1ofB87K .row-links {
  width: 100%;
  justify-content: center;
}
.cid-u4M1ofB87K .social-row {
  width: 100%;
  justify-content: center;
}
.cid-u4M1ofB87K .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-u4M1ofB87K .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-u4M1ofB87K .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-u4M1ofB87K .row .foot-menu li p {
  margin: 0;
}
.cid-u4M1ofB87K .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-u4M1ofB87K .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-u4M1ofB87K .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u4M1ofB87K .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-u4M1ofB87K .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u4M1ofB87K .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u4M1ofB87K .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-u4M1ofB87K .row .row-copirayt p {
  width: 100%;
}
.cid-uMHswKD0dj .navbar-dropdown {
  position: relative !important;
}
.cid-uMHswKD0dj .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-uMHswKD0dj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMHswKD0dj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMHswKD0dj .dropdown-item:hover,
.cid-uMHswKD0dj .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMHswKD0dj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMHswKD0dj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMHswKD0dj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMHswKD0dj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMHswKD0dj .nav-link {
  position: relative;
}
.cid-uMHswKD0dj .container {
  display: flex;
  margin: auto;
}
.cid-uMHswKD0dj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMHswKD0dj .dropdown-menu,
.cid-uMHswKD0dj .navbar.opened {
  background: #fafafa !important;
}
.cid-uMHswKD0dj .nav-item:focus,
.cid-uMHswKD0dj .nav-link:focus {
  outline: none;
}
.cid-uMHswKD0dj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMHswKD0dj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMHswKD0dj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMHswKD0dj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMHswKD0dj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMHswKD0dj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMHswKD0dj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMHswKD0dj .navbar.opened {
  transition: all 0.3s;
}
.cid-uMHswKD0dj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMHswKD0dj .navbar .navbar-logo img {
  width: auto;
}
.cid-uMHswKD0dj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMHswKD0dj .navbar.collapsed {
  justify-content: center;
}
.cid-uMHswKD0dj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMHswKD0dj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMHswKD0dj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMHswKD0dj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMHswKD0dj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMHswKD0dj .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-uMHswKD0dj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMHswKD0dj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMHswKD0dj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMHswKD0dj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMHswKD0dj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMHswKD0dj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMHswKD0dj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMHswKD0dj .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-uMHswKD0dj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMHswKD0dj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMHswKD0dj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMHswKD0dj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMHswKD0dj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMHswKD0dj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMHswKD0dj .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMHswKD0dj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMHswKD0dj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMHswKD0dj .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-uMHswKD0dj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMHswKD0dj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMHswKD0dj .dropdown-item.active,
.cid-uMHswKD0dj .dropdown-item:active {
  background-color: transparent;
}
.cid-uMHswKD0dj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMHswKD0dj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMHswKD0dj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMHswKD0dj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMHswKD0dj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMHswKD0dj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMHswKD0dj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMHswKD0dj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMHswKD0dj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMHswKD0dj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMHswKD0dj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMHswKD0dj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHswKD0dj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHswKD0dj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMHswKD0dj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHswKD0dj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMHswKD0dj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMHswKD0dj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHswKD0dj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMHswKD0dj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMHswKD0dj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMHswKD0dj .navbar {
    height: 70px;
  }
  .cid-uMHswKD0dj .navbar.opened {
    height: auto;
  }
  .cid-uMHswKD0dj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMHswKVt0e {
  background-image: url("../../../assets/images/bellport-ny-1.jpg");
}
.cid-uMHswKVt0e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswKVt0e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHswKVt0e .mbr-section-title {
  color: #ffffff;
}
.cid-uMHswKVt0e .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMHswL80SM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHswL80SM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswL80SM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHswL80SM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHswL80SM .row {
  flex-direction: row-reverse;
}
.cid-uMHswL80SM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHswL80SM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHswLoZT2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHswLoZT2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswLoZT2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHswLoZT2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHswLoZT2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHswLoZT2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHswLoZT2 .mbr-section-title {
  text-align: left;
}
.cid-uMHswLCPUC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHswLCPUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswLCPUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHswLCPUC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHswLCPUC .row {
  flex-direction: row-reverse;
}
.cid-uMHswLCPUC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHswLCPUC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHswLSyfi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHswLSyfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswLSyfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHswLSyfi .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMHswLSyfi .panel-group {
  border: none;
}
.cid-uMHswLSyfi .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMHswLSyfi .panel-body,
.cid-uMHswLSyfi .card-header {
  padding: 1rem 0;
}
.cid-uMHswLSyfi .panel-title-edit {
  color: #000000;
}
.cid-uMHswLSyfi .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMHswMbQsy {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMHswMbQsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHswMbQsy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHswMbQsy .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMHswMbQsy .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMHswMbQsy .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMHswMbQsy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMHswMbQsy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMHswMsAFR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMHswMsAFR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMHswMsAFR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMHswMsAFR .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMHswMsAFR .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMHswMsAFR .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMHswMsAFR .row .foot-menu li p {
  margin: 0;
}
.cid-uMHswMsAFR .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMHswMsAFR .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMHswMsAFR .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMHswMsAFR .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMHswMsAFR .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMHswMsAFR .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMHswMsAFR .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMHswMsAFR .row .row-copirayt p {
  width: 100%;
}
.cid-uMHv2gJERc .navbar-dropdown {
  position: relative !important;
}
.cid-uMHv2gJERc .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-uMHv2gJERc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMHv2gJERc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMHv2gJERc .dropdown-item:hover,
.cid-uMHv2gJERc .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMHv2gJERc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMHv2gJERc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMHv2gJERc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMHv2gJERc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMHv2gJERc .nav-link {
  position: relative;
}
.cid-uMHv2gJERc .container {
  display: flex;
  margin: auto;
}
.cid-uMHv2gJERc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMHv2gJERc .dropdown-menu,
.cid-uMHv2gJERc .navbar.opened {
  background: #fafafa !important;
}
.cid-uMHv2gJERc .nav-item:focus,
.cid-uMHv2gJERc .nav-link:focus {
  outline: none;
}
.cid-uMHv2gJERc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMHv2gJERc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMHv2gJERc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMHv2gJERc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMHv2gJERc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMHv2gJERc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMHv2gJERc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMHv2gJERc .navbar.opened {
  transition: all 0.3s;
}
.cid-uMHv2gJERc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMHv2gJERc .navbar .navbar-logo img {
  width: auto;
}
.cid-uMHv2gJERc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMHv2gJERc .navbar.collapsed {
  justify-content: center;
}
.cid-uMHv2gJERc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMHv2gJERc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMHv2gJERc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMHv2gJERc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMHv2gJERc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMHv2gJERc .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-uMHv2gJERc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMHv2gJERc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMHv2gJERc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMHv2gJERc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMHv2gJERc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMHv2gJERc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMHv2gJERc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMHv2gJERc .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-uMHv2gJERc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMHv2gJERc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMHv2gJERc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMHv2gJERc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMHv2gJERc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMHv2gJERc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMHv2gJERc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMHv2gJERc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMHv2gJERc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMHv2gJERc .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-uMHv2gJERc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMHv2gJERc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMHv2gJERc .dropdown-item.active,
.cid-uMHv2gJERc .dropdown-item:active {
  background-color: transparent;
}
.cid-uMHv2gJERc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMHv2gJERc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMHv2gJERc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMHv2gJERc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMHv2gJERc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMHv2gJERc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMHv2gJERc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMHv2gJERc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMHv2gJERc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMHv2gJERc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMHv2gJERc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMHv2gJERc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHv2gJERc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHv2gJERc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMHv2gJERc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHv2gJERc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMHv2gJERc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMHv2gJERc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHv2gJERc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMHv2gJERc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMHv2gJERc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMHv2gJERc .navbar {
    height: 70px;
  }
  .cid-uMHv2gJERc .navbar.opened {
    height: auto;
  }
  .cid-uMHv2gJERc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMHv2h4f8p {
  background-image: url("../../../assets/images/blue-point-ny-1.jpg");
}
.cid-uMHv2h4f8p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2h4f8p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHv2h4f8p .mbr-section-title {
  color: #ffffff;
}
.cid-uMHv2h4f8p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMHv2hkLtB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHv2hkLtB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2hkLtB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHv2hkLtB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHv2hkLtB .row {
  flex-direction: row-reverse;
}
.cid-uMHv2hkLtB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHv2hkLtB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHv2hz53B {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHv2hz53B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2hz53B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHv2hz53B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHv2hz53B img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHv2hz53B .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHv2hz53B .mbr-section-title {
  text-align: left;
}
.cid-uMHv2hOhU8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHv2hOhU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2hOhU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHv2hOhU8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHv2hOhU8 .row {
  flex-direction: row-reverse;
}
.cid-uMHv2hOhU8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHv2hOhU8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHv2i4TFV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHv2i4TFV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2i4TFV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHv2i4TFV .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMHv2i4TFV .panel-group {
  border: none;
}
.cid-uMHv2i4TFV .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMHv2i4TFV .panel-body,
.cid-uMHv2i4TFV .card-header {
  padding: 1rem 0;
}
.cid-uMHv2i4TFV .panel-title-edit {
  color: #000000;
}
.cid-uMHv2i4TFV .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMHv2injj0 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMHv2injj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHv2injj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHv2injj0 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMHv2injj0 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMHv2injj0 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMHv2injj0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMHv2injj0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMHv2iGuve {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMHv2iGuve .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMHv2iGuve .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMHv2iGuve .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMHv2iGuve .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMHv2iGuve .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMHv2iGuve .row .foot-menu li p {
  margin: 0;
}
.cid-uMHv2iGuve .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMHv2iGuve .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMHv2iGuve .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMHv2iGuve .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMHv2iGuve .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMHv2iGuve .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMHv2iGuve .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMHv2iGuve .row .row-copirayt p {
  width: 100%;
}
.cid-uMHD09T5RQ .navbar-dropdown {
  position: relative !important;
}
.cid-uMHD09T5RQ .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-uMHD09T5RQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMHD09T5RQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMHD09T5RQ .dropdown-item:hover,
.cid-uMHD09T5RQ .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMHD09T5RQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMHD09T5RQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMHD09T5RQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMHD09T5RQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMHD09T5RQ .nav-link {
  position: relative;
}
.cid-uMHD09T5RQ .container {
  display: flex;
  margin: auto;
}
.cid-uMHD09T5RQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMHD09T5RQ .dropdown-menu,
.cid-uMHD09T5RQ .navbar.opened {
  background: #fafafa !important;
}
.cid-uMHD09T5RQ .nav-item:focus,
.cid-uMHD09T5RQ .nav-link:focus {
  outline: none;
}
.cid-uMHD09T5RQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMHD09T5RQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMHD09T5RQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMHD09T5RQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMHD09T5RQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMHD09T5RQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMHD09T5RQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMHD09T5RQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uMHD09T5RQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMHD09T5RQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uMHD09T5RQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMHD09T5RQ .navbar.collapsed {
  justify-content: center;
}
.cid-uMHD09T5RQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMHD09T5RQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMHD09T5RQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMHD09T5RQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMHD09T5RQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMHD09T5RQ .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-uMHD09T5RQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMHD09T5RQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMHD09T5RQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMHD09T5RQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMHD09T5RQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMHD09T5RQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMHD09T5RQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMHD09T5RQ .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-uMHD09T5RQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMHD09T5RQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMHD09T5RQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMHD09T5RQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMHD09T5RQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMHD09T5RQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMHD09T5RQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMHD09T5RQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMHD09T5RQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMHD09T5RQ .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-uMHD09T5RQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMHD09T5RQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMHD09T5RQ .dropdown-item.active,
.cid-uMHD09T5RQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uMHD09T5RQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMHD09T5RQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMHD09T5RQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMHD09T5RQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMHD09T5RQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMHD09T5RQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMHD09T5RQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMHD09T5RQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMHD09T5RQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMHD09T5RQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMHD09T5RQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMHD09T5RQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHD09T5RQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHD09T5RQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMHD09T5RQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHD09T5RQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMHD09T5RQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMHD09T5RQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHD09T5RQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMHD09T5RQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMHD09T5RQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMHD09T5RQ .navbar {
    height: 70px;
  }
  .cid-uMHD09T5RQ .navbar.opened {
    height: auto;
  }
  .cid-uMHD09T5RQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMHD0ad1Pv {
  background-image: url("../../../assets/images/bohemia-ny-1.jpg");
}
.cid-uMHD0ad1Pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0ad1Pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHD0ad1Pv .mbr-section-title {
  color: #ffffff;
}
.cid-uMHD0ad1Pv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMHD0atW42 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHD0atW42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0atW42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHD0atW42 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHD0atW42 .row {
  flex-direction: row-reverse;
}
.cid-uMHD0atW42 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHD0atW42 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHD0aI0ga {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHD0aI0ga .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0aI0ga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHD0aI0ga .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHD0aI0ga img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHD0aI0ga .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHD0aI0ga .mbr-section-title {
  text-align: left;
}
.cid-uMHD0aYnb9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHD0aYnb9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0aYnb9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHD0aYnb9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHD0aYnb9 .row {
  flex-direction: row-reverse;
}
.cid-uMHD0aYnb9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHD0aYnb9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHD0beYvF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHD0beYvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0beYvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHD0beYvF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMHD0beYvF .panel-group {
  border: none;
}
.cid-uMHD0beYvF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMHD0beYvF .panel-body,
.cid-uMHD0beYvF .card-header {
  padding: 1rem 0;
}
.cid-uMHD0beYvF .panel-title-edit {
  color: #000000;
}
.cid-uMHD0beYvF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMHD0bxpGj {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMHD0bxpGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHD0bxpGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHD0bxpGj .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMHD0bxpGj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMHD0bxpGj .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMHD0bxpGj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMHD0bxpGj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMHD0bOAov {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMHD0bOAov .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMHD0bOAov .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMHD0bOAov .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMHD0bOAov .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMHD0bOAov .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMHD0bOAov .row .foot-menu li p {
  margin: 0;
}
.cid-uMHD0bOAov .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMHD0bOAov .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMHD0bOAov .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMHD0bOAov .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMHD0bOAov .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMHD0bOAov .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMHD0bOAov .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMHD0bOAov .row .row-copirayt p {
  width: 100%;
}
.cid-uMHIoBOFBi .navbar-dropdown {
  position: relative !important;
}
.cid-uMHIoBOFBi .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-uMHIoBOFBi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMHIoBOFBi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMHIoBOFBi .dropdown-item:hover,
.cid-uMHIoBOFBi .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMHIoBOFBi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMHIoBOFBi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMHIoBOFBi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMHIoBOFBi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMHIoBOFBi .nav-link {
  position: relative;
}
.cid-uMHIoBOFBi .container {
  display: flex;
  margin: auto;
}
.cid-uMHIoBOFBi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMHIoBOFBi .dropdown-menu,
.cid-uMHIoBOFBi .navbar.opened {
  background: #fafafa !important;
}
.cid-uMHIoBOFBi .nav-item:focus,
.cid-uMHIoBOFBi .nav-link:focus {
  outline: none;
}
.cid-uMHIoBOFBi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMHIoBOFBi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMHIoBOFBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMHIoBOFBi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMHIoBOFBi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMHIoBOFBi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMHIoBOFBi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMHIoBOFBi .navbar.opened {
  transition: all 0.3s;
}
.cid-uMHIoBOFBi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMHIoBOFBi .navbar .navbar-logo img {
  width: auto;
}
.cid-uMHIoBOFBi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMHIoBOFBi .navbar.collapsed {
  justify-content: center;
}
.cid-uMHIoBOFBi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMHIoBOFBi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMHIoBOFBi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMHIoBOFBi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMHIoBOFBi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMHIoBOFBi .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-uMHIoBOFBi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMHIoBOFBi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMHIoBOFBi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMHIoBOFBi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMHIoBOFBi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMHIoBOFBi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMHIoBOFBi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMHIoBOFBi .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-uMHIoBOFBi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMHIoBOFBi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMHIoBOFBi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMHIoBOFBi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMHIoBOFBi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMHIoBOFBi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMHIoBOFBi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMHIoBOFBi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMHIoBOFBi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMHIoBOFBi .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-uMHIoBOFBi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMHIoBOFBi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMHIoBOFBi .dropdown-item.active,
.cid-uMHIoBOFBi .dropdown-item:active {
  background-color: transparent;
}
.cid-uMHIoBOFBi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMHIoBOFBi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMHIoBOFBi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMHIoBOFBi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMHIoBOFBi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMHIoBOFBi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMHIoBOFBi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMHIoBOFBi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMHIoBOFBi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMHIoBOFBi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMHIoBOFBi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMHIoBOFBi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHIoBOFBi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMHIoBOFBi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMHIoBOFBi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHIoBOFBi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMHIoBOFBi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMHIoBOFBi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMHIoBOFBi .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMHIoBOFBi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMHIoBOFBi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMHIoBOFBi .navbar {
    height: 70px;
  }
  .cid-uMHIoBOFBi .navbar.opened {
    height: auto;
  }
  .cid-uMHIoBOFBi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMHIoChx0J {
  background-image: url("../../../assets/images/brentwood-ny-1.jpg");
}
.cid-uMHIoChx0J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoChx0J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHIoChx0J .mbr-section-title {
  color: #ffffff;
}
.cid-uMHIoChx0J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMHIoCIhOa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHIoCIhOa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoCIhOa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHIoCIhOa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHIoCIhOa .row {
  flex-direction: row-reverse;
}
.cid-uMHIoCIhOa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHIoCIhOa .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHIoD59ei {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHIoD59ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoD59ei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHIoD59ei .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHIoD59ei img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHIoD59ei .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHIoD59ei .mbr-section-title {
  text-align: left;
}
.cid-uMHIoDtJ17 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMHIoDtJ17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoDtJ17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMHIoDtJ17 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMHIoDtJ17 .row {
  flex-direction: row-reverse;
}
.cid-uMHIoDtJ17 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMHIoDtJ17 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMHIoDSuef {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMHIoDSuef .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoDSuef .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHIoDSuef .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMHIoDSuef .panel-group {
  border: none;
}
.cid-uMHIoDSuef .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMHIoDSuef .panel-body,
.cid-uMHIoDSuef .card-header {
  padding: 1rem 0;
}
.cid-uMHIoDSuef .panel-title-edit {
  color: #000000;
}
.cid-uMHIoDSuef .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMHIoEjOKo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMHIoEjOKo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMHIoEjOKo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMHIoEjOKo .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMHIoEjOKo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMHIoEjOKo .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMHIoEjOKo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMHIoEjOKo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMHIoEKhWJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMHIoEKhWJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMHIoEKhWJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMHIoEKhWJ .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMHIoEKhWJ .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMHIoEKhWJ .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMHIoEKhWJ .row .foot-menu li p {
  margin: 0;
}
.cid-uMHIoEKhWJ .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMHIoEKhWJ .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMHIoEKhWJ .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMHIoEKhWJ .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMHIoEKhWJ .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMHIoEKhWJ .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMHIoEKhWJ .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMHIoEKhWJ .row .row-copirayt p {
  width: 100%;
}
.cid-uM2rQwcQAh .navbar-dropdown {
  position: relative !important;
}
.cid-uM2rQwcQAh .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-uM2rQwcQAh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uM2rQwcQAh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uM2rQwcQAh .dropdown-item:hover,
.cid-uM2rQwcQAh .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uM2rQwcQAh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uM2rQwcQAh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uM2rQwcQAh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uM2rQwcQAh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uM2rQwcQAh .nav-link {
  position: relative;
}
.cid-uM2rQwcQAh .container {
  display: flex;
  margin: auto;
}
.cid-uM2rQwcQAh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uM2rQwcQAh .dropdown-menu,
.cid-uM2rQwcQAh .navbar.opened {
  background: #fafafa !important;
}
.cid-uM2rQwcQAh .nav-item:focus,
.cid-uM2rQwcQAh .nav-link:focus {
  outline: none;
}
.cid-uM2rQwcQAh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uM2rQwcQAh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uM2rQwcQAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uM2rQwcQAh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uM2rQwcQAh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uM2rQwcQAh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uM2rQwcQAh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uM2rQwcQAh .navbar.opened {
  transition: all 0.3s;
}
.cid-uM2rQwcQAh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uM2rQwcQAh .navbar .navbar-logo img {
  width: auto;
}
.cid-uM2rQwcQAh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uM2rQwcQAh .navbar.collapsed {
  justify-content: center;
}
.cid-uM2rQwcQAh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uM2rQwcQAh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uM2rQwcQAh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uM2rQwcQAh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uM2rQwcQAh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uM2rQwcQAh .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-uM2rQwcQAh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uM2rQwcQAh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uM2rQwcQAh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uM2rQwcQAh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uM2rQwcQAh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uM2rQwcQAh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uM2rQwcQAh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uM2rQwcQAh .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-uM2rQwcQAh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uM2rQwcQAh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uM2rQwcQAh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uM2rQwcQAh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uM2rQwcQAh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uM2rQwcQAh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uM2rQwcQAh .navbar.navbar-short {
  min-height: 60px;
}
.cid-uM2rQwcQAh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uM2rQwcQAh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uM2rQwcQAh .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-uM2rQwcQAh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uM2rQwcQAh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uM2rQwcQAh .dropdown-item.active,
.cid-uM2rQwcQAh .dropdown-item:active {
  background-color: transparent;
}
.cid-uM2rQwcQAh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uM2rQwcQAh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uM2rQwcQAh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uM2rQwcQAh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uM2rQwcQAh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uM2rQwcQAh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uM2rQwcQAh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uM2rQwcQAh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uM2rQwcQAh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uM2rQwcQAh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uM2rQwcQAh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uM2rQwcQAh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM2rQwcQAh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uM2rQwcQAh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uM2rQwcQAh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM2rQwcQAh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uM2rQwcQAh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uM2rQwcQAh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uM2rQwcQAh .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uM2rQwcQAh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uM2rQwcQAh .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uM2rQwcQAh .navbar {
    height: 70px;
  }
  .cid-uM2rQwcQAh .navbar.opened {
    height: auto;
  }
  .cid-uM2rQwcQAh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM2rQwwITN {
  background-image: url("../../../assets/images/amagansett-ny-1.jpg");
}
.cid-uM2rQwwITN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQwwITN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2rQwwITN .mbr-section-title {
  color: #ffffff;
}
.cid-uM2rQwwITN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uM2rQwKNME {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM2rQwKNME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQwKNME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2rQwKNME .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2rQwKNME .row {
  flex-direction: row-reverse;
}
.cid-uM2rQwKNME img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2rQwKNME .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2rQx1mvj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM2rQx1mvj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQx1mvj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2rQx1mvj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2rQx1mvj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2rQx1mvj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2rQx1mvj .mbr-section-title {
  text-align: left;
}
.cid-uM2rQxjwUo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uM2rQxjwUo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQxjwUo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uM2rQxjwUo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uM2rQxjwUo .row {
  flex-direction: row-reverse;
}
.cid-uM2rQxjwUo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uM2rQxjwUo .text-wrapper {
    padding: 2rem;
  }
}
.cid-uM2rQxyv1z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uM2rQxyv1z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQxyv1z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2rQxyv1z .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uM2rQxyv1z .panel-group {
  border: none;
}
.cid-uM2rQxyv1z .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uM2rQxyv1z .panel-body,
.cid-uM2rQxyv1z .card-header {
  padding: 1rem 0;
}
.cid-uM2rQxyv1z .panel-title-edit {
  color: #000000;
}
.cid-uM2rQxyv1z .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uM2rQxSPyo {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uM2rQxSPyo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uM2rQxSPyo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uM2rQxSPyo .google-map {
  height: 30rem;
  position: relative;
}
.cid-uM2rQxSPyo .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uM2rQxSPyo .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uM2rQxSPyo .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uM2rQxSPyo .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uM2rQyaS7I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uM2rQyaS7I .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uM2rQyaS7I .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uM2rQyaS7I .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uM2rQyaS7I .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uM2rQyaS7I .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uM2rQyaS7I .row .foot-menu li p {
  margin: 0;
}
.cid-uM2rQyaS7I .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uM2rQyaS7I .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uM2rQyaS7I .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uM2rQyaS7I .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uM2rQyaS7I .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uM2rQyaS7I .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uM2rQyaS7I .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uM2rQyaS7I .row .row-copirayt p {
  width: 100%;
}
.cid-uMZr21H5WY .navbar-dropdown {
  position: relative !important;
}
.cid-uMZr21H5WY .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-uMZr21H5WY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMZr21H5WY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMZr21H5WY .dropdown-item:hover,
.cid-uMZr21H5WY .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMZr21H5WY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMZr21H5WY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMZr21H5WY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMZr21H5WY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMZr21H5WY .nav-link {
  position: relative;
}
.cid-uMZr21H5WY .container {
  display: flex;
  margin: auto;
}
.cid-uMZr21H5WY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMZr21H5WY .dropdown-menu,
.cid-uMZr21H5WY .navbar.opened {
  background: #fafafa !important;
}
.cid-uMZr21H5WY .nav-item:focus,
.cid-uMZr21H5WY .nav-link:focus {
  outline: none;
}
.cid-uMZr21H5WY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMZr21H5WY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMZr21H5WY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMZr21H5WY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMZr21H5WY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMZr21H5WY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMZr21H5WY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMZr21H5WY .navbar.opened {
  transition: all 0.3s;
}
.cid-uMZr21H5WY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMZr21H5WY .navbar .navbar-logo img {
  width: auto;
}
.cid-uMZr21H5WY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMZr21H5WY .navbar.collapsed {
  justify-content: center;
}
.cid-uMZr21H5WY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMZr21H5WY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMZr21H5WY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMZr21H5WY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMZr21H5WY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMZr21H5WY .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-uMZr21H5WY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMZr21H5WY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMZr21H5WY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMZr21H5WY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMZr21H5WY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMZr21H5WY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMZr21H5WY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMZr21H5WY .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-uMZr21H5WY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMZr21H5WY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMZr21H5WY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMZr21H5WY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMZr21H5WY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMZr21H5WY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMZr21H5WY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMZr21H5WY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMZr21H5WY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMZr21H5WY .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-uMZr21H5WY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMZr21H5WY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMZr21H5WY .dropdown-item.active,
.cid-uMZr21H5WY .dropdown-item:active {
  background-color: transparent;
}
.cid-uMZr21H5WY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMZr21H5WY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMZr21H5WY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMZr21H5WY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMZr21H5WY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMZr21H5WY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMZr21H5WY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMZr21H5WY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMZr21H5WY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMZr21H5WY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMZr21H5WY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMZr21H5WY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZr21H5WY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZr21H5WY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMZr21H5WY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZr21H5WY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMZr21H5WY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMZr21H5WY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZr21H5WY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMZr21H5WY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMZr21H5WY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMZr21H5WY .navbar {
    height: 70px;
  }
  .cid-uMZr21H5WY .navbar.opened {
    height: auto;
  }
  .cid-uMZr21H5WY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMZr220ogR {
  background-image: url("../../../assets/images/bridgehampton-ny-1.jpg");
}
.cid-uMZr220ogR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr220ogR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZr220ogR .mbr-section-title {
  color: #ffffff;
}
.cid-uMZr220ogR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMZr22gvB7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZr22gvB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr22gvB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZr22gvB7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZr22gvB7 .row {
  flex-direction: row-reverse;
}
.cid-uMZr22gvB7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZr22gvB7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZr22t1Nh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZr22t1Nh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr22t1Nh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZr22t1Nh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZr22t1Nh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZr22t1Nh .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZr22t1Nh .mbr-section-title {
  text-align: left;
}
.cid-uMZr22GfDH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZr22GfDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr22GfDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZr22GfDH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZr22GfDH .row {
  flex-direction: row-reverse;
}
.cid-uMZr22GfDH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZr22GfDH .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZr22TYOF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZr22TYOF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr22TYOF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZr22TYOF .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMZr22TYOF .panel-group {
  border: none;
}
.cid-uMZr22TYOF .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMZr22TYOF .panel-body,
.cid-uMZr22TYOF .card-header {
  padding: 1rem 0;
}
.cid-uMZr22TYOF .panel-title-edit {
  color: #000000;
}
.cid-uMZr22TYOF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMZr239HkQ {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMZr239HkQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZr239HkQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZr239HkQ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMZr239HkQ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMZr239HkQ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMZr239HkQ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMZr239HkQ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMZr23n9EE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMZr23n9EE .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMZr23n9EE .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMZr23n9EE .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMZr23n9EE .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMZr23n9EE .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMZr23n9EE .row .foot-menu li p {
  margin: 0;
}
.cid-uMZr23n9EE .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMZr23n9EE .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMZr23n9EE .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMZr23n9EE .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMZr23n9EE .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMZr23n9EE .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMZr23n9EE .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMZr23n9EE .row .row-copirayt p {
  width: 100%;
}
.cid-uMZutcg7FH .navbar-dropdown {
  position: relative !important;
}
.cid-uMZutcg7FH .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-uMZutcg7FH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMZutcg7FH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMZutcg7FH .dropdown-item:hover,
.cid-uMZutcg7FH .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMZutcg7FH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMZutcg7FH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMZutcg7FH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMZutcg7FH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMZutcg7FH .nav-link {
  position: relative;
}
.cid-uMZutcg7FH .container {
  display: flex;
  margin: auto;
}
.cid-uMZutcg7FH .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMZutcg7FH .dropdown-menu,
.cid-uMZutcg7FH .navbar.opened {
  background: #fafafa !important;
}
.cid-uMZutcg7FH .nav-item:focus,
.cid-uMZutcg7FH .nav-link:focus {
  outline: none;
}
.cid-uMZutcg7FH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMZutcg7FH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMZutcg7FH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMZutcg7FH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMZutcg7FH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMZutcg7FH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMZutcg7FH .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMZutcg7FH .navbar.opened {
  transition: all 0.3s;
}
.cid-uMZutcg7FH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMZutcg7FH .navbar .navbar-logo img {
  width: auto;
}
.cid-uMZutcg7FH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMZutcg7FH .navbar.collapsed {
  justify-content: center;
}
.cid-uMZutcg7FH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMZutcg7FH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMZutcg7FH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMZutcg7FH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMZutcg7FH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMZutcg7FH .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-uMZutcg7FH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMZutcg7FH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMZutcg7FH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMZutcg7FH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMZutcg7FH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMZutcg7FH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMZutcg7FH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMZutcg7FH .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-uMZutcg7FH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMZutcg7FH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMZutcg7FH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMZutcg7FH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMZutcg7FH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMZutcg7FH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMZutcg7FH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMZutcg7FH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMZutcg7FH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMZutcg7FH .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-uMZutcg7FH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMZutcg7FH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMZutcg7FH .dropdown-item.active,
.cid-uMZutcg7FH .dropdown-item:active {
  background-color: transparent;
}
.cid-uMZutcg7FH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMZutcg7FH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMZutcg7FH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMZutcg7FH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMZutcg7FH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMZutcg7FH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMZutcg7FH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMZutcg7FH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMZutcg7FH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMZutcg7FH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMZutcg7FH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMZutcg7FH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZutcg7FH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZutcg7FH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMZutcg7FH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZutcg7FH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMZutcg7FH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMZutcg7FH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZutcg7FH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMZutcg7FH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMZutcg7FH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMZutcg7FH .navbar {
    height: 70px;
  }
  .cid-uMZutcg7FH .navbar.opened {
    height: auto;
  }
  .cid-uMZutcg7FH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMZutcyY3I {
  background-image: url("../../../assets/images/brightwaters-ny-1.jpg");
}
.cid-uMZutcyY3I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutcyY3I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZutcyY3I .mbr-section-title {
  color: #ffffff;
}
.cid-uMZutcyY3I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMZutcK2x1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZutcK2x1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutcK2x1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZutcK2x1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZutcK2x1 .row {
  flex-direction: row-reverse;
}
.cid-uMZutcK2x1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZutcK2x1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZutcWWp2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZutcWWp2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutcWWp2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZutcWWp2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZutcWWp2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZutcWWp2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZutcWWp2 .mbr-section-title {
  text-align: left;
}
.cid-uMZutd8GNh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZutd8GNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutd8GNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZutd8GNh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZutd8GNh .row {
  flex-direction: row-reverse;
}
.cid-uMZutd8GNh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZutd8GNh .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZutdlAEt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZutdlAEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutdlAEt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZutdlAEt .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMZutdlAEt .panel-group {
  border: none;
}
.cid-uMZutdlAEt .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMZutdlAEt .panel-body,
.cid-uMZutdlAEt .card-header {
  padding: 1rem 0;
}
.cid-uMZutdlAEt .panel-title-edit {
  color: #000000;
}
.cid-uMZutdlAEt .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMZutdBdQF {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMZutdBdQF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZutdBdQF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZutdBdQF .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMZutdBdQF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMZutdBdQF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMZutdBdQF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMZutdBdQF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMZutdPeo5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMZutdPeo5 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMZutdPeo5 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMZutdPeo5 .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMZutdPeo5 .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMZutdPeo5 .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMZutdPeo5 .row .foot-menu li p {
  margin: 0;
}
.cid-uMZutdPeo5 .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMZutdPeo5 .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMZutdPeo5 .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMZutdPeo5 .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMZutdPeo5 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMZutdPeo5 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMZutdPeo5 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMZutdPeo5 .row .row-copirayt p {
  width: 100%;
}
.cid-uMZyqfcLLt .navbar-dropdown {
  position: relative !important;
}
.cid-uMZyqfcLLt .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-uMZyqfcLLt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uMZyqfcLLt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uMZyqfcLLt .dropdown-item:hover,
.cid-uMZyqfcLLt .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uMZyqfcLLt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uMZyqfcLLt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uMZyqfcLLt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uMZyqfcLLt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uMZyqfcLLt .nav-link {
  position: relative;
}
.cid-uMZyqfcLLt .container {
  display: flex;
  margin: auto;
}
.cid-uMZyqfcLLt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMZyqfcLLt .dropdown-menu,
.cid-uMZyqfcLLt .navbar.opened {
  background: #fafafa !important;
}
.cid-uMZyqfcLLt .nav-item:focus,
.cid-uMZyqfcLLt .nav-link:focus {
  outline: none;
}
.cid-uMZyqfcLLt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMZyqfcLLt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMZyqfcLLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMZyqfcLLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMZyqfcLLt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMZyqfcLLt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMZyqfcLLt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uMZyqfcLLt .navbar.opened {
  transition: all 0.3s;
}
.cid-uMZyqfcLLt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMZyqfcLLt .navbar .navbar-logo img {
  width: auto;
}
.cid-uMZyqfcLLt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uMZyqfcLLt .navbar.collapsed {
  justify-content: center;
}
.cid-uMZyqfcLLt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMZyqfcLLt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMZyqfcLLt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uMZyqfcLLt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMZyqfcLLt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMZyqfcLLt .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-uMZyqfcLLt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMZyqfcLLt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMZyqfcLLt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uMZyqfcLLt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMZyqfcLLt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMZyqfcLLt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMZyqfcLLt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMZyqfcLLt .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-uMZyqfcLLt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMZyqfcLLt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMZyqfcLLt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMZyqfcLLt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uMZyqfcLLt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMZyqfcLLt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMZyqfcLLt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMZyqfcLLt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMZyqfcLLt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMZyqfcLLt .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-uMZyqfcLLt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMZyqfcLLt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMZyqfcLLt .dropdown-item.active,
.cid-uMZyqfcLLt .dropdown-item:active {
  background-color: transparent;
}
.cid-uMZyqfcLLt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMZyqfcLLt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMZyqfcLLt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMZyqfcLLt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uMZyqfcLLt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMZyqfcLLt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMZyqfcLLt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMZyqfcLLt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMZyqfcLLt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMZyqfcLLt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMZyqfcLLt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMZyqfcLLt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZyqfcLLt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMZyqfcLLt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMZyqfcLLt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZyqfcLLt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMZyqfcLLt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMZyqfcLLt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMZyqfcLLt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMZyqfcLLt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMZyqfcLLt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMZyqfcLLt .navbar {
    height: 70px;
  }
  .cid-uMZyqfcLLt .navbar.opened {
    height: auto;
  }
  .cid-uMZyqfcLLt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMZyqfu8HW {
  background-image: url("../../../assets/images/brookhaven-ny-1.jpg");
}
.cid-uMZyqfu8HW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqfu8HW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZyqfu8HW .mbr-section-title {
  color: #ffffff;
}
.cid-uMZyqfu8HW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMZyqfGGyd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZyqfGGyd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqfGGyd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZyqfGGyd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZyqfGGyd .row {
  flex-direction: row-reverse;
}
.cid-uMZyqfGGyd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZyqfGGyd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZyqfTdx7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZyqfTdx7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqfTdx7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZyqfTdx7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZyqfTdx7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZyqfTdx7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZyqfTdx7 .mbr-section-title {
  text-align: left;
}
.cid-uMZyqg5yxc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uMZyqg5yxc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqg5yxc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uMZyqg5yxc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uMZyqg5yxc .row {
  flex-direction: row-reverse;
}
.cid-uMZyqg5yxc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMZyqg5yxc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uMZyqgivy2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uMZyqgivy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqgivy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZyqgivy2 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uMZyqgivy2 .panel-group {
  border: none;
}
.cid-uMZyqgivy2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uMZyqgivy2 .panel-body,
.cid-uMZyqgivy2 .card-header {
  padding: 1rem 0;
}
.cid-uMZyqgivy2 .panel-title-edit {
  color: #000000;
}
.cid-uMZyqgivy2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uMZyqgAdM8 {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uMZyqgAdM8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMZyqgAdM8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMZyqgAdM8 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uMZyqgAdM8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uMZyqgAdM8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uMZyqgAdM8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uMZyqgAdM8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uMZyqgOtrH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uMZyqgOtrH .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uMZyqgOtrH .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uMZyqgOtrH .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uMZyqgOtrH .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uMZyqgOtrH .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uMZyqgOtrH .row .foot-menu li p {
  margin: 0;
}
.cid-uMZyqgOtrH .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uMZyqgOtrH .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uMZyqgOtrH .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uMZyqgOtrH .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uMZyqgOtrH .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uMZyqgOtrH .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMZyqgOtrH .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uMZyqgOtrH .row .row-copirayt p {
  width: 100%;
}
.cid-uN4lOTGxCz .navbar-dropdown {
  position: relative !important;
}
.cid-uN4lOTGxCz .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-uN4lOTGxCz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN4lOTGxCz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN4lOTGxCz .dropdown-item:hover,
.cid-uN4lOTGxCz .dropdown-item:focus {
  background: #bbbbbb !important;
  color: white !important;
}
.cid-uN4lOTGxCz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN4lOTGxCz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN4lOTGxCz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN4lOTGxCz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN4lOTGxCz .nav-link {
  position: relative;
}
.cid-uN4lOTGxCz .container {
  display: flex;
  margin: auto;
}
.cid-uN4lOTGxCz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN4lOTGxCz .dropdown-menu,
.cid-uN4lOTGxCz .navbar.opened {
  background: #fafafa !important;
}
.cid-uN4lOTGxCz .nav-item:focus,
.cid-uN4lOTGxCz .nav-link:focus {
  outline: none;
}
.cid-uN4lOTGxCz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN4lOTGxCz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN4lOTGxCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN4lOTGxCz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN4lOTGxCz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN4lOTGxCz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN4lOTGxCz .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #fafafa;
}
.cid-uN4lOTGxCz .navbar.opened {
  transition: all 0.3s;
}
.cid-uN4lOTGxCz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN4lOTGxCz .navbar .navbar-logo img {
  width: auto;
}
.cid-uN4lOTGxCz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uN4lOTGxCz .navbar.collapsed {
  justify-content: center;
}
.cid-uN4lOTGxCz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN4lOTGxCz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN4lOTGxCz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uN4lOTGxCz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN4lOTGxCz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN4lOTGxCz .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-uN4lOTGxCz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uN4lOTGxCz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN4lOTGxCz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN4lOTGxCz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN4lOTGxCz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN4lOTGxCz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN4lOTGxCz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN4lOTGxCz .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-uN4lOTGxCz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN4lOTGxCz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN4lOTGxCz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN4lOTGxCz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN4lOTGxCz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN4lOTGxCz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN4lOTGxCz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN4lOTGxCz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN4lOTGxCz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uN4lOTGxCz .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-uN4lOTGxCz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uN4lOTGxCz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN4lOTGxCz .dropdown-item.active,
.cid-uN4lOTGxCz .dropdown-item:active {
  background-color: transparent;
}
.cid-uN4lOTGxCz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN4lOTGxCz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN4lOTGxCz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN4lOTGxCz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uN4lOTGxCz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN4lOTGxCz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN4lOTGxCz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uN4lOTGxCz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uN4lOTGxCz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uN4lOTGxCz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uN4lOTGxCz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN4lOTGxCz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN4lOTGxCz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uN4lOTGxCz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uN4lOTGxCz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN4lOTGxCz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uN4lOTGxCz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uN4lOTGxCz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN4lOTGxCz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uN4lOTGxCz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN4lOTGxCz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uN4lOTGxCz .navbar {
    height: 70px;
  }
  .cid-uN4lOTGxCz .navbar.opened {
    height: auto;
  }
  .cid-uN4lOTGxCz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN4lOTWopZ {
  background-image: url("../../../assets/images/calverton-ny-1.jpg");
}
.cid-uN4lOTWopZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOTWopZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN4lOTWopZ .mbr-section-title {
  color: #ffffff;
}
.cid-uN4lOTWopZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uN4lOU7rIQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN4lOU7rIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOU7rIQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uN4lOU7rIQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uN4lOU7rIQ .row {
  flex-direction: row-reverse;
}
.cid-uN4lOU7rIQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uN4lOU7rIQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uN4lOUimMA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uN4lOUimMA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOUimMA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uN4lOUimMA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uN4lOUimMA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uN4lOUimMA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uN4lOUimMA .mbr-section-title {
  text-align: left;
}
.cid-uN4lOUuymt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uN4lOUuymt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOUuymt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uN4lOUuymt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uN4lOUuymt .row {
  flex-direction: row-reverse;
}
.cid-uN4lOUuymt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uN4lOUuymt .text-wrapper {
    padding: 2rem;
  }
}
.cid-uN4lOUHbT6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uN4lOUHbT6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOUHbT6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN4lOUHbT6 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #bbbbbb;
  margin-left: 1rem;
}
.cid-uN4lOUHbT6 .panel-group {
  border: none;
}
.cid-uN4lOUHbT6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uN4lOUHbT6 .panel-body,
.cid-uN4lOUHbT6 .card-header {
  padding: 1rem 0;
}
.cid-uN4lOUHbT6 .panel-title-edit {
  color: #000000;
}
.cid-uN4lOUHbT6 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uN4lOUXrWT {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uN4lOUXrWT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN4lOUXrWT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN4lOUXrWT .google-map {
  height: 30rem;
  position: relative;
}
.cid-uN4lOUXrWT .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uN4lOUXrWT .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uN4lOUXrWT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uN4lOUXrWT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uN4lOVaaYf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uN4lOVaaYf .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uN4lOVaaYf .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uN4lOVaaYf .row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uN4lOVaaYf .row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uN4lOVaaYf .row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uN4lOVaaYf .row .foot-menu li p {
  margin: 0;
}
.cid-uN4lOVaaYf .row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uN4lOVaaYf .row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uN4lOVaaYf .row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uN4lOVaaYf .row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uN4lOVaaYf .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uN4lOVaaYf .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uN4lOVaaYf .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uN4lOVaaYf .row .row-copirayt p {
  width: 100%;
}
