body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.96875rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.9rem;
    font-size: calc( 1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.48125rem + (2.375 - 1.48125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.5 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #999999 !important;
}
.bg-info {
  background-color: #555555 !important;
}
.bg-warning {
  background-color: #333333 !important;
}
.bg-danger {
  background-color: #73460b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #333333 !important;
  border-color: #333333 !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: #080808 !important;
  border-color: #080808 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080808 !important;
  border-color: #080808 !important;
}
.btn-info,
.btn-info:active {
  background-color: #555555 !important;
  border-color: #555555 !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: #2a2a2a !important;
  border-color: #2a2a2a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2a2a2a !important;
  border-color: #2a2a2a !important;
}
.btn-success,
.btn-success:active {
  background-color: #999999 !important;
  border-color: #999999 !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: #6e6e6e !important;
  border-color: #6e6e6e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #6e6e6e !important;
  border-color: #6e6e6e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #080808 !important;
  border-color: #080808 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #080808 !important;
  border-color: #080808 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73460b !important;
  border-color: #73460b !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: #241603 !important;
  border-color: #241603 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #241603 !important;
  border-color: #241603 !important;
}
.btn-white,
.btn-white:active {
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
  color: #95785a !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: #5f4c39 !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #95785a !important;
  background-color: #d8ccbf !important;
  border-color: #d8ccbf !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #333333;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #080808 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #555555;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2a2a2a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #555555 !important;
  border-color: #555555 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #999999;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6e6e6e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #333333;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #080808 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73460b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #241603 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73460b !important;
  border-color: #73460b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #222222;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f9f7f5;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d8ccbf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #95785a !important;
  background-color: #f9f7f5 !important;
  border-color: #f9f7f5 !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #333333 !important;
}
.text-success {
  color: #999999 !important;
}
.text-info {
  color: #555555 !important;
}
.text-warning {
  color: #333333 !important;
}
.text-danger {
  color: #73460b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #666666 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #222222 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #160d02 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #d3c4b5 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #222222;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #555555;
}
.alert-warning {
  background-color: #333333;
}
.alert-danger {
  background-color: #73460b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c8c8c8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #a6a6a6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e78d16;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #333333 !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='%23ffffff' %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;
}
.container {
  max-width: 1302px;
}
.btn {
  padding: 12px 24px;
  border-radius: 0;
  letter-spacing: 3px;
}
.btn-big {
  padding: 20px 40px !important;
}
.btn-scale {
  transition: 0.3s all;
}
.btn-scale:hover {
  transform: scale(0.9);
}
.cid-sSNfAITF5h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSNfAITF5h nav.navbar {
  position: fixed;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNfAITF5h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNfAITF5h .dropdown-item:hover,
.cid-sSNfAITF5h .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sSNfAITF5h .dropdown-item:hover span {
  color: white;
}
.cid-sSNfAITF5h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNfAITF5h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNfAITF5h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNfAITF5h .nav-link {
  position: relative;
}
.cid-sSNfAITF5h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNfAITF5h .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown-menu,
.cid-sSNfAITF5h .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNfAITF5h .nav-item:focus,
.cid-sSNfAITF5h .nav-link:focus {
  outline: none;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNfAITF5h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNfAITF5h .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: #ffffff;
}
.cid-sSNfAITF5h .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNfAITF5h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNfAITF5h .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNfAITF5h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar.collapsed {
  justify-content: center;
}
.cid-sSNfAITF5h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNfAITF5h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNfAITF5h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNfAITF5h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNfAITF5h .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-sSNfAITF5h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNfAITF5h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNfAITF5h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNfAITF5h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNfAITF5h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNfAITF5h .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNfAITF5h .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNfAITF5h .dropdown-item.active,
.cid-sSNfAITF5h .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNfAITF5h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNfAITF5h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNfAITF5h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNfAITF5h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-sSNfAITF5h .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNfAITF5h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar {
    height: 70px;
  }
  .cid-sSNfAITF5h .navbar.opened {
    height: auto;
  }
  .cid-sSNfAITF5h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNfAITF5h .container,
.cid-sSNfAITF5h .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNfAITF5h .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNfAITF5h .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .contacts-menu {
    display: none;
  }
}
.cid-sSNfAITF5h .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNfAITF5h .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNfAITF5h .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNfAITF5h .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNfAITF5h .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNfAITF5h .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-sSNfAITF5h .card-text {
  color: #000000;
}
.cid-sSwPHs3H2U {
  background-image: url("../../../assets/images/modern-villa-pool-2000x1333.webp");
}
.cid-sSwPHs3H2U .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-sSwPHs3H2U .col-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-sSwPHs3H2U .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sSwPHs3H2U .label-text {
    text-align: center !important;
  }
}
.cid-sSwPHs3H2U .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sSwPHs3H2U .mbr-section-title {
    text-align: center !important;
  }
}
.cid-sSwPHs3H2U .mbr-section-title,
.cid-sSwPHs3H2U .mbr-section-btn {
  text-align: center;
}
.cid-usWPVzIASm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-usWPVzIASm .row {
  flex-direction: row-reverse;
}
.cid-usWPVzIASm .image-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-usWPVzIASm .image-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-usWPVzIASm .image-wrapper {
    padding: 30px;
    padding-right: 3rem;
  }
}
.cid-usWPVzIASm .image-wrapper .img-caption-container {
  position: relative;
  display: flex;
}
.cid-usWPVzIASm .image-wrapper img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-usWPVzIASm .image-wrapper .img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 24px 32px;
  max-width: 100%;
  max-height: 100%;
  background-color: #ffffff;
}
.cid-usWPVzIASm .image-wrapper .img-caption .img-label-text {
  color: #F0C48A;
}
.cid-usWPVzIASm .image-wrapper .img-caption .img-text {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-usWPVzIASm .col-text {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .cid-usWPVzIASm .col-text {
    padding: 30px;
    padding-left: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-usWPVzIASm .col-text {
    text-align: center;
  }
}
.cid-usWPVzIASm .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-usWPVzIASm .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #f80505;
}
@media (max-width: 767px) {
  .cid-usWPVzIASm .label-text {
    text-align: center !important;
  }
}
.cid-usWPVzIASm .mbr-section-title {
  width: 100%;
  margin-bottom: 24px;
  color: #222222;
}
.cid-usWPVzIASm .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-usWPVzIASm .btn-container {
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .cid-usWPVzIASm .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-usWPVzIASm .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usWPVzIASm .mbr-fallback-image.disabled {
  display: none;
}
.cid-usWPVzIASm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usWPVzIASm .img-label-text {
  color: #333333;
}
.cid-usX2OMUJXO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  background-color: #ffffff;
}
.cid-usX2OMUJXO .row {
  flex-direction: row-reverse;
}
.cid-usX2OMUJXO .row {
  align-items: center;
}
.cid-usX2OMUJXO .img-position-container {
  position: absolute;
  z-index: 5;
  top: 3rem;
}
@media (min-width: 768px) {
  .cid-usX2OMUJXO .img-position-container {
    bottom: 3rem;
    width: 50%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX2OMUJXO .img-position-container {
    height: 218px;
    width: 100%;
  }
}
.cid-usX2OMUJXO .img-position-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-usX2OMUJXO .image-wrapper {
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  .cid-usX2OMUJXO .col-text {
    padding: 48px 30px;
  }
}
@media (min-width: 992px) {
  .cid-usX2OMUJXO .col-text {
    padding-right: 64px;
  }
}
@media (max-width: 767px) {
  .cid-usX2OMUJXO .col-text {
    text-align: center;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-top: 218px;
  }
}
.cid-usX2OMUJXO .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-usX2OMUJXO .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #999999;
}
@media (max-width: 767px) {
  .cid-usX2OMUJXO .label-text {
    text-align: center !important;
  }
}
.cid-usX2OMUJXO .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-usX2OMUJXO .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-usX2OMUJXO .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX2OMUJXO .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-usX2OMUJXO .lists-container {
    justify-content: center;
  }
}
.cid-usX2OMUJXO .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-usX2OMUJXO .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX2OMUJXO .list {
    align-items: center;
  }
}
.cid-usX2OMUJXO .list-item {
  display: flex;
  align-items: center;
}
.cid-usX2OMUJXO .icon-wrapper {
  margin-right: 5px;
}
.cid-usX2OMUJXO .icon-wrapper span {
  color: #f80505;
  font-size: 21px;
}
.cid-usX2OMUJXO .list-item-text {
  flex-grow: 1;
}
.cid-usX2OMUJXO .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX2OMUJXO .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-usX2OMUJXO .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-usX2OMUJXO .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usX2OMUJXO .mbr-fallback-image.disabled {
  display: none;
}
.cid-usX2OMUJXO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uun9q7sLHo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/maximiliano-vargas-maxeconel-reunion-2000x1334.webp");
}
.cid-uun9q7sLHo .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uun9q7sLHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun9q7sLHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uun9q7sLHo .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uun9q7sLHo .image-wrap {
    height: 300px;
  }
}
.cid-usX8Z78FWX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  background-color: #ffffff;
}
.cid-usX8Z78FWX .row {
  align-items: center;
}
.cid-usX8Z78FWX .img-position-container {
  position: absolute;
  z-index: 5;
  top: 3rem;
}
@media (min-width: 768px) {
  .cid-usX8Z78FWX .img-position-container {
    bottom: 3rem;
    width: 50%;
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX8Z78FWX .img-position-container {
    height: 218px;
    width: 100%;
  }
}
.cid-usX8Z78FWX .img-position-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-usX8Z78FWX .image-wrapper {
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  .cid-usX8Z78FWX .col-text {
    padding: 48px 30px;
  }
}
@media (min-width: 992px) {
  .cid-usX8Z78FWX .col-text {
    padding-left: 64px;
  }
}
@media (max-width: 767px) {
  .cid-usX8Z78FWX .col-text {
    text-align: center;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-top: 218px;
  }
}
.cid-usX8Z78FWX .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-usX8Z78FWX .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #999999;
}
@media (max-width: 767px) {
  .cid-usX8Z78FWX .label-text {
    text-align: center !important;
  }
}
.cid-usX8Z78FWX .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-usX8Z78FWX .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-usX8Z78FWX .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX8Z78FWX .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-usX8Z78FWX .lists-container {
    justify-content: center;
  }
}
.cid-usX8Z78FWX .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-usX8Z78FWX .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX8Z78FWX .list {
    align-items: center;
  }
}
.cid-usX8Z78FWX .list-item {
  display: flex;
  align-items: center;
}
.cid-usX8Z78FWX .icon-wrapper {
  margin-right: 5px;
}
.cid-usX8Z78FWX .icon-wrapper span {
  color: #f80505;
  font-size: 21px;
}
.cid-usX8Z78FWX .list-item-text {
  flex-grow: 1;
}
.cid-usX8Z78FWX .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX8Z78FWX .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-usX8Z78FWX .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-usX8Z78FWX .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usX8Z78FWX .mbr-fallback-image.disabled {
  display: none;
}
.cid-usX8Z78FWX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usX9nAugn2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  background-color: #ffffff;
}
.cid-usX9nAugn2 .row {
  flex-direction: row-reverse;
}
.cid-usX9nAugn2 .row {
  align-items: center;
}
.cid-usX9nAugn2 .img-position-container {
  position: absolute;
  z-index: 5;
  top: 3rem;
}
@media (min-width: 768px) {
  .cid-usX9nAugn2 .img-position-container {
    bottom: 3rem;
    width: 50%;
    right: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX9nAugn2 .img-position-container {
    height: 218px;
    width: 100%;
  }
}
.cid-usX9nAugn2 .img-position-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cid-usX9nAugn2 .image-wrapper {
    min-height: 500px;
  }
}
@media (min-width: 768px) {
  .cid-usX9nAugn2 .col-text {
    padding: 48px 30px;
  }
}
@media (min-width: 992px) {
  .cid-usX9nAugn2 .col-text {
    padding-right: 64px;
  }
}
@media (max-width: 767px) {
  .cid-usX9nAugn2 .col-text {
    text-align: center;
    padding-bottom: 48px;
    padding-top: 48px;
    margin-top: 218px;
  }
}
.cid-usX9nAugn2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-usX9nAugn2 .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #999999;
}
@media (max-width: 767px) {
  .cid-usX9nAugn2 .label-text {
    text-align: center !important;
  }
}
.cid-usX9nAugn2 .mbr-section-title {
  margin-bottom: 24px;
  color: #222222;
  width: 100%;
}
.cid-usX9nAugn2 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 1.5rem;
}
.cid-usX9nAugn2 .lists-container {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX9nAugn2 .lists-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-usX9nAugn2 .lists-container {
    justify-content: center;
  }
}
.cid-usX9nAugn2 .list {
  display: flex;
  flex-direction: column;
  color: #555555;
  padding: 0 8px 0 0;
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .cid-usX9nAugn2 .list {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-usX9nAugn2 .list {
    align-items: center;
  }
}
.cid-usX9nAugn2 .list-item {
  display: flex;
  align-items: center;
}
.cid-usX9nAugn2 .icon-wrapper {
  margin-right: 5px;
}
.cid-usX9nAugn2 .icon-wrapper span {
  color: #f80505;
  font-size: 21px;
}
.cid-usX9nAugn2 .list-item-text {
  flex-grow: 1;
}
.cid-usX9nAugn2 .btn-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-usX9nAugn2 .btn-container {
    margin-top: 16px;
  }
}
@media (max-width: 575px) {
  .cid-usX9nAugn2 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-usX9nAugn2 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-usX9nAugn2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usX9nAugn2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwryV7cORn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uwryV7cORn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwryV7cORn .container {
  max-width: 1300px;
}
.cid-uwryV7cORn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwryV7cORn .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uwryV7cORn .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwryV7cORn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uwryV7cORn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uwryV7cORn .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uwryV7cORn .mbr-section-title {
  color: #4e423d;
}
.cid-uwryV7cORn .mbr-text,
.cid-uwryV7cORn .mbr-section-btn {
  color: #555555;
}
.cid-sSOj8O9qx7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sSOj8O9qx7 .row {
  justify-content: center;
}
.cid-sSOj8O9qx7 .item-img {
  height: 480px;
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .cid-sSOj8O9qx7 .item-img {
    height: 286px;
  }
}
.cid-sSOj8O9qx7 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sSOj8O9qx7 .item:focus,
.cid-sSOj8O9qx7 span:focus {
  outline: none;
}
.cid-sSOj8O9qx7 .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sSOj8O9qx7 .col-items {
    flex-wrap: wrap;
  }
}
.cid-sSOj8O9qx7 .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-sSOj8O9qx7 .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSOj8O9qx7 .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-sSOj8O9qx7 .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.cid-sSOj8O9qx7 .item-wrapper .btn {
  padding: 12px 24px;
  min-width: 62px;
}
.cid-sSOj8O9qx7 .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-sSOj8O9qx7 .item-wrapper .btn-primary:hover span {
  color: #ffffff !important;
}
.cid-sSOj8O9qx7 .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sSOj8O9qx7 .item-content {
    text-align: center;
  }
}
.cid-sSOj8O9qx7 .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-sSOj8O9qx7 .mbr-text {
  color: #555555;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cid-sSOj8O9qx7 .item-title {
  color: #222222;
}
.cid-sSOj8O9qx7 .item-subtitle {
  color: #222222;
}
.cid-sSOj8O9qx7 .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-sSOj8O9qx7 .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-sSOj8O9qx7 .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uusU3T9vtl {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/playa-del-duque-tenerife-1436x540.webp");
}
.cid-uusU3T9vtl .mbr-overlay {
  background-color: #232323;
  opacity: 0.5;
}
.cid-uusU3T9vtl input,
.cid-uusU3T9vtl textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-uusU3T9vtl .col-auto {
  width: 100%;
  text-align: center;
}
.cid-uusU3T9vtl img {
  width: 90%;
  border-radius: 8px;
}
.cid-uusU3T9vtl .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-uusU3T9vtl textarea {
  min-height: 160px;
}
.cid-uusU3T9vtl .form-control,
.cid-uusU3T9vtl .field-input {
  padding: 0.5rem;
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #555555;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uusU3T9vtl .form-control:hover,
.cid-uusU3T9vtl .field-input:hover,
.cid-uusU3T9vtl .form-control:focus,
.cid-uusU3T9vtl .field-input:focus {
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uusU3T9vtl input::-webkit-input-placeholder,
.cid-uusU3T9vtl textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-uusU3T9vtl input:-moz-placeholder,
.cid-uusU3T9vtl textarea:-moz-placeholder {
  color: #807d78;
}
.cid-uusU3T9vtl .jq-selectbox li,
.cid-uusU3T9vtl .jq-selectbox li {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-uusU3T9vtl .jq-selectbox li:hover,
.cid-uusU3T9vtl .jq-selectbox li.selected {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-uusU3T9vtl .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-uusU3T9vtl .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-uusU3T9vtl H5 {
  color: #ffffff;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uusU3T9vtl img {
    width: 100%;
  }
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-uu047eKAzB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uu047eKAzB nav.navbar {
  position: fixed;
}
.cid-uu047eKAzB .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-uu047eKAzB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uu047eKAzB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uu047eKAzB .dropdown-item:hover,
.cid-uu047eKAzB .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uu047eKAzB .dropdown-item:hover span {
  color: white;
}
.cid-uu047eKAzB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uu047eKAzB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uu047eKAzB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uu047eKAzB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uu047eKAzB .nav-link {
  position: relative;
}
.cid-uu047eKAzB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047eKAzB .container {
    flex-wrap: nowrap;
  }
}
.cid-uu047eKAzB .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uu047eKAzB .dropdown-menu,
.cid-uu047eKAzB .navbar.opened {
  background: #ffffff !important;
}
.cid-uu047eKAzB .nav-item:focus,
.cid-uu047eKAzB .nav-link:focus {
  outline: none;
}
.cid-uu047eKAzB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uu047eKAzB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uu047eKAzB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uu047eKAzB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uu047eKAzB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uu047eKAzB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uu047eKAzB .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: #ffffff;
}
.cid-uu047eKAzB .navbar.opened {
  transition: all 0.3s;
}
.cid-uu047eKAzB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uu047eKAzB .navbar .navbar-logo img {
  width: auto;
}
.cid-uu047eKAzB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uu047eKAzB .navbar.collapsed {
  justify-content: center;
}
.cid-uu047eKAzB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uu047eKAzB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uu047eKAzB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uu047eKAzB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uu047eKAzB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uu047eKAzB .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-uu047eKAzB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uu047eKAzB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uu047eKAzB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uu047eKAzB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uu047eKAzB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uu047eKAzB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uu047eKAzB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uu047eKAzB .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-uu047eKAzB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uu047eKAzB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uu047eKAzB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uu047eKAzB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uu047eKAzB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uu047eKAzB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uu047eKAzB .navbar.navbar-short {
  min-height: 60px;
}
.cid-uu047eKAzB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uu047eKAzB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uu047eKAzB .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-uu047eKAzB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uu047eKAzB .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uu047eKAzB .navbar-brand {
    padding-right: 40px;
  }
}
.cid-uu047eKAzB .dropdown-item.active,
.cid-uu047eKAzB .dropdown-item:active {
  background-color: transparent;
}
.cid-uu047eKAzB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uu047eKAzB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uu047eKAzB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uu047eKAzB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uu047eKAzB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uu047eKAzB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uu047eKAzB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uu047eKAzB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uu047eKAzB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uu047eKAzB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-uu047eKAzB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uu047eKAzB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uu047eKAzB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uu047eKAzB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uu047eKAzB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uu047eKAzB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uu047eKAzB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uu047eKAzB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uu047eKAzB .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-uu047eKAzB .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uu047eKAzB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uu047eKAzB .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-uu047eKAzB .navbar {
    height: 70px;
  }
  .cid-uu047eKAzB .navbar.opened {
    height: auto;
  }
  .cid-uu047eKAzB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uu047eKAzB .container,
.cid-uu047eKAzB .container-fluid {
  flex-wrap: wrap;
}
.cid-uu047eKAzB .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-uu047eKAzB .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-uu047eKAzB .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uu047eKAzB .contacts-menu {
    display: none;
  }
}
.cid-uu047eKAzB .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-uu047eKAzB .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-uu047eKAzB .icon-box:hover {
  transform: scale(1.1);
}
.cid-uu047eKAzB .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-uu047eKAzB .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-uu047eKAzB .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-uu047eKAzB .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-uu047eKAzB .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-uu047eKAzB .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uu047eKAzB .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-uu047eKAzB .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-uu047eKAzB .card-text {
  color: #000000;
}
.cid-uuhxoQjaAQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuhxoQjaAQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuhxoQjaAQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuhxoQjaAQ .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uuhxoQjaAQ .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-uuhxoQjaAQ .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-uuhxoQjaAQ .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-uuhxoQjaAQ .mbr-section-btn {
  padding-top: 40px;
}
.cid-uuhEczGehD {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uuhEczGehD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuhEczGehD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuhEczGehD .mbr-text,
.cid-uuhEczGehD .mbr-section-btn {
  text-align: center;
}
.cid-uuhEczGehD .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uuhEczGehD .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uuhytoW1EJ {
  padding-top: 12rem;
  padding-bottom: 12rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/ora-by-casa-tua-header-full-maxeconel-2000x1123.webp");
}
.cid-uuhytoW1EJ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uuhytoW1EJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuhytoW1EJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuhytoW1EJ .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uuhytoW1EJ .image-wrap {
    height: 300px;
  }
}
.cid-uu047fIc4G {
  background-color: #ffffff;
}
.cid-uu047fIc4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047fIc4G .container {
  max-width: 1300px;
}
.cid-uu047fIc4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047fIc4G .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047fIc4G .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu047fIc4G .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu047fIc4G .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu047fIc4G .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uu047fIc4G .mbr-section-title {
  color: #4e423d;
}
.cid-uu047fIc4G .mbr-text,
.cid-uu047fIc4G .mbr-section-btn {
  color: #555555;
}
.cid-uu047gki5c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uu047gki5c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047gki5c .container {
  max-width: 1300px;
}
.cid-uu047gki5c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047gki5c .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047gki5c .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uu047gki5c .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uu047gki5c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu047gki5c .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu047gki5c .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uu047gki5c .mbr-section-title {
  color: #4e423d;
}
.cid-uu047gki5c .mbr-text,
.cid-uu047gki5c .mbr-section-btn {
  color: #555555;
}
.cid-uu047g5NXV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/lobby-ora-by-casa-tua-2000x1024.webp");
}
.cid-uu047g5NXV .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uu047g5NXV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047g5NXV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047g5NXV .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uu047g5NXV .image-wrap {
    height: 300px;
  }
}
.cid-uu047gBzjJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uu047gBzjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047gBzjJ .container {
  max-width: 1300px;
}
.cid-uu047gBzjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047gBzjJ .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047gBzjJ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu047gBzjJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu047gBzjJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu047gBzjJ .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uu047gBzjJ .mbr-section-title {
  color: #4e423d;
}
.cid-uu047gBzjJ .mbr-text,
.cid-uu047gBzjJ .mbr-section-btn {
  color: #555555;
}
.cid-uuiHTGtKRK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/bosco-view-ora-2000x1023.webp");
}
.cid-uuiHTGtKRK .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uuiHTGtKRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiHTGtKRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiHTGtKRK .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uuiHTGtKRK .image-wrap {
    height: 300px;
  }
}
.cid-uu047gT9qS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uu047gT9qS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047gT9qS .container {
  max-width: 1300px;
}
.cid-uu047gT9qS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047gT9qS .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047gT9qS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uu047gT9qS .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uu047gT9qS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu047gT9qS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu047gT9qS .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uu047gT9qS .mbr-section-title {
  color: #4e423d;
}
.cid-uu047gT9qS .mbr-text,
.cid-uu047gT9qS .mbr-section-btn {
  color: #555555;
}
.cid-uu047hdbrQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/vento-fireplace-ora-2000x1033.webp");
}
.cid-uu047hdbrQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uu047hdbrQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047hdbrQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047hdbrQ .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uu047hdbrQ .image-wrap {
    height: 300px;
  }
}
.cid-uu047hug86 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uu047hug86 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uu047hug86 .container {
  max-width: 1300px;
}
.cid-uu047hug86 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uu047hug86 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uu047hug86 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu047hug86 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uu047hug86 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uu047hug86 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uu047hug86 .mbr-section-title {
  color: #4e423d;
}
.cid-uu047hug86 .mbr-text,
.cid-uu047hug86 .mbr-section-btn {
  color: #555555;
}
.cid-uuiHVPSbBF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/residence-ora-inside-2000x1033.webp");
}
.cid-uuiHVPSbBF .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uuiHVPSbBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiHVPSbBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiHVPSbBF .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uuiHVPSbBF .image-wrap {
    height: 300px;
  }
}
.cid-uuixUSSnhm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uuixUSSnhm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuixUSSnhm .container {
  max-width: 1300px;
}
.cid-uuixUSSnhm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuixUSSnhm .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uuixUSSnhm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uuixUSSnhm .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uuixUSSnhm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuixUSSnhm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uuixUSSnhm .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uuixUSSnhm .mbr-section-title {
  color: #4e423d;
}
.cid-uuixUSSnhm .mbr-text,
.cid-uuixUSSnhm .mbr-section-btn {
  color: #555555;
}
.cid-uuiAekiZoF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uuiAekiZoF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiAekiZoF .container {
  max-width: 1300px;
}
.cid-uuiAekiZoF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiAekiZoF .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uuiAekiZoF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuiAekiZoF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uuiAekiZoF .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uuiAekiZoF .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uuiAekiZoF .mbr-section-title {
  color: #4e423d;
}
.cid-uuiAekiZoF .mbr-text,
.cid-uuiAekiZoF .mbr-section-btn {
  color: #555555;
}
.cid-uuiHXJir1u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/roof-pool-ora-2000x1114.webp");
}
.cid-uuiHXJir1u .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uuiHXJir1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiHXJir1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiHXJir1u .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uuiHXJir1u .image-wrap {
    height: 300px;
  }
}
.cid-uuiMSKOIAj {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uuiMSKOIAj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiMSKOIAj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiMSKOIAj .mbr-text,
.cid-uuiMSKOIAj .mbr-section-btn {
  text-align: center;
}
.cid-uuiMSKOIAj .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uuiMSKOIAj .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uuiBNFag14 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uuiBNFag14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiBNFag14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiBNFag14 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uuiBNFag14 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uuiBNFag14 .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-uuiBNFag14 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uuiBNFag14 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-uuiSQIJb7d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuiSQIJb7d nav.navbar {
  position: fixed;
}
.cid-uuiSQIJb7d .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-uuiSQIJb7d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuiSQIJb7d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuiSQIJb7d .dropdown-item:hover,
.cid-uuiSQIJb7d .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uuiSQIJb7d .dropdown-item:hover span {
  color: white;
}
.cid-uuiSQIJb7d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuiSQIJb7d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuiSQIJb7d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuiSQIJb7d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuiSQIJb7d .nav-link {
  position: relative;
}
.cid-uuiSQIJb7d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uuiSQIJb7d .container {
    flex-wrap: nowrap;
  }
}
.cid-uuiSQIJb7d .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuiSQIJb7d .dropdown-menu,
.cid-uuiSQIJb7d .navbar.opened {
  background: #ffffff !important;
}
.cid-uuiSQIJb7d .nav-item:focus,
.cid-uuiSQIJb7d .nav-link:focus {
  outline: none;
}
.cid-uuiSQIJb7d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuiSQIJb7d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuiSQIJb7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuiSQIJb7d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuiSQIJb7d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuiSQIJb7d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuiSQIJb7d .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: #ffffff;
}
.cid-uuiSQIJb7d .navbar.opened {
  transition: all 0.3s;
}
.cid-uuiSQIJb7d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuiSQIJb7d .navbar .navbar-logo img {
  width: auto;
}
.cid-uuiSQIJb7d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuiSQIJb7d .navbar.collapsed {
  justify-content: center;
}
.cid-uuiSQIJb7d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuiSQIJb7d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuiSQIJb7d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuiSQIJb7d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuiSQIJb7d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuiSQIJb7d .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-uuiSQIJb7d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuiSQIJb7d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuiSQIJb7d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuiSQIJb7d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuiSQIJb7d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuiSQIJb7d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuiSQIJb7d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuiSQIJb7d .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-uuiSQIJb7d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuiSQIJb7d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuiSQIJb7d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuiSQIJb7d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuiSQIJb7d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuiSQIJb7d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuiSQIJb7d .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuiSQIJb7d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuiSQIJb7d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuiSQIJb7d .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-uuiSQIJb7d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuiSQIJb7d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uuiSQIJb7d .navbar-brand {
    padding-right: 40px;
  }
}
.cid-uuiSQIJb7d .dropdown-item.active,
.cid-uuiSQIJb7d .dropdown-item:active {
  background-color: transparent;
}
.cid-uuiSQIJb7d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuiSQIJb7d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuiSQIJb7d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuiSQIJb7d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uuiSQIJb7d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuiSQIJb7d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuiSQIJb7d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuiSQIJb7d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuiSQIJb7d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuiSQIJb7d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-uuiSQIJb7d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuiSQIJb7d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuiSQIJb7d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuiSQIJb7d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuiSQIJb7d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuiSQIJb7d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuiSQIJb7d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuiSQIJb7d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuiSQIJb7d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-uuiSQIJb7d .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uuiSQIJb7d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuiSQIJb7d .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-uuiSQIJb7d .navbar {
    height: 70px;
  }
  .cid-uuiSQIJb7d .navbar.opened {
    height: auto;
  }
  .cid-uuiSQIJb7d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuiSQIJb7d .container,
.cid-uuiSQIJb7d .container-fluid {
  flex-wrap: wrap;
}
.cid-uuiSQIJb7d .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-uuiSQIJb7d .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-uuiSQIJb7d .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uuiSQIJb7d .contacts-menu {
    display: none;
  }
}
.cid-uuiSQIJb7d .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-uuiSQIJb7d .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-uuiSQIJb7d .icon-box:hover {
  transform: scale(1.1);
}
.cid-uuiSQIJb7d .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-uuiSQIJb7d .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-uuiSQIJb7d .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-uuiSQIJb7d .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-uuiSQIJb7d .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-uuiSQIJb7d .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uuiSQIJb7d .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-uuiSQIJb7d .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-uuiSQIJb7d .card-text {
  color: #000000;
}
.cid-uuiSQJsYN3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuiSQJsYN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiSQJsYN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiSQJsYN3 .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uuiSQJsYN3 .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-uuiSQJsYN3 .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-uuiSQJsYN3 .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-uuiSQJsYN3 .mbr-section-btn {
  padding-top: 40px;
}
.cid-uuiSQJFZHu {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uuiSQJFZHu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiSQJFZHu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiSQJFZHu .mbr-text,
.cid-uuiSQJFZHu .mbr-section-btn {
  text-align: center;
}
.cid-uuiSQJFZHu .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uuiSQJFZHu .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uuj33PMzDt {
  padding-top: 0rem;
  padding-bottom: 3rem;
}
.cid-uuj33PMzDt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuj33PMzDt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("");
}
.cid-uuj33PMzDt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uuja8AhAat {
  background-color: #f8f8f8;
}
.cid-uuja8AhAat .container-fluid {
  padding-right: 0;
}
.cid-uuja8AhAat .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuja8AhAat .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuja8AhAat .title-wrapper {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-uuja8AhAat .title-wrapper {
    padding: 0 12px;
  }
}
.cid-uuja8AhAat .title {
  display: flex;
  align-items: center;
}
.cid-uuja8AhAat .title-wrapper {
  width: 100%;
}
.cid-uuja8AhAat .title-wrapper .mbr-section-subtitle {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uuja8AhAat .title-wrapper .mbr-section-subtitle {
    margin-bottom: 19.5px;
  }
}
.cid-uuja8AhAat .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uuja8AhAat .title-wrapper .mbr-section-title {
    margin-bottom: 19.5px;
  }
}
.cid-uuja8AhAat .title-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uuja8AhAat .title-wrapper .mbr-text {
    margin-bottom: 19.5px;
  }
}
@media (max-width: 992px) {
  .cid-uuja8AhAat .image-wrapper {
    margin-top: 39px;
  }
}
.cid-uuja8AhAat .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uuja8AhAat .mbr-section-subtitle {
  color: #181818;
}
.cid-uuja8AhAat .mbr-section-title {
  color: #181818;
}
.cid-uuja8AhAat .mbr-text {
  color: #454545;
}
.cid-uuj5AYS9NT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuj5AYS9NT .row {
  justify-content: center;
}
.cid-uuj5AYS9NT .item-img {
  height: 480px;
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .cid-uuj5AYS9NT .item-img {
    height: 286px;
  }
}
.cid-uuj5AYS9NT img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uuj5AYS9NT .item:focus,
.cid-uuj5AYS9NT span:focus {
  outline: none;
}
.cid-uuj5AYS9NT .col-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uuj5AYS9NT .col-items {
    flex-wrap: wrap;
  }
}
.cid-uuj5AYS9NT .item {
  cursor: pointer;
  padding: 12px;
}
@media (min-width: 992px) {
  .cid-uuj5AYS9NT .item {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uuj5AYS9NT .item {
    padding-bottom: 30px;
    padding-top: 30px;
    width: 100%;
  }
}
.cid-uuj5AYS9NT .item-wrapper {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
}
.cid-uuj5AYS9NT .item-wrapper .btn {
  padding: 12px 24px;
  min-width: 62px;
}
.cid-uuj5AYS9NT .item-wrapper .btn-primary:hover {
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.cid-uuj5AYS9NT .item-wrapper .btn-primary:hover span {
  color: #ffffff !important;
}
.cid-uuj5AYS9NT .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uuj5AYS9NT .item-content {
    text-align: center;
  }
}
.cid-uuj5AYS9NT .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uuj5AYS9NT .mbr-text {
  color: #555555;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cid-uuj5AYS9NT .item-title {
  color: #222222;
}
.cid-uuj5AYS9NT .item-subtitle {
  color: #222222;
}
.cid-uuj5AYS9NT .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uuj5AYS9NT .mbr-section-head {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uuj5AYS9NT .mbr-section-head {
    text-align: center !important;
  }
}
.cid-uujedPQL9f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uujedPQL9f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujedPQL9f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujedPQL9f .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .container {
    padding: 0 26px;
  }
}
.cid-uujedPQL9f .row {
  justify-content: center;
}
.cid-uujedPQL9f .content-wrapper {
  padding: 200px 60px;
  background-color: #fdfbf7;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper {
    padding: 100px 20px;
  }
}
.cid-uujedPQL9f .content-wrapper .title-wrapper {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uujedPQL9f .content-wrapper .title-wrapper .mbr-title {
  margin-bottom: 30px;
}
.cid-uujedPQL9f .content-wrapper .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  margin-bottom: 0;
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uujedPQL9f .content-wrapper .content-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper {
  width: 50%;
  padding-right: 45px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper .list .item-wrap {
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  cursor: pointer;
}
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper .list .item-wrap:hover,
.cid-uujedPQL9f .content-wrapper .content-wrap .contacts-wrapper .list .item-wrap:focus {
  opacity: .6;
}
.cid-uujedPQL9f .content-wrapper .form-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uujedPQL9f .content-wrapper .form-wrap {
    width: 100%;
  }
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px !important;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 10px !important;
  padding: 0 8px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 16px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-control {
  padding: 8px 16px;
  border: 1px solid #69727d !important;
  box-shadow: none;
  border-radius: 3px !important;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
  font-size: 18px;
  opacity: .5;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group textarea {
  min-height: 50px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: transparent;
  border-color: #69727d;
  border-radius: 3px;
  margin-top: 2px;
}
.cid-uujedPQL9f .content-wrapper .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
  margin: 0;
  padding: 0;
}
.cid-uujedPQL9f .mbr-title {
  color: #000000;
  text-align: center;
}
.cid-uujedPQL9f .mbr-section-title {
  color: #000000;
}
.cid-uujedPQL9f .mbr-section-subtitle {
  color: #000000;
}
.cid-uujedPQL9f .mbr-text,
.cid-uujedPQL9f .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uujedPQL9f .list {
  color: #000000;
}
.cid-uujedPQL9f label {
  color: #000000;
}
.cid-uujedPQL9f .mbr-section-btn {
  text-align: center;
}
.cid-uuiSQKk2uN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/playa-del-duque-3-1376x600.webp");
}
.cid-uuiSQKk2uN .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uuiSQKk2uN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiSQKk2uN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiSQKk2uN .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uuiSQKk2uN .image-wrap {
    height: 300px;
  }
}
.cid-uuiSQLPsJa {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uuiSQLPsJa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiSQLPsJa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiSQLPsJa .mbr-text,
.cid-uuiSQLPsJa .mbr-section-btn {
  text-align: center;
}
.cid-uuiSQLPsJa .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uuiSQLPsJa .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uuiSQLYSsZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uuiSQLYSsZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuiSQLYSsZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuiSQLYSsZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uuiSQLYSsZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uuiSQLYSsZ .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-uuiSQLYSsZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uuiSQLYSsZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-uujgtQl1nH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uujgtQl1nH nav.navbar {
  position: fixed;
}
.cid-uujgtQl1nH .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-uujgtQl1nH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uujgtQl1nH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uujgtQl1nH .dropdown-item:hover,
.cid-uujgtQl1nH .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uujgtQl1nH .dropdown-item:hover span {
  color: white;
}
.cid-uujgtQl1nH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uujgtQl1nH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uujgtQl1nH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uujgtQl1nH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uujgtQl1nH .nav-link {
  position: relative;
}
.cid-uujgtQl1nH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtQl1nH .container {
    flex-wrap: nowrap;
  }
}
.cid-uujgtQl1nH .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uujgtQl1nH .dropdown-menu,
.cid-uujgtQl1nH .navbar.opened {
  background: #ffffff !important;
}
.cid-uujgtQl1nH .nav-item:focus,
.cid-uujgtQl1nH .nav-link:focus {
  outline: none;
}
.cid-uujgtQl1nH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uujgtQl1nH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uujgtQl1nH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uujgtQl1nH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uujgtQl1nH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uujgtQl1nH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uujgtQl1nH .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: #ffffff;
}
.cid-uujgtQl1nH .navbar.opened {
  transition: all 0.3s;
}
.cid-uujgtQl1nH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uujgtQl1nH .navbar .navbar-logo img {
  width: auto;
}
.cid-uujgtQl1nH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uujgtQl1nH .navbar.collapsed {
  justify-content: center;
}
.cid-uujgtQl1nH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uujgtQl1nH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uujgtQl1nH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uujgtQl1nH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uujgtQl1nH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uujgtQl1nH .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-uujgtQl1nH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uujgtQl1nH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uujgtQl1nH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uujgtQl1nH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uujgtQl1nH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uujgtQl1nH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uujgtQl1nH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uujgtQl1nH .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-uujgtQl1nH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uujgtQl1nH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uujgtQl1nH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uujgtQl1nH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uujgtQl1nH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uujgtQl1nH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uujgtQl1nH .navbar.navbar-short {
  min-height: 60px;
}
.cid-uujgtQl1nH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uujgtQl1nH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uujgtQl1nH .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-uujgtQl1nH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uujgtQl1nH .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uujgtQl1nH .navbar-brand {
    padding-right: 40px;
  }
}
.cid-uujgtQl1nH .dropdown-item.active,
.cid-uujgtQl1nH .dropdown-item:active {
  background-color: transparent;
}
.cid-uujgtQl1nH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uujgtQl1nH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uujgtQl1nH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uujgtQl1nH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uujgtQl1nH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uujgtQl1nH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uujgtQl1nH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uujgtQl1nH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uujgtQl1nH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uujgtQl1nH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-uujgtQl1nH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uujgtQl1nH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujgtQl1nH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uujgtQl1nH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uujgtQl1nH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujgtQl1nH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uujgtQl1nH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uujgtQl1nH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uujgtQl1nH .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-uujgtQl1nH .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uujgtQl1nH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uujgtQl1nH .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-uujgtQl1nH .navbar {
    height: 70px;
  }
  .cid-uujgtQl1nH .navbar.opened {
    height: auto;
  }
  .cid-uujgtQl1nH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uujgtQl1nH .container,
.cid-uujgtQl1nH .container-fluid {
  flex-wrap: wrap;
}
.cid-uujgtQl1nH .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-uujgtQl1nH .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-uujgtQl1nH .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uujgtQl1nH .contacts-menu {
    display: none;
  }
}
.cid-uujgtQl1nH .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-uujgtQl1nH .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-uujgtQl1nH .icon-box:hover {
  transform: scale(1.1);
}
.cid-uujgtQl1nH .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-uujgtQl1nH .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-uujgtQl1nH .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-uujgtQl1nH .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-uujgtQl1nH .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-uujgtQl1nH .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uujgtQl1nH .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-uujgtQl1nH .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-uujgtQl1nH .card-text {
  color: #000000;
}
.cid-uujgtQW70X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uujgtQW70X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtQW70X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtQW70X .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uujgtQW70X .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-uujgtQW70X .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-uujgtQW70X .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-uujgtQW70X .mbr-section-btn {
  padding-top: 40px;
}
.cid-uujgtRaimw {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uujgtRaimw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtRaimw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtRaimw .mbr-text,
.cid-uujgtRaimw .mbr-section-btn {
  text-align: center;
}
.cid-uujgtRaimw .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uujgtRaimw .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uujgtRpkRn {
  padding-top: 12rem;
  padding-bottom: 12rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/fort-lauderdale-florida-1560x880.webp");
}
.cid-uujgtRpkRn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uujgtRpkRn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtRpkRn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtRpkRn .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uujgtRpkRn .image-wrap {
    height: 300px;
  }
}
.cid-uujgtRBEHm {
  background-color: #ffffff;
}
.cid-uujgtRBEHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtRBEHm .container {
  max-width: 1300px;
}
.cid-uujgtRBEHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtRBEHm .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtRBEHm .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uujgtRBEHm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uujgtRBEHm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uujgtRBEHm .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uujgtRBEHm .mbr-section-title {
  color: #4e423d;
}
.cid-uujgtRBEHm .mbr-text,
.cid-uujgtRBEHm .mbr-section-btn {
  color: #555555;
}
.cid-uujgtRN2m8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uujgtRN2m8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtRN2m8 .container {
  max-width: 1300px;
}
.cid-uujgtRN2m8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtRN2m8 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtRN2m8 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uujgtRN2m8 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uujgtRN2m8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uujgtRN2m8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uujgtRN2m8 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uujgtRN2m8 .mbr-section-title {
  color: #4e423d;
}
.cid-uujgtRN2m8 .mbr-text,
.cid-uujgtRN2m8 .mbr-section-btn {
  color: #555555;
}
.cid-uujgtS1H5b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/fort-laudedale-2-1366x768.webp");
}
.cid-uujgtS1H5b .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uujgtS1H5b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtS1H5b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtS1H5b .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uujgtS1H5b .image-wrap {
    height: 300px;
  }
}
.cid-uumTlCbZpU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uumTlCbZpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uumTlCbZpU .container {
  max-width: 1300px;
}
.cid-uumTlCbZpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uumTlCbZpU .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uumTlCbZpU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uumTlCbZpU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uumTlCbZpU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uumTlCbZpU .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uumTlCbZpU .mbr-section-title {
  color: #4e423d;
}
.cid-uumTlCbZpU .mbr-text,
.cid-uumTlCbZpU .mbr-section-btn {
  color: #555555;
}
.cid-uujgtScKXU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uujgtScKXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtScKXU .container {
  max-width: 1300px;
}
.cid-uujgtScKXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtScKXU .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtScKXU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uujgtScKXU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uujgtScKXU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uujgtScKXU .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uujgtScKXU .mbr-section-title {
  color: #4e423d;
}
.cid-uujgtScKXU .mbr-text,
.cid-uujgtScKXU .mbr-section-btn {
  color: #555555;
}
.cid-uujgtSAwB5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uujgtSAwB5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtSAwB5 .container {
  max-width: 1300px;
}
.cid-uujgtSAwB5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtSAwB5 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtSAwB5 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uujgtSAwB5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uujgtSAwB5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uujgtSAwB5 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uujgtSAwB5 .mbr-section-title {
  color: #4e423d;
}
.cid-uujgtSAwB5 .mbr-text,
.cid-uujgtSAwB5 .mbr-section-btn {
  color: #555555;
}
.cid-uujgtSZAu1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uujgtSZAu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtSZAu1 .container {
  max-width: 1300px;
}
.cid-uujgtSZAu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtSZAu1 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uujgtSZAu1 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uujgtSZAu1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uujgtSZAu1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uujgtSZAu1 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-uujgtSZAu1 .mbr-section-title {
  color: #4e423d;
}
.cid-uujgtSZAu1 .mbr-text,
.cid-uujgtSZAu1 .mbr-section-btn {
  color: #555555;
}
.cid-uujgtTRt0u {
  padding-top: 9rem;
  padding-bottom: 12rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/natiivo-units-fort-lauderdale-2000x1140.webp");
}
.cid-uujgtTRt0u .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uujgtTRt0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtTRt0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtTRt0u .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-uujgtTRt0u .image-wrap {
    height: 300px;
  }
}
.cid-uujgtU2Zxi {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uujgtU2Zxi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtU2Zxi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtU2Zxi .mbr-text,
.cid-uujgtU2Zxi .mbr-section-btn {
  text-align: center;
}
.cid-uujgtU2Zxi .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uujgtU2Zxi .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-uujgtUhZwD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-uujgtUhZwD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uujgtUhZwD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uujgtUhZwD .google-map {
  height: 30rem;
  position: relative;
}
.cid-uujgtUhZwD .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uujgtUhZwD .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-uujgtUhZwD .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uujgtUhZwD .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-sSNfAITF5h {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sSNfAITF5h nav.navbar {
  position: fixed;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sSNfAITF5h .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sSNfAITF5h .dropdown-item:hover,
.cid-sSNfAITF5h .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-sSNfAITF5h .dropdown-item:hover span {
  color: white;
}
.cid-sSNfAITF5h .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sSNfAITF5h .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sSNfAITF5h .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sSNfAITF5h .nav-link {
  position: relative;
}
.cid-sSNfAITF5h .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .container {
    flex-wrap: nowrap;
  }
}
.cid-sSNfAITF5h .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown-menu,
.cid-sSNfAITF5h .navbar.opened {
  background: #ffffff !important;
}
.cid-sSNfAITF5h .nav-item:focus,
.cid-sSNfAITF5h .nav-link:focus {
  outline: none;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sSNfAITF5h .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sSNfAITF5h .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSNfAITF5h .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSNfAITF5h .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: #ffffff;
}
.cid-sSNfAITF5h .navbar.opened {
  transition: all 0.3s;
}
.cid-sSNfAITF5h .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sSNfAITF5h .navbar .navbar-logo img {
  width: auto;
}
.cid-sSNfAITF5h .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSNfAITF5h .navbar.collapsed {
  justify-content: center;
}
.cid-sSNfAITF5h .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSNfAITF5h .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSNfAITF5h .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sSNfAITF5h .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSNfAITF5h .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSNfAITF5h .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-sSNfAITF5h .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sSNfAITF5h .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSNfAITF5h .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSNfAITF5h .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sSNfAITF5h .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sSNfAITF5h .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sSNfAITF5h .navbar.navbar-short {
  min-height: 60px;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sSNfAITF5h .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSNfAITF5h .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-brand {
    padding-right: 40px;
  }
}
.cid-sSNfAITF5h .dropdown-item.active,
.cid-sSNfAITF5h .dropdown-item:active {
  background-color: transparent;
}
.cid-sSNfAITF5h .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSNfAITF5h .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sSNfAITF5h .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSNfAITF5h .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSNfAITF5h ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sSNfAITF5h button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sSNfAITF5h button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sSNfAITF5h nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sSNfAITF5h .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-sSNfAITF5h .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sSNfAITF5h a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sSNfAITF5h .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-sSNfAITF5h .navbar {
    height: 70px;
  }
  .cid-sSNfAITF5h .navbar.opened {
    height: auto;
  }
  .cid-sSNfAITF5h .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSNfAITF5h .container,
.cid-sSNfAITF5h .container-fluid {
  flex-wrap: wrap;
}
.cid-sSNfAITF5h .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-sSNfAITF5h .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-sSNfAITF5h .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-sSNfAITF5h .contacts-menu {
    display: none;
  }
}
.cid-sSNfAITF5h .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-sSNfAITF5h .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-sSNfAITF5h .icon-box:hover {
  transform: scale(1.1);
}
.cid-sSNfAITF5h .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-sSNfAITF5h .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-sSNfAITF5h .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-sSNfAITF5h .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-sSNfAITF5h .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-sSNfAITF5h .card-text {
  color: #000000;
}
.cid-uusPp50sLX {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uusPp50sLX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uusPp50sLX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uusPp50sLX .mbr-text,
.cid-uusPp50sLX .mbr-section-btn {
  text-align: center;
}
.cid-uusPp50sLX .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uusPp50sLX .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-utJAP35ORZ {
  background-color: #ffffff;
}
.cid-utJAP35ORZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJAP35ORZ .container {
  max-width: 1300px;
}
.cid-utJAP35ORZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJAP35ORZ .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utJAP35ORZ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utJAP35ORZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utJAP35ORZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utJAP35ORZ .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utJAP35ORZ .mbr-section-title {
  color: #4e423d;
}
.cid-utJAP35ORZ .mbr-text,
.cid-utJAP35ORZ .mbr-section-btn {
  color: #555555;
}
.cid-utJBLG8Md6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utJBLG8Md6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJBLG8Md6 .container {
  max-width: 1300px;
}
.cid-utJBLG8Md6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJBLG8Md6 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utJBLG8Md6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utJBLG8Md6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utJBLG8Md6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utJBLG8Md6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utJBLG8Md6 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utJBLG8Md6 .mbr-section-title {
  color: #4e423d;
}
.cid-utJBLG8Md6 .mbr-text,
.cid-utJBLG8Md6 .mbr-section-btn {
  color: #555555;
}
.cid-utJJ7jJjGq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utJJ7jJjGq .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJJ7jJjGq .container {
  max-width: 1300px;
}
.cid-utJJ7jJjGq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJJ7jJjGq .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utJJ7jJjGq .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utJJ7jJjGq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utJJ7jJjGq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utJJ7jJjGq .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utJJ7jJjGq .mbr-section-title {
  color: #4e423d;
}
.cid-utJJ7jJjGq .mbr-text,
.cid-utJJ7jJjGq .mbr-section-btn {
  color: #555555;
}
.cid-utJLjPzzWx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utJLjPzzWx .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJLjPzzWx .container {
  max-width: 1300px;
}
.cid-utJLjPzzWx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJLjPzzWx .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utJLjPzzWx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utJLjPzzWx .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utJLjPzzWx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utJLjPzzWx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utJLjPzzWx .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utJLjPzzWx .mbr-section-title {
  color: #4e423d;
}
.cid-utJLjPzzWx .mbr-text,
.cid-utJLjPzzWx .mbr-section-btn {
  color: #555555;
}
.cid-utJMd2i5jx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utJMd2i5jx .mbr-fallback-image.disabled {
  display: none;
}
.cid-utJMd2i5jx .container {
  max-width: 1300px;
}
.cid-utJMd2i5jx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utJMd2i5jx .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utJMd2i5jx .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utJMd2i5jx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utJMd2i5jx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utJMd2i5jx .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utJMd2i5jx .mbr-section-title {
  color: #4e423d;
}
.cid-utJMd2i5jx .mbr-text,
.cid-utJMd2i5jx .mbr-section-btn {
  color: #555555;
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-utZLHpWW3d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-utZLHpWW3d nav.navbar {
  position: fixed;
}
.cid-utZLHpWW3d .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-utZLHpWW3d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utZLHpWW3d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utZLHpWW3d .dropdown-item:hover,
.cid-utZLHpWW3d .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-utZLHpWW3d .dropdown-item:hover span {
  color: white;
}
.cid-utZLHpWW3d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utZLHpWW3d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utZLHpWW3d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utZLHpWW3d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utZLHpWW3d .nav-link {
  position: relative;
}
.cid-utZLHpWW3d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHpWW3d .container {
    flex-wrap: nowrap;
  }
}
.cid-utZLHpWW3d .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utZLHpWW3d .dropdown-menu,
.cid-utZLHpWW3d .navbar.opened {
  background: #ffffff !important;
}
.cid-utZLHpWW3d .nav-item:focus,
.cid-utZLHpWW3d .nav-link:focus {
  outline: none;
}
.cid-utZLHpWW3d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utZLHpWW3d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utZLHpWW3d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utZLHpWW3d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utZLHpWW3d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utZLHpWW3d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utZLHpWW3d .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: #ffffff;
}
.cid-utZLHpWW3d .navbar.opened {
  transition: all 0.3s;
}
.cid-utZLHpWW3d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utZLHpWW3d .navbar .navbar-logo img {
  width: auto;
}
.cid-utZLHpWW3d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utZLHpWW3d .navbar.collapsed {
  justify-content: center;
}
.cid-utZLHpWW3d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utZLHpWW3d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utZLHpWW3d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-utZLHpWW3d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utZLHpWW3d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utZLHpWW3d .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-utZLHpWW3d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utZLHpWW3d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utZLHpWW3d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utZLHpWW3d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utZLHpWW3d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utZLHpWW3d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utZLHpWW3d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utZLHpWW3d .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-utZLHpWW3d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utZLHpWW3d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utZLHpWW3d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utZLHpWW3d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utZLHpWW3d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utZLHpWW3d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-utZLHpWW3d .navbar.navbar-short {
  min-height: 60px;
}
.cid-utZLHpWW3d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utZLHpWW3d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utZLHpWW3d .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-utZLHpWW3d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utZLHpWW3d .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-utZLHpWW3d .navbar-brand {
    padding-right: 40px;
  }
}
.cid-utZLHpWW3d .dropdown-item.active,
.cid-utZLHpWW3d .dropdown-item:active {
  background-color: transparent;
}
.cid-utZLHpWW3d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utZLHpWW3d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utZLHpWW3d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utZLHpWW3d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-utZLHpWW3d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utZLHpWW3d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utZLHpWW3d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utZLHpWW3d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utZLHpWW3d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utZLHpWW3d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-utZLHpWW3d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utZLHpWW3d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utZLHpWW3d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utZLHpWW3d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utZLHpWW3d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utZLHpWW3d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utZLHpWW3d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utZLHpWW3d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utZLHpWW3d .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-utZLHpWW3d .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-utZLHpWW3d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utZLHpWW3d .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-utZLHpWW3d .navbar {
    height: 70px;
  }
  .cid-utZLHpWW3d .navbar.opened {
    height: auto;
  }
  .cid-utZLHpWW3d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utZLHpWW3d .container,
.cid-utZLHpWW3d .container-fluid {
  flex-wrap: wrap;
}
.cid-utZLHpWW3d .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-utZLHpWW3d .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-utZLHpWW3d .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-utZLHpWW3d .contacts-menu {
    display: none;
  }
}
.cid-utZLHpWW3d .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-utZLHpWW3d .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-utZLHpWW3d .icon-box:hover {
  transform: scale(1.1);
}
.cid-utZLHpWW3d .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-utZLHpWW3d .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-utZLHpWW3d .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-utZLHpWW3d .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-utZLHpWW3d .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-utZLHpWW3d .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-utZLHpWW3d .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-utZLHpWW3d .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-utZLHpWW3d .card-text {
  color: #000000;
}
.cid-uusPAKNHrL {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uusPAKNHrL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uusPAKNHrL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uusPAKNHrL .mbr-text,
.cid-uusPAKNHrL .mbr-section-btn {
  text-align: center;
}
.cid-uusPAKNHrL .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uusPAKNHrL .mbr-section-subtitle {
  text-align: center;
  color: #555555;
}
.cid-utZLHqVwnp {
  background-color: #ffffff;
}
.cid-utZLHqVwnp .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZLHqVwnp .container {
  max-width: 1300px;
}
.cid-utZLHqVwnp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZLHqVwnp .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHqVwnp .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utZLHqVwnp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZLHqVwnp .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZLHqVwnp .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZLHqVwnp .mbr-section-title {
  color: #4e423d;
}
.cid-utZLHqVwnp .mbr-text,
.cid-utZLHqVwnp .mbr-section-btn {
  color: #555555;
}
.cid-utZNuWqBwz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/miami-black-white-2000x1333.webp");
}
.cid-utZNuWqBwz .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-utZNuWqBwz .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZNuWqBwz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZNuWqBwz .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-utZNuWqBwz .image-wrap {
    height: 300px;
  }
}
.cid-utZLHrjHbG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZLHrjHbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZLHrjHbG .container {
  max-width: 1300px;
}
.cid-utZLHrjHbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZLHrjHbG .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHrjHbG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utZLHrjHbG .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utZLHrjHbG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZLHrjHbG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZLHrjHbG .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZLHrjHbG .mbr-section-title {
  color: #4e423d;
}
.cid-utZLHrjHbG .mbr-text,
.cid-utZLHrjHbG .mbr-section-btn {
  color: #555555;
}
.cid-utZLHrAMDK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZLHrAMDK .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZLHrAMDK .container {
  max-width: 1300px;
}
.cid-utZLHrAMDK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZLHrAMDK .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHrAMDK .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utZLHrAMDK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZLHrAMDK .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZLHrAMDK .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZLHrAMDK .mbr-section-title {
  color: #4e423d;
}
.cid-utZLHrAMDK .mbr-text,
.cid-utZLHrAMDK .mbr-section-btn {
  color: #555555;
}
.cid-utZLHrSOlm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZLHrSOlm .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZLHrSOlm .container {
  max-width: 1300px;
}
.cid-utZLHrSOlm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZLHrSOlm .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHrSOlm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utZLHrSOlm .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utZLHrSOlm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZLHrSOlm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZLHrSOlm .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZLHrSOlm .mbr-section-title {
  color: #4e423d;
}
.cid-utZLHrSOlm .mbr-text,
.cid-utZLHrSOlm .mbr-section-btn {
  color: #555555;
}
.cid-utZNwSIOp7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-image: url("../../../assets/images/miami-beach-close-up-2000x1333.webp");
}
.cid-utZNwSIOp7 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-utZNwSIOp7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZNwSIOp7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZNwSIOp7 .image-wrap {
  height: 500px;
}
@media (max-width: 992px) {
  .cid-utZNwSIOp7 .image-wrap {
    height: 300px;
  }
}
.cid-utZLHs6YAx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZLHs6YAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZLHs6YAx .container {
  max-width: 1300px;
}
.cid-utZLHs6YAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZLHs6YAx .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZLHs6YAx .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utZLHs6YAx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZLHs6YAx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZLHs6YAx .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZLHs6YAx .mbr-section-title {
  color: #4e423d;
}
.cid-utZLHs6YAx .mbr-text,
.cid-utZLHs6YAx .mbr-section-btn {
  color: #555555;
}
.cid-utZNC4z3Zj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZNC4z3Zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZNC4z3Zj .container {
  max-width: 1300px;
}
.cid-utZNC4z3Zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZNC4z3Zj .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZNC4z3Zj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utZNC4z3Zj .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utZNC4z3Zj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZNC4z3Zj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZNC4z3Zj .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZNC4z3Zj .mbr-section-title {
  color: #4e423d;
}
.cid-utZNC4z3Zj .mbr-text,
.cid-utZNC4z3Zj .mbr-section-btn {
  color: #555555;
}
.cid-utZNFO4kj0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZNFO4kj0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZNFO4kj0 .container {
  max-width: 1300px;
}
.cid-utZNFO4kj0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZNFO4kj0 .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZNFO4kj0 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utZNFO4kj0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZNFO4kj0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZNFO4kj0 .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZNFO4kj0 .mbr-section-title {
  color: #4e423d;
}
.cid-utZNFO4kj0 .mbr-text,
.cid-utZNFO4kj0 .mbr-section-btn {
  color: #555555;
}
.cid-utZNGBuxHg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utZNGBuxHg .mbr-fallback-image.disabled {
  display: none;
}
.cid-utZNGBuxHg .container {
  max-width: 1300px;
}
.cid-utZNGBuxHg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utZNGBuxHg .text-wrapper {
  max-width: 700px;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utZNGBuxHg .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utZNGBuxHg .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-utZNGBuxHg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utZNGBuxHg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-utZNGBuxHg .image-wrapper {
    padding: 1.5rem;
  }
}
.cid-utZNGBuxHg .mbr-section-title {
  color: #4e423d;
}
.cid-utZNGBuxHg .mbr-text,
.cid-utZNGBuxHg .mbr-section-btn {
  color: #555555;
}
.cid-uun3VISOlK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uun3VISOlK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uun3VISOlK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .container {
    padding: 0 20px;
  }
}
.cid-uun3VISOlK .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uun3VISOlK .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uun3VISOlK .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uun3VISOlK .row .list {
    margin-bottom: 32px;
  }
}
.cid-uun3VISOlK .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uun3VISOlK .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uun3VISOlK .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uun3VISOlK .mbr-section-title {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-desc {
  color: #ffffff;
}
.cid-uun3VISOlK .mbr-text {
  color: #ffffff;
}
.cid-uun3VISOlK .list {
  color: #ffffff;
}
.cid-uun3VISOlK .copyright {
  color: #ffffff;
}
.cid-uuneXSS5k1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uuneXSS5k1 nav.navbar {
  position: fixed;
}
.cid-uuneXSS5k1 .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-uuneXSS5k1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uuneXSS5k1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uuneXSS5k1 .dropdown-item:hover,
.cid-uuneXSS5k1 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uuneXSS5k1 .dropdown-item:hover span {
  color: white;
}
.cid-uuneXSS5k1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uuneXSS5k1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uuneXSS5k1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uuneXSS5k1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uuneXSS5k1 .nav-link {
  position: relative;
}
.cid-uuneXSS5k1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uuneXSS5k1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uuneXSS5k1 .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uuneXSS5k1 .dropdown-menu,
.cid-uuneXSS5k1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uuneXSS5k1 .nav-item:focus,
.cid-uuneXSS5k1 .nav-link:focus {
  outline: none;
}
.cid-uuneXSS5k1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uuneXSS5k1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uuneXSS5k1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uuneXSS5k1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uuneXSS5k1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uuneXSS5k1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uuneXSS5k1 .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: #ffffff;
}
.cid-uuneXSS5k1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uuneXSS5k1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uuneXSS5k1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uuneXSS5k1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uuneXSS5k1 .navbar.collapsed {
  justify-content: center;
}
.cid-uuneXSS5k1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uuneXSS5k1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uuneXSS5k1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uuneXSS5k1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uuneXSS5k1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uuneXSS5k1 .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-uuneXSS5k1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uuneXSS5k1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uuneXSS5k1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uuneXSS5k1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uuneXSS5k1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uuneXSS5k1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uuneXSS5k1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uuneXSS5k1 .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-uuneXSS5k1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uuneXSS5k1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uuneXSS5k1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uuneXSS5k1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uuneXSS5k1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uuneXSS5k1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uuneXSS5k1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uuneXSS5k1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uuneXSS5k1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uuneXSS5k1 .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-uuneXSS5k1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uuneXSS5k1 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uuneXSS5k1 .navbar-brand {
    padding-right: 40px;
  }
}
.cid-uuneXSS5k1 .dropdown-item.active,
.cid-uuneXSS5k1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uuneXSS5k1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uuneXSS5k1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uuneXSS5k1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uuneXSS5k1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uuneXSS5k1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uuneXSS5k1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uuneXSS5k1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uuneXSS5k1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uuneXSS5k1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uuneXSS5k1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-uuneXSS5k1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uuneXSS5k1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuneXSS5k1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uuneXSS5k1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uuneXSS5k1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuneXSS5k1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uuneXSS5k1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uuneXSS5k1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uuneXSS5k1 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-uuneXSS5k1 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uuneXSS5k1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uuneXSS5k1 .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-uuneXSS5k1 .navbar {
    height: 70px;
  }
  .cid-uuneXSS5k1 .navbar.opened {
    height: auto;
  }
  .cid-uuneXSS5k1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuneXSS5k1 .container,
.cid-uuneXSS5k1 .container-fluid {
  flex-wrap: wrap;
}
.cid-uuneXSS5k1 .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-uuneXSS5k1 .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-uuneXSS5k1 .contacts-menu .mbr-iconfont {
  color: #222222;
}
@media (max-width: 991px) {
  .cid-uuneXSS5k1 .contacts-menu {
    display: none;
  }
}
.cid-uuneXSS5k1 .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-uuneXSS5k1 .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-uuneXSS5k1 .icon-box:hover {
  transform: scale(1.1);
}
.cid-uuneXSS5k1 .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-uuneXSS5k1 .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-uuneXSS5k1 .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-uuneXSS5k1 .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-uuneXSS5k1 .navbar-collapse .mbr-section-btn .btn-black {
  color: #ffffff !important;
}
@media (max-width: 577px) {
  .cid-uuneXSS5k1 .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uuneXSS5k1 .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-uuneXSS5k1 .navbar-collapse .nav-link:hover {
  color: #ffffff !important;
}
.cid-uuneXSS5k1 .card-text {
  color: #000000;
}
.cid-uuneXUj1Fg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuneXUj1Fg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuneXUj1Fg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuneXUj1Fg .mbr-title {
  margin-bottom: 30px;
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uuneXUj1Fg .mbr-title {
    margin-bottom: 10px;
  }
}
.cid-uuneXUj1Fg .mbr-subtitle {
  padding-top: 20px;
  color: #747474;
}
.cid-uuneXUj1Fg .mbr-text {
  padding-top: 30px;
  color: #747474;
}
.cid-uuneXUj1Fg .mbr-section-btn {
  padding-top: 40px;
}
.cid-uunfRTzaGf {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #fdfcfa;
}
.cid-uunfRTzaGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uunfRTzaGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uunfRTzaGf .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uunfRTzaGf .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uunfRTzaGf .container {
    padding: 0;
  }
}
.cid-uunfRTzaGf .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uunfRTzaGf .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uunfRTzaGf .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uunfRTzaGf .title-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uunfRTzaGf .mbr-section-title {
  color: #263652;
}
.cid-uunfRTzaGf .mbr-text {
  color: #263652;
}
.cid-uuneXXNokP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #333333;
}
.cid-uuneXXNokP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuneXXNokP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uuneXXNokP .container {
    padding: 0 20px;
  }
}
.cid-uuneXXNokP .row {
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuneXXNokP .row .title-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uuneXXNokP .row .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uuneXXNokP .row .title-wrapper .mbr-desc {
  opacity: .5;
  margin-bottom: 16px;
}
.cid-uuneXXNokP .row .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuneXXNokP .row .list {
  padding: 0;
  margin-bottom: 50px;
  list-style: none;
}
@media (max-width: 992px) {
  .cid-uuneXXNokP .row .list {
    margin-bottom: 32px;
  }
}
.cid-uuneXXNokP .row .list .item-wrap {
  margin-bottom: 16px;
}
.cid-uuneXXNokP .row .list .item-wrap:hover {
  text-decoration: underline;
  color: #ffffff;
}
.cid-uuneXXNokP .row .copyright {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uuneXXNokP .mbr-section-title {
  color: #ffffff;
}
.cid-uuneXXNokP .mbr-desc {
  color: #ffffff;
}
.cid-uuneXXNokP .mbr-text {
  color: #ffffff;
}
.cid-uuneXXNokP .list {
  color: #ffffff;
}
.cid-uuneXXNokP .copyright {
  color: #ffffff;
}
