.btn {
  border-width: 2px;
}
body {
  font-family: Orbit;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 6.25rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.8125rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.125rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.28rem;
  line-height: 140%;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.375rem;
    font-size: calc( 2.8375rem + (6.25 - 2.8375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.8375rem + (6.25 - 2.8375) * ((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.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.024rem;
    font-size: calc( 1.098rem + (1.28 - 1.098) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.098rem + (1.28 - 1.098) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 25px;
}
.bg-primary {
  background-color: #6eb7c0 !important;
}
.bg-success {
  background-color: #9f936e !important;
}
.bg-info {
  background-color: #ec6f8a !important;
}
.bg-warning {
  background-color: #53455e !important;
}
.bg-danger {
  background-color: #2c4c64 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6eb7c0 !important;
  border-color: #6eb7c0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #418d96 !important;
  border-color: #418d96 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #418d96 !important;
  border-color: #418d96 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #181818 !important;
  border-color: #181818 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ec6f8a !important;
  border-color: #ec6f8a !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: #e2224c !important;
  border-color: #e2224c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #e2224c !important;
  border-color: #e2224c !important;
}
.btn-success,
.btn-success:active {
  background-color: #9f936e !important;
  border-color: #9f936e !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: #6e6549 !important;
  border-color: #6e6549 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #6e6549 !important;
  border-color: #6e6549 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #53455e !important;
  border-color: #53455e !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: #27202c !important;
  border-color: #27202c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #27202c !important;
  border-color: #27202c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #2c4c64 !important;
  border-color: #2c4c64 !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: #121e28 !important;
  border-color: #121e28 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #121e28 !important;
  border-color: #121e28 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6eb7c0;
  color: #6eb7c0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #418d96 !important;
  background-color: transparent!important;
  border-color: #418d96 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6eb7c0 !important;
  border-color: #6eb7c0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #181818;
  color: #181818;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ec6f8a;
  color: #ec6f8a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #e2224c !important;
  background-color: transparent!important;
  border-color: #e2224c !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ec6f8a !important;
  border-color: #ec6f8a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #9f936e;
  color: #9f936e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6e6549 !important;
  background-color: transparent!important;
  border-color: #6e6549 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9f936e !important;
  border-color: #9f936e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #53455e;
  color: #53455e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #27202c !important;
  background-color: transparent!important;
  border-color: #27202c !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #53455e !important;
  border-color: #53455e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #2c4c64;
  color: #2c4c64;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #121e28 !important;
  background-color: transparent!important;
  border-color: #121e28 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #2c4c64 !important;
  border-color: #2c4c64 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6eb7c0 !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #9f936e !important;
}
.text-info {
  color: #ec6f8a !important;
}
.text-warning {
  color: #53455e !important;
}
.text-danger {
  color: #2c4c64 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #3d838b !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: #645c43 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #d81d45 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #1f1a23 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #0d161d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6eb7c0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ec6f8a;
}
.alert-warning {
  background-color: #53455e;
}
.alert-danger {
  background-color: #2c4c64;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6eb7c0;
  border-color: #6eb7c0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6eb7c0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c7e3e7;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #d2ccbb;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #9380a2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #598eb6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #6eb7c0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #6eb7c0;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6eb7c0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6eb7c0;
}
.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: #6eb7c0;
  border-bottom-color: #6eb7c0;
}
.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: #6eb7c0 !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: #181818 !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='%236eb7c0' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  position: relative;
  padding: 30px 40px;
  box-shadow: none;
  border: none !important;
  font-weight: 700;
  min-width: 140px;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 30px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  border: none !important;
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0 0 10px 0;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn-primary-outline,
  .mbr-section-btn-main .btn-primary-outline,
  .mbr-section-btn .btn-secondary-outline,
  .mbr-section-btn-main .btn-secondary-outline,
  .mbr-section-btn .btn-success-outline,
  .mbr-section-btn-main .btn-success-outline,
  .mbr-section-btn .btn-info-outline,
  .mbr-section-btn-main .btn-info-outline,
  .mbr-section-btn .btn-warning-outline,
  .mbr-section-btn-main .btn-warning-outline,
  .mbr-section-btn .btn-danger-outline,
  .mbr-section-btn-main .btn-danger-outline,
  .mbr-section-btn .btn-black-outline,
  .mbr-section-btn-main .btn-black-outline,
  .mbr-section-btn .btn-white-outline,
  .mbr-section-btn-main .btn-white-outline {
    padding: 0 0 10px 0;
  }
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  background-color: transparent;
}
.mbr-section-btn .btn-primary-outline:hover::before,
.mbr-section-btn-main .btn-primary-outline:hover::before,
.mbr-section-btn .btn-secondary-outline:hover::before,
.mbr-section-btn-main .btn-secondary-outline:hover::before,
.mbr-section-btn .btn-success-outline:hover::before,
.mbr-section-btn-main .btn-success-outline:hover::before,
.mbr-section-btn .btn-info-outline:hover::before,
.mbr-section-btn-main .btn-info-outline:hover::before,
.mbr-section-btn .btn-warning-outline:hover::before,
.mbr-section-btn-main .btn-warning-outline:hover::before,
.mbr-section-btn .btn-danger-outline:hover::before,
.mbr-section-btn-main .btn-danger-outline:hover::before,
.mbr-section-btn .btn-black-outline:hover::before,
.mbr-section-btn-main .btn-black-outline:hover::before,
.mbr-section-btn .btn-white-outline:hover::before,
.mbr-section-btn-main .btn-white-outline:hover::before,
.mbr-section-btn .btn-primary-outline:focus::before,
.mbr-section-btn-main .btn-primary-outline:focus::before,
.mbr-section-btn .btn-secondary-outline:focus::before,
.mbr-section-btn-main .btn-secondary-outline:focus::before,
.mbr-section-btn .btn-success-outline:focus::before,
.mbr-section-btn-main .btn-success-outline:focus::before,
.mbr-section-btn .btn-info-outline:focus::before,
.mbr-section-btn-main .btn-info-outline:focus::before,
.mbr-section-btn .btn-warning-outline:focus::before,
.mbr-section-btn-main .btn-warning-outline:focus::before,
.mbr-section-btn .btn-danger-outline:focus::before,
.mbr-section-btn-main .btn-danger-outline:focus::before,
.mbr-section-btn .btn-black-outline:focus::before,
.mbr-section-btn-main .btn-black-outline:focus::before,
.mbr-section-btn .btn-white-outline:focus::before,
.mbr-section-btn-main .btn-white-outline:focus::before {
  width: 100%;
}
.mbr-section-btn .btn-primary-outline::before,
.mbr-section-btn-main .btn-primary-outline::before,
.mbr-section-btn .btn-secondary-outline::before,
.mbr-section-btn-main .btn-secondary-outline::before,
.mbr-section-btn .btn-success-outline::before,
.mbr-section-btn-main .btn-success-outline::before,
.mbr-section-btn .btn-info-outline::before,
.mbr-section-btn-main .btn-info-outline::before,
.mbr-section-btn .btn-warning-outline::before,
.mbr-section-btn-main .btn-warning-outline::before,
.mbr-section-btn .btn-danger-outline::before,
.mbr-section-btn-main .btn-danger-outline::before,
.mbr-section-btn .btn-black-outline::before,
.mbr-section-btn-main .btn-black-outline::before,
.mbr-section-btn .btn-white-outline::before,
.mbr-section-btn-main .btn-white-outline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #6eb7c0;
  height: 4px;
  width: 18%;
  transition: all 0.3s ease-in-out;
}
.cid-vjIuw2WhGq .nav-item:focus,
.cid-vjIuw2WhGq .nav-link:focus {
  outline: none;
}
.cid-vjIuw2WhGq .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-vjIuw2WhGq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjIuw2WhGq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vjIuw2WhGq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vjIuw2WhGq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vjIuw2WhGq .collapsed {
  flex-direction: row!important;
}
.cid-vjIuw2WhGq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-vjIuw2WhGq .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
  background: none;
}
.cid-vjIuw2WhGq .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-vjIuw2WhGq .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-vjIuw2WhGq .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
  display: none !important;
}
.cid-vjIuw2WhGq .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-vjIuw2WhGq .navbar .navbar-collapse.show,
.cid-vjIuw2WhGq .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-vjIuw2WhGq .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-vjIuw2WhGq .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-vjIuw2WhGq .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-vjIuw2WhGq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vjIuw2WhGq .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-vjIuw2WhGq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vjIuw2WhGq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vjIuw2WhGq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vjIuw2WhGq .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-vjIuw2WhGq .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-vjIuw2WhGq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-vjIuw2WhGq .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vjIuw2WhGq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vjIuw2WhGq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vjIuw2WhGq .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vjIuw2WhGq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vjIuw2WhGq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vjIuw2WhGq .dropdown-item.active,
.cid-vjIuw2WhGq .dropdown-item:active {
  background-color: transparent;
}
.cid-vjIuw2WhGq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vjIuw2WhGq .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-vjIuw2WhGq .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-vjIuw2WhGq .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-vjIuw2WhGq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vjIuw2WhGq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vjIuw2WhGq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vjIuw2WhGq ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vjIuw2WhGq .navbar-buttons {
  text-align: inherit;
}
.cid-vjIuw2WhGq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjIuw2WhGq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #56a2ac;
}
.cid-vjIuw2WhGq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vjIuw2WhGq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjIuw2WhGq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vjIuw2WhGq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vjIuw2WhGq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjIuw2WhGq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vjIuw2WhGq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vjIuw2WhGq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vjIuw2WhGq .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-vjIuw2WhGq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vjIuw2WhGq .icons-menu {
  text-align: inherit;
}
.cid-vjIuw2WhGq .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-vjIuw2WhGq .nav-link:hover,
.cid-vjIuw2WhGq .dropdown-item:hover,
.cid-vjIuw2WhGq .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vjIuw2WhGq .navbar {
    height: 77px;
  }
  .cid-vjIuw2WhGq .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-vjIuw2WhGq .navbar-collapse .img-column {
    display: none;
  }
  .cid-vjIuw2WhGq .icons-menu,
  .cid-vjIuw2WhGq .navbar-buttons,
  .cid-vjIuw2WhGq .contact-block,
  .cid-vjIuw2WhGq .text-column {
    text-align: center !important;
  }
}
.cid-vjHXnFIbCD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjHXnFIbCD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/fallback-1920x1080.png");
}
.cid-vjHXnFIbCD .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-vjHXnFIbCD .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vjHXnFIbCD .container {
    padding: 0 30px;
  }
}
.cid-vjHXnFIbCD .title-wrapper {
  border-radius: 2em;
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.cid-vjHXnFIbCD .title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .cid-vjHXnFIbCD .title-wrapper {
    width: 100%;
  }
}
.cid-vjHXnFIbCD .title-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vjHXnFIbCD .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjHXnFIbCD .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vjHXnFIbCD .title-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vjHXnFIbCD .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 30px;
}
.cid-vjHXnFIbCD .mbr-section-title {
  color: #ffffff;
}
.cid-vjHXnFIbCD .mbr-text {
  color: #F0F0F0;
  text-align: center;
}
.cid-vjHXnFIbCD .mbr-section-title,
.cid-vjHXnFIbCD .mbr-section-btn {
  text-align: center;
}
.cid-vjLZELUjMT {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back-02-lr-1920x1080.png");
}
.cid-vjLZELUjMT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLZELUjMT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjLZELUjMT .mbr-text,
.cid-vjLZELUjMT .mbr-section-btn {
  color: #232323;
}
.cid-vjLZELUjMT .card-title,
.cid-vjLZELUjMT .card-box {
  color: #f0f0f0;
}
.cid-vjLZELUjMT .mbr-text,
.cid-vjLZELUjMT .link-wrap {
  color: #ffffff;
}
.cid-vjLZELUjMT .card-box .mbr-text,
.cid-vjLZELUjMT .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjLVkfXAK8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/panorama20lido20andrea-2000x993.png");
}
.cid-vjLVkfXAK8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLVkfXAK8 .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-vjLVkfXAK8 .container {
    padding: 0 30px;
  }
}
.cid-vjLVkfXAK8 .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjLVkfXAK8 .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-vjLVkfXAK8 .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-vjLVkfXAK8 .image-wrapper img {
    height: 300px;
  }
}
.cid-vjLVkfXAK8 .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-vjLVkfXAK8 .text-wrapper {
    margin: 0;
  }
}
.cid-vjLVkfXAK8 .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vjLVkfXAK8 .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vjLVkfXAK8 .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-vjLVkfXAK8 .mbr-section-title {
  color: #ffffff;
}
.cid-vjLVkfXAK8 .mbr-text {
  color: #ffffff;
}
.cid-vjLVkfXAK8 .mbr-section-title,
.cid-vjLVkfXAK8 .mbr-section-btn {
  color: #2b2b2b;
}
.cid-vjMiO8iavp {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back-04-lr-1920x1080.png");
}
.cid-vjMiO8iavp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjMiO8iavp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjMiO8iavp .mbr-text,
.cid-vjMiO8iavp .mbr-section-btn {
  color: #232323;
}
.cid-vjMiO8iavp .card-title,
.cid-vjMiO8iavp .card-box {
  color: #f0f0f0;
}
.cid-vjMiO8iavp .mbr-text,
.cid-vjMiO8iavp .link-wrap {
  color: #ffffff;
}
.cid-vjMiO8iavp .card-box .mbr-text,
.cid-vjMiO8iavp .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjMkwojOiO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/molo20lido-2000x784.png");
}
.cid-vjMkwojOiO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjMkwojOiO .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-vjMkwojOiO .container {
    padding: 0 30px;
  }
}
.cid-vjMkwojOiO .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjMkwojOiO .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-vjMkwojOiO .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-vjMkwojOiO .image-wrapper img {
    height: 300px;
  }
}
.cid-vjMkwojOiO .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-vjMkwojOiO .text-wrapper {
    margin: 0;
  }
}
.cid-vjMkwojOiO .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vjMkwojOiO .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vjMkwojOiO .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-vjMkwojOiO .mbr-section-title {
  color: #ffffff;
}
.cid-vjMkwojOiO .mbr-text {
  color: #ffffff;
}
.cid-vjMkwojOiO .mbr-section-title,
.cid-vjMkwojOiO .mbr-section-btn {
  color: #2b2b2b;
}
.cid-vjLZF9NyLq {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back-03-lr-1920x1080.png");
}
.cid-vjLZF9NyLq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLZF9NyLq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjLZF9NyLq .mbr-text,
.cid-vjLZF9NyLq .mbr-section-btn {
  color: #232323;
}
.cid-vjLZF9NyLq .card-title,
.cid-vjLZF9NyLq .card-box {
  color: #f0f0f0;
}
.cid-vjLZF9NyLq .mbr-text,
.cid-vjLZF9NyLq .link-wrap {
  color: #ffffff;
}
.cid-vjLZF9NyLq .card-box .mbr-text,
.cid-vjLZF9NyLq .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjHZdxsnoL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/back20map-2000x1050.png");
}
.cid-vjHZdxsnoL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjHZdxsnoL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjHZdxsnoL .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-vjHZdxsnoL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vjHZdxsnoL .container {
    padding: 0 30px;
  }
}
.cid-vjHZdxsnoL .card-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-vjHZdxsnoL .card-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vjHZdxsnoL .card-wrapper:hover .content-wrap::before {
  height: 100%;
}
.cid-vjHZdxsnoL .card-wrapper:hover .image-wrapper img {
  opacity: 1;
  transform: translateY(0);
}
.cid-vjHZdxsnoL .card-wrapper .image-wrapper {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vjHZdxsnoL .card-wrapper .image-wrapper {
    display: none;
  }
}
.cid-vjHZdxsnoL .card-wrapper .image-wrapper img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
}
.cid-vjHZdxsnoL .card-wrapper .content-wrap {
  position: relative;
  width: 50%;
  border-top: 5px solid #6eb7c0;
  border-bottom: 5px solid #6eb7c0;
  padding: 70px 16px;
}
@media (max-width: 992px) {
  .cid-vjHZdxsnoL .card-wrapper .content-wrap {
    padding: 45px 0;
    width: 100%;
  }
}
.cid-vjHZdxsnoL .card-wrapper .content-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #6eb7c0;
  transition: all 0.3s ease-in-out;
}
.cid-vjHZdxsnoL .card-wrapper .content-wrap .text-wrap {
  position: relative;
  z-index: 1;
}
.cid-vjHZdxsnoL .card-wrapper .content-wrap .text-wrap .mbr-section-title {
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .cid-vjHZdxsnoL .card-wrapper .content-wrap .text-wrap .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vjHZdxsnoL .card-wrapper .content-wrap .text-wrap .mbr-text {
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
}
.cid-vjHZdxsnoL .mbr-section-title {
  color: #000000;
}
.cid-vjHZdxsnoL .mbr-text {
  color: #ffffff;
}
.cid-vjHZqFgZWG {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back-art20deco-lr-1920x1080.png");
}
.cid-vjHZqFgZWG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjHZqFgZWG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjHZqFgZWG .mbr-text,
.cid-vjHZqFgZWG .mbr-section-btn {
  color: #232323;
}
.cid-vjHZqFgZWG .card-title,
.cid-vjHZqFgZWG .card-box {
  color: #f0f0f0;
}
.cid-vjHZqFgZWG .mbr-text,
.cid-vjHZqFgZWG .link-wrap {
  color: #ffffff;
}
.cid-vjHZqFgZWG .card-box .mbr-text,
.cid-vjHZqFgZWG .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjMw1tn0Yk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/foto20bagni20lido-1241x827.png");
}
.cid-vjMw1tn0Yk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjMw1tn0Yk .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-vjMw1tn0Yk .container {
    padding: 0 30px;
  }
}
.cid-vjMw1tn0Yk .image-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vjMw1tn0Yk .image-wrapper {
    height: auto;
    margin-bottom: 20px;
  }
}
.cid-vjMw1tn0Yk .image-wrapper img {
  height: 500px;
  object-fit: cover;
  border-radius: 3em;
}
@media (max-width: 992px) {
  .cid-vjMw1tn0Yk .image-wrapper img {
    height: 300px;
  }
}
.cid-vjMw1tn0Yk .text-wrapper {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-vjMw1tn0Yk .text-wrapper {
    margin: 0;
  }
}
.cid-vjMw1tn0Yk .text-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vjMw1tn0Yk .text-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vjMw1tn0Yk .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-vjMw1tn0Yk .mbr-section-title {
  color: #ffffff;
}
.cid-vjMw1tn0Yk .mbr-text {
  color: #ffffff;
}
.cid-vjMw1tn0Yk .mbr-section-title,
.cid-vjMw1tn0Yk .mbr-section-btn {
  color: #2b2b2b;
}
.cid-vjMitu7tt3 {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back20nature-lr-1920x1080.png");
}
.cid-vjMitu7tt3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjMitu7tt3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjMitu7tt3 .mbr-text,
.cid-vjMitu7tt3 .mbr-section-btn {
  color: #232323;
}
.cid-vjMitu7tt3 .card-title,
.cid-vjMitu7tt3 .card-box {
  color: #f0f0f0;
}
.cid-vjMitu7tt3 .mbr-text,
.cid-vjMitu7tt3 .link-wrap {
  color: #ffffff;
}
.cid-vjMitu7tt3 .card-box .mbr-text,
.cid-vjMitu7tt3 .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjLZFvAbfF {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #6eb7c0;
}
.cid-vjLZFvAbfF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLZFvAbfF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjLZFvAbfF .mbr-text,
.cid-vjLZFvAbfF .mbr-section-btn {
  color: #232323;
}
.cid-vjLZFvAbfF .card-title,
.cid-vjLZFvAbfF .card-box {
  color: #f0f0f0;
}
.cid-vjLZFvAbfF .mbr-text,
.cid-vjLZFvAbfF .link-wrap {
  color: #ffffff;
}
.cid-vjLZFvAbfF .card-box .mbr-text,
.cid-vjLZFvAbfF .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjMJsizlLj {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/scroll-back-01-lr-1920x1080.png");
}
.cid-vjMJsizlLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjMJsizlLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjMJsizlLj .mbr-text,
.cid-vjMJsizlLj .mbr-section-btn {
  color: #232323;
}
.cid-vjMJsizlLj .card-title,
.cid-vjMJsizlLj .card-box {
  color: #f0f0f0;
}
.cid-vjMJsizlLj .mbr-text,
.cid-vjMJsizlLj .link-wrap {
  color: #ffffff;
}
.cid-vjMJsizlLj .card-box .mbr-text,
.cid-vjMJsizlLj .mbr-section-btn {
  color: #f0f0f0;
}
.cid-vjI6MwsHjq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-vjI6MwsHjq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjI6MwsHjq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjI6MwsHjq .row {
  justify-content: center;
}
.cid-vjI6MwsHjq .card {
  justify-content: center;
}
.cid-vjI6MwsHjq .mbr-copy {
  margin-bottom: 0;
  color: #56a2ac;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vjI6MwsHjq .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vjI6MwsHjq .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-vjI6MwsHjq .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-vjI6MwsHjq .nav-wrapper .list .item-wrap:hover,
.cid-vjI6MwsHjq .nav-wrapper .list .item-wrap:focus {
  color: #ec6f8a;
}
.cid-vjI6MwsHjq .list,
.cid-vjI6MwsHjq .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vjI6MwsHjq .list,
.cid-vjI6MwsHjq .item-wrap,
.cid-vjI6MwsHjq .nav-wrapper {
  color: #6eb7c0;
}
.cid-vjMKVe8hPD.popup-builder {
  background-color: #ffffff;
}
.cid-vjMKVe8hPD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-vjMKVe8hPD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-vjMKVe8hPD .modal-content,
.cid-vjMKVe8hPD .modal-dialog {
  height: auto;
}
.cid-vjMKVe8hPD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-vjMKVe8hPD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-vjMKVe8hPD .form-wrapper .mbr-form .form-group,
  .cid-vjMKVe8hPD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-vjMKVe8hPD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-vjMKVe8hPD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vjMKVe8hPD .mbr-text {
  text-align: center;
  color: #56a2ac;
}
.cid-vjMKVe8hPD .pt-0 {
  padding-top: 0 !important;
}
.cid-vjMKVe8hPD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-vjMKVe8hPD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-vjMKVe8hPD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-vjMKVe8hPD .modal-open {
  overflow: hidden;
}
.cid-vjMKVe8hPD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-vjMKVe8hPD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-vjMKVe8hPD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-vjMKVe8hPD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-vjMKVe8hPD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-vjMKVe8hPD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-vjMKVe8hPD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-vjMKVe8hPD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-vjMKVe8hPD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-vjMKVe8hPD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-vjMKVe8hPD .modal-backdrop.fade {
  opacity: 0;
}
.cid-vjMKVe8hPD .modal-backdrop.show {
  opacity: .5;
}
.cid-vjMKVe8hPD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-vjMKVe8hPD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vjMKVe8hPD .modal-header {
    padding: 1rem;
  }
}
.cid-vjMKVe8hPD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-vjMKVe8hPD .modal-header .close svg {
  fill: #353535;
}
.cid-vjMKVe8hPD .modal-header .close:hover {
  opacity: 1;
}
.cid-vjMKVe8hPD .modal-header .close:focus {
  outline: none;
}
.cid-vjMKVe8hPD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-vjMKVe8hPD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-vjMKVe8hPD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjMKVe8hPD .modal-body {
    padding: 1rem;
  }
}
.cid-vjMKVe8hPD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vjMKVe8hPD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vjMKVe8hPD .modal-footer {
    padding: 1rem;
  }
}
.cid-vjMKVe8hPD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-vjMKVe8hPD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-vjMKVe8hPD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-vjMKVe8hPD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-vjMKVe8hPD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-vjMKVe8hPD .modal-lg,
  .cid-vjMKVe8hPD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-vjMKVe8hPD .modal-xl {
    max-width: 1140px;
  }
}
.cid-vjMKVe8hPD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-vjMKVe8hPD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-vjMKVe8hPD .form-group {
  margin-bottom: 1rem;
}
.cid-vjMKVe8hPD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-vjMKVe8hPD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vjMKVe8hPD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-vjMKVe8hPD .mbr-section-btn {
  margin: 0;
}
.cid-vjMKVe8hPD .mbr-section-btn .btn {
  margin: 0;
}
