.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #93a3a4 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #c6dae3 !important;
}
.bg-danger {
  background-color: #ffffff !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: #93a3a4 !important;
  border-color: #93a3a4 !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: #67797a !important;
  border-color: #67797a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #67797a !important;
  border-color: #67797a !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #93a3a4 !important;
  border-color: #93a3a4 !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: #67797a !important;
  border-color: #67797a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #67797a !important;
  border-color: #67797a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c6dae3 !important;
  border-color: #c6dae3 !important;
  color: #386072 !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: #8cb4c6 !important;
  border-color: #8cb4c6 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #386072 !important;
  background-color: #8cb4c6 !important;
  border-color: #8cb4c6 !important;
}
.btn-danger,
.btn-danger: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-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.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-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #ffffff;
  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: #d4d4d4 !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: #93a3a4;
  color: #93a3a4;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #67797a !important;
  background-color: transparent!important;
  border-color: #67797a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #93a3a4 !important;
  border-color: #93a3a4 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #93a3a4;
  color: #93a3a4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #67797a !important;
  background-color: transparent!important;
  border-color: #67797a !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #93a3a4 !important;
  border-color: #93a3a4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #c6dae3;
  color: #c6dae3;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #8cb4c6 !important;
  background-color: transparent!important;
  border-color: #8cb4c6 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #386072 !important;
  background-color: #c6dae3 !important;
  border-color: #c6dae3 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #ffffff !important;
}
.text-secondary {
  color: #93a3a4 !important;
}
.text-success {
  color: #93a3a4 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #c6dae3 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !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: #607071 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #607071 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #82aec1 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #c6dae3;
}
.alert-danger {
  background-color: #ffffff;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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: #d8dede;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffffff;
}
/* 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: #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: #000000 !important;
  background: #93a3a4 !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;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx9gnQuaKd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tSikptweP4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/airbnb-bb-hotel-milano-fotografo-monika-nieszkowiecka-vivi-deco.com-fotografia-immobiliare-fotografia-nieruchomosci-krakow-14-2000x1333.webp");
}
.cid-tSikptweP4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSikptweP4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSikptweP4 .mbr-text,
.cid-tSikptweP4 .mbr-section-btn {
  color: #000000;
}
.cid-tSikptweP4 .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-tSikptweP4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: right;
}
.cid-uPNmaDscXq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uPNmaDscXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPNmaDscXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNmaDscXq .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uPNmaDscXq .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-uPNmaDscXq .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-uPNmaDscXq .wrapper {
  padding: 30px 0;
}
.cid-uPNmaDscXq .mbr-section-title {
  color: #fafafa;
}
.cid-uPNmaDscXq .mbr-text,
.cid-uPNmaDscXq .mbr-section-btn {
  color: #ffffff;
}
.cid-tx9JKy8bRg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx9JKy8bRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx9JKy8bRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx9JKy8bRg .card {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-tx9JKy8bRg .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-tx9JKy8bRg .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-tx9JKy8bRg .wrapper {
  padding: 30px 0;
}
.cid-tx9JKy8bRg .mbr-section-title {
  color: #fafafa;
}
.cid-tx9JKy8bRg .mbr-text,
.cid-tx9JKy8bRg .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tx9JKy8bRg H3 {
  text-align: center;
}
.cid-tx9meXeyua {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/airbnb-bb-hotel-milano-fotografo-monika-nieszkowiecka-vivi-deco.com-fotografia-immobiliare-fotografia-nieruchomosci-krakow-7-2000x1333.webp");
}
.cid-tx9meXeyua .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx9meXeyua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx9meXeyua .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-tx9meXeyua .container {
    max-width: 1400px;
  }
}
.cid-tx9meXeyua .card {
  margin: auto;
}
.cid-tx9meXeyua .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bac5c4;
  margin-bottom: 2rem;
}
.cid-tx9meXeyua .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tx9meXeyua .row {
  justify-content: center;
}
.cid-tx9meXeyua H3 {
  color: #000000;
}
.cid-tTRNfyW12x {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #353535;
}
.cid-tTRNfyW12x .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTRNfyW12x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTRNfyW12x .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tTRNfyW12x .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tTRNfyW12x .embla__button--next,
.cid-tTRNfyW12x .embla__button--prev {
  display: flex;
}
.cid-tTRNfyW12x .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-tTRNfyW12x .embla__button {
    display: none;
  }
}
.cid-tTRNfyW12x .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tTRNfyW12x .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tTRNfyW12x .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTRNfyW12x .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tTRNfyW12x .embla__button {
    top: auto;
  }
}
.cid-tTRNfyW12x .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tTRNfyW12x .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tTRNfyW12x .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tTRNfyW12x .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tTRNfyW12x .embla {
  position: relative;
  width: 100%;
}
.cid-tTRNfyW12x .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tTRNfyW12x .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tTRNfyW12x .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tTRNfyW12x .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tTRNfyW12x .user_text {
  color: #ffffff;
}
.cid-tTRNfyW12x H3 {
  color: #ffffff;
}
.cid-v9H3ZwbKav {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v9H3ZwbKav .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9H3ZwbKav .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9H3ZwbKav .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-v9H3ZwbKav .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-turrPIJ902 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-turrPIJ902 .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.5;
}
.cid-turrPIJ902 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-turrPIJ902 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-turrPIJ902 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-turrPIJ902 .mbr-section-title {
  text-align: center;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-twZ7boZjln {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twZ7boZjln .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx0DS8wcxU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx0DS8wcxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx0DS8wcxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx0DS8wcxU .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tx0DS8wcxU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx0DS8wcxU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tx0DS8wcxU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tx0DS8wcxU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tx0DS8wcxU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tx0DS8wcxU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tx0EpzU2XF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx0EpzU2XF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx0EpzU2XF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx0EpzU2XF .item {
  padding-bottom: 2rem;
}
.cid-tx0EpzU2XF .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tx0EpzU2XF .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tx0EpzU2XF .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tx0EpzU2XF .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tx0EpzU2XF .carousel-control,
.cid-tx0EpzU2XF .close {
  background: #1b1b1b;
}
.cid-tx0EpzU2XF .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tx0EpzU2XF .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tx0EpzU2XF .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tx0EpzU2XF .carousel-control-next span {
  margin-left: 5px;
}
.cid-tx0EpzU2XF .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tx0EpzU2XF .close::before {
  content: '\e91a';
}
.cid-tx0EpzU2XF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tx0EpzU2XF .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tx0EpzU2XF .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx0EpzU2XF .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tx0EpzU2XF .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tx0EpzU2XF .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tx0EpzU2XF .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tx0EpzU2XF .carousel-indicators li.active,
.cid-tx0EpzU2XF .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tx0EpzU2XF .carousel-indicators li::after,
.cid-tx0EpzU2XF .carousel-indicators li::before {
  content: none;
}
.cid-tx0EpzU2XF .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tx0EpzU2XF .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tx0EpzU2XF .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tx0EpzU2XF .carousel-indicators {
    display: none;
  }
}
.cid-tx0EpzU2XF .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tx0EpzU2XF .carousel-inner > .active {
  display: block;
}
.cid-tx0EpzU2XF .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx0EpzU2XF .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tx0EpzU2XF .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tx0EpzU2XF .carousel-control,
  .cid-tx0EpzU2XF .carousel-indicators,
  .cid-tx0EpzU2XF .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tx0EpzU2XF .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tx0EpzU2XF .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tx0EpzU2XF .carousel-indicators .active,
.cid-tx0EpzU2XF .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tx0EpzU2XF .carousel-indicators .active {
  background: #fff;
}
.cid-tx0EpzU2XF .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tx0EpzU2XF .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tx0EpzU2XF .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tx0EpzU2XF .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tx0EpzU2XF .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tx0EpzU2XF .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tx0EpzU2XF .carousel {
  width: 100%;
}
.cid-tx0EpzU2XF .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tx0EpzU2XF .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tx0EpzU2XF .modal.fade .modal-dialog,
.cid-tx0EpzU2XF .modal.in .modal-dialog {
  transform: none;
}
.cid-tx0EpzU2XF .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tx0EpzU2XF H6 {
  text-align: center;
}
.cid-txePiuUZ88 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-txePiuUZ88 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-txePiuUZ88 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-txePiuUZ88 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-txePiuUZ88 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-txePiuUZ88 .mbr-section-title {
  text-align: center;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-tx0DQHMysY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx0DQHMysY .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tx6EDPtRIg {
  z-index: 1000;
  width: 100%;
}
.cid-tx6EDPtRIg nav.navbar {
  position: fixed;
}
.cid-tx6EDPtRIg .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-tx6EDPtRIg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tx6EDPtRIg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tx6EDPtRIg .dropdown-item:hover,
.cid-tx6EDPtRIg .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tx6EDPtRIg .dropdown-item:hover span {
  color: white;
}
.cid-tx6EDPtRIg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tx6EDPtRIg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tx6EDPtRIg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tx6EDPtRIg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tx6EDPtRIg .nav-link {
  position: relative;
}
.cid-tx6EDPtRIg .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tx6EDPtRIg .container {
    flex-wrap: wrap;
  }
}
.cid-tx6EDPtRIg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tx6EDPtRIg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tx6EDPtRIg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tx6EDPtRIg .dropdown-menu,
.cid-tx6EDPtRIg .navbar.opened {
  background: #000000 !important;
}
.cid-tx6EDPtRIg .nav-item:focus,
.cid-tx6EDPtRIg .nav-link:focus {
  outline: none;
}
.cid-tx6EDPtRIg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tx6EDPtRIg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tx6EDPtRIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tx6EDPtRIg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tx6EDPtRIg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tx6EDPtRIg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tx6EDPtRIg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tx6EDPtRIg .navbar.opened {
  transition: all 0.3s;
}
.cid-tx6EDPtRIg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tx6EDPtRIg .navbar .navbar-logo img {
  width: auto;
}
.cid-tx6EDPtRIg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tx6EDPtRIg .navbar.collapsed {
  justify-content: center;
}
.cid-tx6EDPtRIg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tx6EDPtRIg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tx6EDPtRIg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tx6EDPtRIg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tx6EDPtRIg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tx6EDPtRIg .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-tx6EDPtRIg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tx6EDPtRIg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tx6EDPtRIg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tx6EDPtRIg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tx6EDPtRIg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tx6EDPtRIg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tx6EDPtRIg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tx6EDPtRIg .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-tx6EDPtRIg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tx6EDPtRIg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tx6EDPtRIg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tx6EDPtRIg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tx6EDPtRIg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tx6EDPtRIg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tx6EDPtRIg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tx6EDPtRIg .navbar.navbar-short {
  min-height: 60px;
}
.cid-tx6EDPtRIg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tx6EDPtRIg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tx6EDPtRIg .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-tx6EDPtRIg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tx6EDPtRIg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tx6EDPtRIg .dropdown-item.active,
.cid-tx6EDPtRIg .dropdown-item:active {
  background-color: transparent;
}
.cid-tx6EDPtRIg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tx6EDPtRIg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tx6EDPtRIg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tx6EDPtRIg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tx6EDPtRIg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tx6EDPtRIg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tx6EDPtRIg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tx6EDPtRIg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tx6EDPtRIg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tx6EDPtRIg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tx6EDPtRIg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tx6EDPtRIg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx6EDPtRIg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tx6EDPtRIg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tx6EDPtRIg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx6EDPtRIg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tx6EDPtRIg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tx6EDPtRIg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tx6EDPtRIg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tx6EDPtRIg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tx6EDPtRIg .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-tx6EDPtRIg .navbar {
    height: 70px;
  }
  .cid-tx6EDPtRIg .navbar.opened {
    height: auto;
  }
  .cid-tx6EDPtRIg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx6EDPL4Dw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx6EDPL4Dw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx6EDPL4Dw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx6EDPL4Dw .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tx6EDPL4Dw .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tx6EDPL4Dw .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tx6EDPL4Dw .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tx6EDPL4Dw .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tx6EDPL4Dw .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tx6EDPL4Dw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tx6EDPVzg6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tx6EDPVzg6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx6EDPVzg6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx6EDPVzg6 .item {
  padding-bottom: 2rem;
}
.cid-tx6EDPVzg6 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tx6EDPVzg6 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tx6EDPVzg6 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tx6EDPVzg6 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tx6EDPVzg6 .carousel-control,
.cid-tx6EDPVzg6 .close {
  background: #1b1b1b;
}
.cid-tx6EDPVzg6 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tx6EDPVzg6 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tx6EDPVzg6 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tx6EDPVzg6 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tx6EDPVzg6 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tx6EDPVzg6 .close::before {
  content: '\e91a';
}
.cid-tx6EDPVzg6 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tx6EDPVzg6 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tx6EDPVzg6 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx6EDPVzg6 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tx6EDPVzg6 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tx6EDPVzg6 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tx6EDPVzg6 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tx6EDPVzg6 .carousel-indicators li.active,
.cid-tx6EDPVzg6 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tx6EDPVzg6 .carousel-indicators li::after,
.cid-tx6EDPVzg6 .carousel-indicators li::before {
  content: none;
}
.cid-tx6EDPVzg6 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tx6EDPVzg6 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tx6EDPVzg6 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tx6EDPVzg6 .carousel-indicators {
    display: none;
  }
}
.cid-tx6EDPVzg6 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tx6EDPVzg6 .carousel-inner > .active {
  display: block;
}
.cid-tx6EDPVzg6 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx6EDPVzg6 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tx6EDPVzg6 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tx6EDPVzg6 .carousel-control,
  .cid-tx6EDPVzg6 .carousel-indicators,
  .cid-tx6EDPVzg6 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tx6EDPVzg6 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tx6EDPVzg6 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tx6EDPVzg6 .carousel-indicators .active,
.cid-tx6EDPVzg6 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tx6EDPVzg6 .carousel-indicators .active {
  background: #fff;
}
.cid-tx6EDPVzg6 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tx6EDPVzg6 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tx6EDPVzg6 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tx6EDPVzg6 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tx6EDPVzg6 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tx6EDPVzg6 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tx6EDPVzg6 .carousel {
  width: 100%;
}
.cid-tx6EDPVzg6 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tx6EDPVzg6 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tx6EDPVzg6 .modal.fade .modal-dialog,
.cid-tx6EDPVzg6 .modal.in .modal-dialog {
  transform: none;
}
.cid-tx6EDPVzg6 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tx6EDPVzg6 H6 {
  text-align: center;
}
.cid-tx6EDQuUl6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bac5c4;
}
.cid-tx6EDQuUl6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tx6EDQuUl6 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tx6EDQuUl6 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tx6EDQuUl6 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tx6EDQF9lD {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tx6EDQF9lD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx6EDQF9lD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx6EDQF9lD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tx6EDQF9lD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tx6EDQF9lD .row {
    text-align: center;
  }
  .cid-tx6EDQF9lD .social-row {
    justify-content: center;
  }
}
.cid-tx6EDQF9lD .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tx6EDQF9lD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tx6EDQF9lD .list {
    margin-bottom: 0rem;
  }
}
.cid-tx6EDQF9lD .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tx6EDQF9lD .mbr-iconfont {
  color: black;
}
.cid-tx6EDQF9lD H5 {
  color: #ffffff;
}
.cid-tx6EDQF9lD .mbr-section-subtitle {
  text-align: left;
}
.cid-tx6EDR0Ctz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-tx6EDR0Ctz .mbr-text {
  text-align: center;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx9Cu9WmNd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-tx9Cu9WmNd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx9Cu9WmNd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx9Cu9WmNd .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-tx9Cu9WmNd .panel-group {
  border: none;
}
.cid-tx9Cu9WmNd .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tx9Cu9WmNd .panel-body,
.cid-tx9Cu9WmNd .card-header {
  padding: 1rem 0;
}
.cid-tx9Cu9WmNd .panel-title-edit {
  color: #000000;
}
.cid-tx9Cu9WmNd .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tV98Pv28bs {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #93a3a4;
}
.cid-tV98Pv28bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV98Pv28bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV98Pv28bs .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
}
.cid-tV98Pv28bs .panel-group {
  border: none;
}
.cid-tV98Pv28bs .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tV98Pv28bs .panel-body,
.cid-tV98Pv28bs .card-header {
  padding: 1rem 0;
}
.cid-tV98Pv28bs .panel-title-edit {
  color: #000000;
}
.cid-tV98Pv28bs .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tV6zkSatBm {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tV6zkSatBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV6zkSatBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV6zkSatBm .content-wrapper {
  background: #232323;
}
@media (max-width: 991px) {
  .cid-tV6zkSatBm .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tV6zkSatBm .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tV6zkSatBm .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tV6zkSatBm .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tV6zkSatBm .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tV6zkSatBm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tV6zkSatBm .card-title {
  text-align: left;
  color: #fafafa;
}
.cid-tV6zkSatBm .mbr-text,
.cid-tV6zkSatBm .mbr-section-btn {
  text-align: right;
  color: #fafafa;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-tx6IxlsfOF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx6IxlsfOF .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx5t43s8wx {
  background-image: url("../../../assets/images/mani-2-2000x1450.webp");
}
.cid-tx5t43s8wx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx5t43s8wx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx5t43s8wx .mbr-section-title {
  text-align: center;
}
.cid-tx5rwm8EO0 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-tx5rwm8EO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx5rwm8EO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-tx5rwm8EO0 .container {
    max-width: 1400px;
  }
}
.cid-tx5rwm8EO0 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
}
.cid-tx5rwm8EO0 .card-wrapper {
  margin-top: 3rem;
}
.cid-tx5rwm8EO0 .row {
  justify-content: center;
}
.cid-tx5ma06XjN {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tx5ma06XjN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx5ma06XjN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx5ma06XjN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-tx5ma06XjN .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tx5ma06XjN .embla__button--next,
.cid-tx5ma06XjN .embla__button--prev {
  display: flex;
}
.cid-tx5ma06XjN .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tx5ma06XjN .embla__button {
    display: none;
  }
}
.cid-tx5ma06XjN .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tx5ma06XjN .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tx5ma06XjN .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tx5ma06XjN .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-tx5ma06XjN .embla__button {
    top: auto;
  }
}
.cid-tx5ma06XjN .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tx5ma06XjN .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-tx5ma06XjN .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-tx5ma06XjN .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tx5ma06XjN .embla {
  position: relative;
  width: 100%;
}
.cid-tx5ma06XjN .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tx5ma06XjN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tx5ma06XjN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tx5ma06XjN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tx5ma06XjN .user_text {
  color: #fafafa;
}
.cid-tx5ma06XjN .user_name {
  color: #fafafa;
}
.cid-tx5ma06XjN .user_desk {
  color: #fafafa;
}
.cid-tx5pv3KtPr {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-tx5pv3KtPr .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-tx5eDrUifq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tx5eDrUifq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tx5eDrUifq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tx5eDrUifq .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tx5eDrUifq .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tx5eDrUifq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tx5eDrUifq .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #93a3a4;
  transition: all 0.3s;
}
.cid-tx5eDrUifq .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #93a3a4;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tx5eDrUifq .social-row .soc-item:hover {
  background-color: #93a3a4;
}
.cid-tx5eDrUifq .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tx5eDrUifq .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tx5eDrUifq .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tx5eDrUifq .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tU6aUqu8WE {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tU6aUqu8WE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tU6aUqu8WE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tU6aUqu8WE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
  position: relative;
  margin-bottom: 3rem;
}
.cid-tU6aUqu8WE .item .icon-wrap {
  text-align: center;
}
.cid-tU6aUqu8WE .item::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 97%;
  color: #232323;
  transform: translate(-50%, 0);
}
.cid-tU6aUqu8WE .item:last-child:before {
  display: none;
}
.cid-tU6aUqu8WE .item.last::before {
  display: none;
}
.cid-tU6aUqu8WE .icon-box {
  background: #232323;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tU6aUqu8WE .text-box {
  text-align: center;
}
.cid-tU6aUqu8WE span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
@media (max-width: 991px) {
  .cid-tU6aUqu8WE .card {
    margin-bottom: 2rem;
  }
  .cid-tU6aUqu8WE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tRUb9tfLnY {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mani-2-980x980.webp");
}
.cid-tRUb9tfLnY .mbr-overlay {
  background: #ffffff;
  opacity: 0.7;
}
.cid-tRUb9tfLnY img,
.cid-tRUb9tfLnY .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tRUb9tfLnY .item:focus,
.cid-tRUb9tfLnY span:focus {
  outline: none;
}
.cid-tRUb9tfLnY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tRUb9tfLnY .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tRUb9tfLnY .item {
  padding: 0;
  margin: 0;
}
.cid-tRUb9tfLnY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tRUb9tfLnY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tRUb9tfLnY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tRUb9tfLnY .item-wrapper {
  background: transparent;
}
.cid-tRUb9tfLnY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tRUb9tfLnY .mbr-section-title {
  color: #232323;
}
.cid-tRUb9tfLnY .mbr-text,
.cid-tRUb9tfLnY .mbr-section-btn {
  text-align: center;
}
.cid-tRUb9tfLnY .item-title {
  text-align: center;
}
.cid-tRUb9tfLnY .item-subtitle {
  text-align: center;
}
.cid-tx5lkaXnGq {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-bianco-3-foglie-1920x1080px2-2000x1125.webp");
}
.cid-tx5lkaXnGq .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.5;
}
.cid-tx5lkaXnGq form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tx5lkaXnGq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tx5lkaXnGq form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tx5lkaXnGq .mbr-section-subtitle {
  color: #000000;
}
.cid-tx5lkaXnGq .mbr-section-title {
  color: #000000;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-tx5lG60HkB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx5lG60HkB .mbr-text {
  text-align: center;
}
.cid-tWnf3ZFexL {
  z-index: 1000;
  width: 100%;
}
.cid-tWnf3ZFexL nav.navbar {
  position: fixed;
}
.cid-tWnf3ZFexL .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-tWnf3ZFexL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWnf3ZFexL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWnf3ZFexL .dropdown-item:hover,
.cid-tWnf3ZFexL .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tWnf3ZFexL .dropdown-item:hover span {
  color: white;
}
.cid-tWnf3ZFexL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWnf3ZFexL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWnf3ZFexL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWnf3ZFexL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWnf3ZFexL .nav-link {
  position: relative;
}
.cid-tWnf3ZFexL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWnf3ZFexL .container {
    flex-wrap: wrap;
  }
}
.cid-tWnf3ZFexL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWnf3ZFexL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWnf3ZFexL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWnf3ZFexL .dropdown-menu,
.cid-tWnf3ZFexL .navbar.opened {
  background: #000000 !important;
}
.cid-tWnf3ZFexL .nav-item:focus,
.cid-tWnf3ZFexL .nav-link:focus {
  outline: none;
}
.cid-tWnf3ZFexL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWnf3ZFexL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWnf3ZFexL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWnf3ZFexL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWnf3ZFexL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWnf3ZFexL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWnf3ZFexL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tWnf3ZFexL .navbar.opened {
  transition: all 0.3s;
}
.cid-tWnf3ZFexL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWnf3ZFexL .navbar .navbar-logo img {
  width: auto;
}
.cid-tWnf3ZFexL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWnf3ZFexL .navbar.collapsed {
  justify-content: center;
}
.cid-tWnf3ZFexL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWnf3ZFexL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWnf3ZFexL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWnf3ZFexL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWnf3ZFexL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWnf3ZFexL .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-tWnf3ZFexL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWnf3ZFexL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWnf3ZFexL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWnf3ZFexL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWnf3ZFexL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWnf3ZFexL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWnf3ZFexL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWnf3ZFexL .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-tWnf3ZFexL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWnf3ZFexL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWnf3ZFexL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWnf3ZFexL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWnf3ZFexL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWnf3ZFexL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWnf3ZFexL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWnf3ZFexL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWnf3ZFexL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWnf3ZFexL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWnf3ZFexL .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-tWnf3ZFexL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWnf3ZFexL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWnf3ZFexL .dropdown-item.active,
.cid-tWnf3ZFexL .dropdown-item:active {
  background-color: transparent;
}
.cid-tWnf3ZFexL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWnf3ZFexL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWnf3ZFexL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWnf3ZFexL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tWnf3ZFexL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWnf3ZFexL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWnf3ZFexL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWnf3ZFexL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWnf3ZFexL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWnf3ZFexL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWnf3ZFexL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWnf3ZFexL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWnf3ZFexL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWnf3ZFexL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWnf3ZFexL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWnf3ZFexL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWnf3ZFexL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWnf3ZFexL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWnf3ZFexL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWnf3ZFexL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWnf3ZFexL .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-tWnf3ZFexL .navbar {
    height: 70px;
  }
  .cid-tWnf3ZFexL .navbar.opened {
    height: auto;
  }
  .cid-tWnf3ZFexL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWnf3Ztwhw {
  background-image: url("../../../assets/images/airbnb-bb-milano-mw-appartments-milano-v.le-marche-4-ospiti-fotografo-monika-nieszkowiecka-p2u1-21-2000x1333.webp");
}
.cid-tWnf3Ztwhw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWnf3Ztwhw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWnf3Ztwhw .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tWnf3Ztwhw .mbr-text,
.cid-tWnf3Ztwhw .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tWnf40MRIv {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-tWnf40MRIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWnf40MRIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWnf40MRIv .nav-tabs .nav-item.open .nav-link:focus,
.cid-tWnf40MRIv .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tWnf40MRIv .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #bba154;
}
@media (max-width: 767px) {
  .cid-tWnf40MRIv .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tWnf40MRIv .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tWnf40MRIv .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
.cid-tWnf40MRIv .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tWnf40MRIv .nav-link,
.cid-tWnf40MRIv .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tWnf40MRIv .nav-tabs .nav-link.active {
  color: #bba154;
  border-bottom: 3px solid #bba154;
}
.cid-tWnf40MRIv H4 {
  text-align: center;
}
.cid-tWnf40MRIv H3 {
  text-align: center;
}
.cid-tWnf40MRIv P {
  color: #ffffff;
}
.cid-tWnf41pu52 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/airbnb-bb-hotel-milano-fotografo-monika-nieszkowiecka-vivi-deco.com-fotografia-immobiliare-fotografia-nieruchomosci-krakow-18-2000x1333.webp");
}
.cid-tWnf41pu52 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWnf41pu52 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWnf41pu52 .mbr-section-title,
.cid-tWnf41pu52 .mbr-section-subtitle {
  text-align: center;
}
.cid-tWnf41pu52 .cost {
  word-break: normal;
}
.cid-tWnf41pu52 .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #232323;
}
.cid-tWnf41pu52 .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tWnf41pu52 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWnf41pu52 .card-wrapper {
    padding: 1rem;
  }
}
.cid-tWnf41pu52 P {
  color: #ffffff;
}
.cid-tWnf41pu52 .card-title {
  color: #ffffff;
}
.cid-tWnf41Oy23 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tWnf41Oy23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWnf41Oy23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWnf41Oy23 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tWnf41Oy23 .icon-box {
  background: #bba154;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWnf41Oy23 .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWnf41Oy23 .card {
    margin-bottom: 2rem;
  }
  .cid-tWnf41Oy23 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tWnf41Oy23 .card-title,
.cid-tWnf41Oy23 .card-box {
  color: #bba154;
}
.cid-tWnf41Oy23 .icon-text {
  color: #ffffff;
}
.cid-tWnf41Oy23 .icon-title {
  color: #bba154;
}
.cid-tWnf41Oy23 .mbr-text,
.cid-tWnf41Oy23 .mbr-section-btn {
  color: #bba154;
}
.cid-tWroXsqzIJ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tWroXsqzIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWroXsqzIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWroXsqzIJ .mbr-section-title {
  color: #bba154;
}
.cid-uR0ZNJxRac {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1920x1080px-2000x1125.webp");
}
.cid-uR0ZNJxRac .mbr-overlay {
  background-color: #232323;
  opacity: 0.8;
}
.cid-uR0ZNJxRac form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR0ZNJxRac form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR0ZNJxRac form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR0ZNJxRac .mbr-section-title {
  color: #fafafa;
}
.cid-uR0ZNJxRac .mbr-section-subtitle {
  color: #fafafa;
}
.cid-tWnf43oyev {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tWnf43oyev .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWnf43oyev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWnf43oyev .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWnf43oyev .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWnf43oyev .row {
    text-align: center;
  }
  .cid-tWnf43oyev .social-row {
    justify-content: center;
  }
}
.cid-tWnf43oyev .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tWnf43oyev .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWnf43oyev .list {
    margin-bottom: 0rem;
  }
}
.cid-tWnf43oyev .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tWnf43oyev .mbr-iconfont {
  color: black;
}
.cid-tWnf43oyev H5 {
  color: #ffffff;
}
.cid-tWnf43oyev .mbr-section-subtitle {
  text-align: left;
}
.cid-tWnf43IsM9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tWnf43IsM9 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tUfHAeqpLy {
  z-index: 1000;
  width: 100%;
}
.cid-tUfHAeqpLy nav.navbar {
  position: fixed;
}
.cid-tUfHAeqpLy .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-tUfHAeqpLy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUfHAeqpLy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUfHAeqpLy .dropdown-item:hover,
.cid-tUfHAeqpLy .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tUfHAeqpLy .dropdown-item:hover span {
  color: white;
}
.cid-tUfHAeqpLy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUfHAeqpLy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUfHAeqpLy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUfHAeqpLy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUfHAeqpLy .nav-link {
  position: relative;
}
.cid-tUfHAeqpLy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUfHAeqpLy .container {
    flex-wrap: wrap;
  }
}
.cid-tUfHAeqpLy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUfHAeqpLy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUfHAeqpLy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUfHAeqpLy .dropdown-menu,
.cid-tUfHAeqpLy .navbar.opened {
  background: #000000 !important;
}
.cid-tUfHAeqpLy .nav-item:focus,
.cid-tUfHAeqpLy .nav-link:focus {
  outline: none;
}
.cid-tUfHAeqpLy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUfHAeqpLy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUfHAeqpLy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUfHAeqpLy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUfHAeqpLy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUfHAeqpLy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUfHAeqpLy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tUfHAeqpLy .navbar.opened {
  transition: all 0.3s;
}
.cid-tUfHAeqpLy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUfHAeqpLy .navbar .navbar-logo img {
  width: auto;
}
.cid-tUfHAeqpLy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUfHAeqpLy .navbar.collapsed {
  justify-content: center;
}
.cid-tUfHAeqpLy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUfHAeqpLy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUfHAeqpLy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tUfHAeqpLy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUfHAeqpLy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUfHAeqpLy .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-tUfHAeqpLy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUfHAeqpLy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUfHAeqpLy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUfHAeqpLy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUfHAeqpLy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUfHAeqpLy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUfHAeqpLy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUfHAeqpLy .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-tUfHAeqpLy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUfHAeqpLy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUfHAeqpLy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUfHAeqpLy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUfHAeqpLy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUfHAeqpLy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUfHAeqpLy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUfHAeqpLy .navbar.navbar-short {
  min-height: 60px;
}
.cid-tUfHAeqpLy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUfHAeqpLy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUfHAeqpLy .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-tUfHAeqpLy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUfHAeqpLy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUfHAeqpLy .dropdown-item.active,
.cid-tUfHAeqpLy .dropdown-item:active {
  background-color: transparent;
}
.cid-tUfHAeqpLy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUfHAeqpLy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUfHAeqpLy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUfHAeqpLy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tUfHAeqpLy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUfHAeqpLy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUfHAeqpLy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUfHAeqpLy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUfHAeqpLy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUfHAeqpLy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tUfHAeqpLy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUfHAeqpLy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUfHAeqpLy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUfHAeqpLy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUfHAeqpLy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUfHAeqpLy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUfHAeqpLy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUfHAeqpLy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUfHAeqpLy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUfHAeqpLy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUfHAeqpLy .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-tUfHAeqpLy .navbar {
    height: 70px;
  }
  .cid-tUfHAeqpLy .navbar.opened {
    height: auto;
  }
  .cid-tUfHAeqpLy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPTmkzOJYy {
  background-image: url("../../../assets/images/fotografia-immobiliare-milano-airbnb-bb-milano-vivi-deco-monika-nieszkowiecka-valorizzare-con-fotografia-immobili-lusso-4-2000x1333.webp");
}
.cid-uPTmkzOJYy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPTmkzOJYy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPTmkzOJYy .mbr-section-title {
  text-align: center;
}
.cid-uPTmkzOJYy .mbr-text,
.cid-uPTmkzOJYy .mbr-section-btn {
  text-align: center;
}
.cid-v98ct3LTCf {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v98ct3LTCf img,
.cid-v98ct3LTCf .item-img {
  width: 100%;
}
.cid-v98ct3LTCf .item:focus,
.cid-v98ct3LTCf span:focus {
  outline: none;
}
.cid-v98ct3LTCf .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-v98ct3LTCf .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v98ct3LTCf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v98ct3LTCf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v98ct3LTCf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v98ct3LTCf .mbr-section-title {
  color: #232323;
}
.cid-uPTnvQfXvB {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fotografia-immobiliare-milano-airbnb-bb-milano-vivi-deco-monika-nieszkowiecka-valorizzare-con-fotografia-immobili-lusso-3-2000x1333.webp");
}
.cid-uPTnvQfXvB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPTnvQfXvB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPTnvQfXvB .card-wrapper {
  background: #000000;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uPTnvQfXvB .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uPTnvQfXvB .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uPTnvQfXvB .card-wrapper {
    padding: 4rem;
  }
}
.cid-uPTnvQfXvB .mbr-text,
.cid-uPTnvQfXvB .mbr-section-btn {
  color: #ffffff;
}
.cid-uPNeGY3Xo1 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uPNeGY3Xo1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPNeGY3Xo1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPNeGY3Xo1 .item {
  padding-bottom: 2rem;
}
.cid-uPNeGY3Xo1 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uPNeGY3Xo1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uPNeGY3Xo1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPNeGY3Xo1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPNeGY3Xo1 .carousel-control,
.cid-uPNeGY3Xo1 .close {
  background: #1b1b1b;
}
.cid-uPNeGY3Xo1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPNeGY3Xo1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPNeGY3Xo1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPNeGY3Xo1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPNeGY3Xo1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPNeGY3Xo1 .close::before {
  content: '\e91a';
}
.cid-uPNeGY3Xo1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPNeGY3Xo1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPNeGY3Xo1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPNeGY3Xo1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPNeGY3Xo1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPNeGY3Xo1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPNeGY3Xo1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPNeGY3Xo1 .carousel-indicators li.active,
.cid-uPNeGY3Xo1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPNeGY3Xo1 .carousel-indicators li::after,
.cid-uPNeGY3Xo1 .carousel-indicators li::before {
  content: none;
}
.cid-uPNeGY3Xo1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPNeGY3Xo1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPNeGY3Xo1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPNeGY3Xo1 .carousel-indicators {
    display: none;
  }
}
.cid-uPNeGY3Xo1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPNeGY3Xo1 .carousel-inner > .active {
  display: block;
}
.cid-uPNeGY3Xo1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPNeGY3Xo1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPNeGY3Xo1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPNeGY3Xo1 .carousel-control,
  .cid-uPNeGY3Xo1 .carousel-indicators,
  .cid-uPNeGY3Xo1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPNeGY3Xo1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPNeGY3Xo1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPNeGY3Xo1 .carousel-indicators .active,
.cid-uPNeGY3Xo1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPNeGY3Xo1 .carousel-indicators .active {
  background: #fff;
}
.cid-uPNeGY3Xo1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPNeGY3Xo1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPNeGY3Xo1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPNeGY3Xo1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPNeGY3Xo1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPNeGY3Xo1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPNeGY3Xo1 .carousel {
  width: 100%;
}
.cid-uPNeGY3Xo1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPNeGY3Xo1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPNeGY3Xo1 .modal.fade .modal-dialog,
.cid-uPNeGY3Xo1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uPNeGY3Xo1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPNeGY3Xo1 H6 {
  text-align: center;
}
.cid-tUfHAlI5Gc {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-tUfHAlI5Gc .mbr-overlay {
  background-color: #000000;
  opacity: 0.8;
}
.cid-tUfHAlI5Gc form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tUfHAlI5Gc form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tUfHAlI5Gc form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tUfHAlI5Gc .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tUfHAlI5Gc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tUfHAlWQ50 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tUfHAlWQ50 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUfHAlWQ50 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUfHAlWQ50 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tUfHAlWQ50 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tUfHAlWQ50 .row {
    text-align: center;
  }
  .cid-tUfHAlWQ50 .social-row {
    justify-content: center;
  }
}
.cid-tUfHAlWQ50 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tUfHAlWQ50 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tUfHAlWQ50 .list {
    margin-bottom: 0rem;
  }
}
.cid-tUfHAlWQ50 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tUfHAlWQ50 .mbr-iconfont {
  color: black;
}
.cid-tUfHAlWQ50 H5 {
  color: #ffffff;
}
.cid-tUfHAlWQ50 .mbr-section-subtitle {
  text-align: left;
}
.cid-tUfHAmg3Hx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tUfHAmg3Hx .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-tWlTWM5WiU {
  z-index: 1000;
  width: 100%;
}
.cid-tWlTWM5WiU nav.navbar {
  position: fixed;
}
.cid-tWlTWM5WiU .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-tWlTWM5WiU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWlTWM5WiU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWlTWM5WiU .dropdown-item:hover,
.cid-tWlTWM5WiU .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tWlTWM5WiU .dropdown-item:hover span {
  color: white;
}
.cid-tWlTWM5WiU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWlTWM5WiU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWlTWM5WiU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWlTWM5WiU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWlTWM5WiU .nav-link {
  position: relative;
}
.cid-tWlTWM5WiU .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWlTWM5WiU .container {
    flex-wrap: wrap;
  }
}
.cid-tWlTWM5WiU .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWlTWM5WiU .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWlTWM5WiU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWlTWM5WiU .dropdown-menu,
.cid-tWlTWM5WiU .navbar.opened {
  background: #000000 !important;
}
.cid-tWlTWM5WiU .nav-item:focus,
.cid-tWlTWM5WiU .nav-link:focus {
  outline: none;
}
.cid-tWlTWM5WiU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWlTWM5WiU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWlTWM5WiU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWlTWM5WiU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWlTWM5WiU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWlTWM5WiU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWlTWM5WiU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tWlTWM5WiU .navbar.opened {
  transition: all 0.3s;
}
.cid-tWlTWM5WiU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWlTWM5WiU .navbar .navbar-logo img {
  width: auto;
}
.cid-tWlTWM5WiU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWlTWM5WiU .navbar.collapsed {
  justify-content: center;
}
.cid-tWlTWM5WiU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWlTWM5WiU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWlTWM5WiU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWlTWM5WiU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWlTWM5WiU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWlTWM5WiU .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-tWlTWM5WiU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWlTWM5WiU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWlTWM5WiU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWlTWM5WiU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWlTWM5WiU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWlTWM5WiU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWlTWM5WiU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWlTWM5WiU .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-tWlTWM5WiU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWlTWM5WiU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWlTWM5WiU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWlTWM5WiU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWlTWM5WiU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWlTWM5WiU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWlTWM5WiU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWlTWM5WiU .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWlTWM5WiU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWlTWM5WiU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWlTWM5WiU .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-tWlTWM5WiU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWlTWM5WiU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWlTWM5WiU .dropdown-item.active,
.cid-tWlTWM5WiU .dropdown-item:active {
  background-color: transparent;
}
.cid-tWlTWM5WiU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWlTWM5WiU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWlTWM5WiU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWlTWM5WiU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tWlTWM5WiU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWlTWM5WiU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWlTWM5WiU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWlTWM5WiU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWlTWM5WiU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWlTWM5WiU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWlTWM5WiU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWlTWM5WiU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWlTWM5WiU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWlTWM5WiU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWlTWM5WiU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWlTWM5WiU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWlTWM5WiU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWlTWM5WiU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWlTWM5WiU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWlTWM5WiU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWlTWM5WiU .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-tWlTWM5WiU .navbar {
    height: 70px;
  }
  .cid-tWlTWM5WiU .navbar.opened {
    height: auto;
  }
  .cid-tWlTWM5WiU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWlTWMqdTj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWlTWMqdTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWlTWMqdTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWlTWMqdTj .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tWlTWMqdTj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWlTWMqdTj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tWlTWMqdTj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWlTWMqdTj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tWlTWMqdTj .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tWlTWMqdTj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tWlTWMFK7R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tWlTWMFK7R .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWlTWMFK7R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWlTWMFK7R .item {
  padding-bottom: 2rem;
}
.cid-tWlTWMFK7R .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tWlTWMFK7R .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tWlTWMFK7R .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tWlTWMFK7R .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tWlTWMFK7R .carousel-control,
.cid-tWlTWMFK7R .close {
  background: #1b1b1b;
}
.cid-tWlTWMFK7R .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tWlTWMFK7R .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tWlTWMFK7R .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tWlTWMFK7R .carousel-control-next span {
  margin-left: 5px;
}
.cid-tWlTWMFK7R .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tWlTWMFK7R .close::before {
  content: '\e91a';
}
.cid-tWlTWMFK7R .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tWlTWMFK7R .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tWlTWMFK7R .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWlTWMFK7R .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWlTWMFK7R .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tWlTWMFK7R .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tWlTWMFK7R .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tWlTWMFK7R .carousel-indicators li.active,
.cid-tWlTWMFK7R .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tWlTWMFK7R .carousel-indicators li::after,
.cid-tWlTWMFK7R .carousel-indicators li::before {
  content: none;
}
.cid-tWlTWMFK7R .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tWlTWMFK7R .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tWlTWMFK7R .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tWlTWMFK7R .carousel-indicators {
    display: none;
  }
}
.cid-tWlTWMFK7R .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tWlTWMFK7R .carousel-inner > .active {
  display: block;
}
.cid-tWlTWMFK7R .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tWlTWMFK7R .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tWlTWMFK7R .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tWlTWMFK7R .carousel-control,
  .cid-tWlTWMFK7R .carousel-indicators,
  .cid-tWlTWMFK7R .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tWlTWMFK7R .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tWlTWMFK7R .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tWlTWMFK7R .carousel-indicators .active,
.cid-tWlTWMFK7R .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tWlTWMFK7R .carousel-indicators .active {
  background: #fff;
}
.cid-tWlTWMFK7R .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tWlTWMFK7R .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tWlTWMFK7R .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tWlTWMFK7R .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tWlTWMFK7R .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tWlTWMFK7R .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tWlTWMFK7R .carousel {
  width: 100%;
}
.cid-tWlTWMFK7R .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tWlTWMFK7R .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tWlTWMFK7R .modal.fade .modal-dialog,
.cid-tWlTWMFK7R .modal.in .modal-dialog {
  transform: none;
}
.cid-tWlTWMFK7R .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tWlTWMFK7R H6 {
  text-align: center;
}
.cid-tWlTWNkEKz {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-tWlTWNkEKz .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.3;
}
.cid-tWlTWNkEKz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tWlTWNkEKz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tWlTWNkEKz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tWlTWNkEKz .mbr-section-title {
  color: #000000;
}
.cid-tWlTWNkEKz .mbr-section-subtitle {
  color: #000000;
}
.cid-tWlTWNumWy {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tWlTWNumWy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWlTWNumWy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWlTWNumWy .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWlTWNumWy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWlTWNumWy .row {
    text-align: center;
  }
  .cid-tWlTWNumWy .social-row {
    justify-content: center;
  }
}
.cid-tWlTWNumWy .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tWlTWNumWy .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWlTWNumWy .list {
    margin-bottom: 0rem;
  }
}
.cid-tWlTWNumWy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tWlTWNumWy .mbr-iconfont {
  color: black;
}
.cid-tWlTWNumWy H5 {
  color: #ffffff;
}
.cid-tWlTWNumWy .mbr-section-subtitle {
  text-align: left;
}
.cid-tWlTWNLgNg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tWlTWNLgNg .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tx9jZxKtx3 {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mani-2-980x980.webp");
}
.cid-tx9jZxKtx3 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tx9jZxKtx3 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tx9jZxKtx3 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tx9jZxKtx3 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-tx9k2F4bDG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx9k2F4bDG .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUxEst91jI {
  background-image: url("../../../assets/images/fotografia-immobiliare-milano-airbnb-bb-milano-vivi-deco-monika-nieszkowiecka-valorizzare-con-fotografia-immobili-lusso-2000x1333.webp");
}
.cid-tUxEst91jI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUxEst91jI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUxEst91jI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tUxEst91jI .mbr-text,
.cid-tUxEst91jI .mbr-section-btn {
  color: #ffffff;
}
.cid-uGt1W0B8CY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uGt1W0B8CY img,
.cid-uGt1W0B8CY .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uGt1W0B8CY .item:focus,
.cid-uGt1W0B8CY span:focus {
  outline: none;
}
.cid-uGt1W0B8CY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uGt1W0B8CY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGt1W0B8CY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGt1W0B8CY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGt1W0B8CY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGt1W0B8CY .mbr-section-title {
  color: #232323;
}
.cid-uGt1W0B8CY .mbr-text,
.cid-uGt1W0B8CY .mbr-section-btn {
  text-align: center;
}
.cid-uGt1W0B8CY .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-uGt1W0B8CY .item-subtitle {
  text-align: center;
  color: #d4dcdb;
}
.cid-uxv4cSc651 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uxv4cSc651 img,
.cid-uxv4cSc651 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uxv4cSc651 .item:focus,
.cid-uxv4cSc651 span:focus {
  outline: none;
}
.cid-uxv4cSc651 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uxv4cSc651 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uxv4cSc651 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uxv4cSc651 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uxv4cSc651 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uxv4cSc651 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uxv4cSc651 .mbr-text,
.cid-uxv4cSc651 .mbr-section-btn {
  text-align: center;
}
.cid-uxv4cSc651 .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-uxv4cSc651 .item-subtitle {
  text-align: left;
}
.cid-uxv4cSc651 .mbr-section-subtitle {
  text-align: center;
}
.cid-tx0kp7rHmj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tx0kp7rHmj img,
.cid-tx0kp7rHmj .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tx0kp7rHmj .item:focus,
.cid-tx0kp7rHmj span:focus {
  outline: none;
}
.cid-tx0kp7rHmj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tx0kp7rHmj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tx0kp7rHmj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tx0kp7rHmj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tx0kp7rHmj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tx0kp7rHmj .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tx0kp7rHmj .mbr-text,
.cid-tx0kp7rHmj .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-tx0kp7rHmj .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-tx0kp7rHmj .item-subtitle {
  text-align: center;
  color: #bbbbbb;
}
.cid-tx0kp7rHmj .mbr-section-subtitle {
  text-align: center;
}
.cid-tx6H61HEnT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tx6H61HEnT img,
.cid-tx6H61HEnT .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tx6H61HEnT .item:focus,
.cid-tx6H61HEnT span:focus {
  outline: none;
}
.cid-tx6H61HEnT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tx6H61HEnT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tx6H61HEnT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tx6H61HEnT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tx6H61HEnT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tx6H61HEnT .mbr-section-title {
  color: #232323;
  text-align: right;
}
.cid-tx6H61HEnT .mbr-text,
.cid-tx6H61HEnT .mbr-section-btn {
  text-align: center;
}
.cid-tx6H61HEnT .item-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-tx6H61HEnT .item-subtitle {
  text-align: left;
}
.cid-tx6H61HEnT .mbr-section-subtitle {
  text-align: right;
}
.cid-tTPhJtAjKd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tTPhJtAjKd img,
.cid-tTPhJtAjKd .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tTPhJtAjKd .item:focus,
.cid-tTPhJtAjKd span:focus {
  outline: none;
}
.cid-tTPhJtAjKd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTPhJtAjKd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTPhJtAjKd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTPhJtAjKd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTPhJtAjKd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTPhJtAjKd .mbr-section-title {
  color: #232323;
}
.cid-tTPhJtAjKd .mbr-text,
.cid-tTPhJtAjKd .mbr-section-btn {
  text-align: center;
  color: #bbbbbb;
}
.cid-tTPhJtAjKd .item-title {
  text-align: left;
}
.cid-tTPhJtAjKd .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tx6H42ZJgH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tx6H42ZJgH img,
.cid-tx6H42ZJgH .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tx6H42ZJgH .item:focus,
.cid-tx6H42ZJgH span:focus {
  outline: none;
}
.cid-tx6H42ZJgH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tx6H42ZJgH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tx6H42ZJgH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tx6H42ZJgH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tx6H42ZJgH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tx6H42ZJgH .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tx6H42ZJgH .mbr-text,
.cid-tx6H42ZJgH .mbr-section-btn {
  text-align: center;
}
.cid-tx6H42ZJgH .item-title {
  text-align: center;
  color: #fafafa;
}
.cid-tx6H42ZJgH .item-subtitle {
  text-align: left;
}
.cid-tx6H42ZJgH .mbr-section-subtitle {
  text-align: right;
}
.cid-tx0nh5uIlM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tx0nh5uIlM img,
.cid-tx0nh5uIlM .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tx0nh5uIlM .item:focus,
.cid-tx0nh5uIlM span:focus {
  outline: none;
}
.cid-tx0nh5uIlM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tx0nh5uIlM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tx0nh5uIlM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tx0nh5uIlM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tx0nh5uIlM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tx0nh5uIlM .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-tx0nh5uIlM .mbr-text,
.cid-tx0nh5uIlM .mbr-section-btn {
  text-align: center;
  color: #fafafa;
}
.cid-tx0nh5uIlM .item-title {
  text-align: center;
  color: #fafafa;
}
.cid-tx0nh5uIlM .item-subtitle {
  text-align: left;
}
.cid-tx0nh5uIlM .mbr-section-subtitle {
  text-align: center;
}
.cid-txec5bHGFL {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-txec5bHGFL .mbr-overlay {
  background-color: #232323;
  opacity: 0.9;
}
.cid-txec5bHGFL form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-txec5bHGFL form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-txec5bHGFL form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-txec5bHGFL .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-txec5bHGFL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-tx0k0j03iP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tx0k0j03iP .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tSijLQJVZJ {
  z-index: 1000;
  width: 100%;
}
.cid-tSijLQJVZJ nav.navbar {
  position: fixed;
}
.cid-tSijLQJVZJ .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-tSijLQJVZJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSijLQJVZJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSijLQJVZJ .dropdown-item:hover,
.cid-tSijLQJVZJ .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tSijLQJVZJ .dropdown-item:hover span {
  color: white;
}
.cid-tSijLQJVZJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSijLQJVZJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSijLQJVZJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSijLQJVZJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSijLQJVZJ .nav-link {
  position: relative;
}
.cid-tSijLQJVZJ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSijLQJVZJ .container {
    flex-wrap: wrap;
  }
}
.cid-tSijLQJVZJ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tSijLQJVZJ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tSijLQJVZJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSijLQJVZJ .dropdown-menu,
.cid-tSijLQJVZJ .navbar.opened {
  background: #000000 !important;
}
.cid-tSijLQJVZJ .nav-item:focus,
.cid-tSijLQJVZJ .nav-link:focus {
  outline: none;
}
.cid-tSijLQJVZJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSijLQJVZJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSijLQJVZJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSijLQJVZJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSijLQJVZJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSijLQJVZJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSijLQJVZJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tSijLQJVZJ .navbar.opened {
  transition: all 0.3s;
}
.cid-tSijLQJVZJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSijLQJVZJ .navbar .navbar-logo img {
  width: auto;
}
.cid-tSijLQJVZJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSijLQJVZJ .navbar.collapsed {
  justify-content: center;
}
.cid-tSijLQJVZJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSijLQJVZJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSijLQJVZJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tSijLQJVZJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSijLQJVZJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSijLQJVZJ .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-tSijLQJVZJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSijLQJVZJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSijLQJVZJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSijLQJVZJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSijLQJVZJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSijLQJVZJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSijLQJVZJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSijLQJVZJ .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-tSijLQJVZJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSijLQJVZJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSijLQJVZJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSijLQJVZJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSijLQJVZJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSijLQJVZJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSijLQJVZJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSijLQJVZJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tSijLQJVZJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSijLQJVZJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSijLQJVZJ .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-tSijLQJVZJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSijLQJVZJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSijLQJVZJ .dropdown-item.active,
.cid-tSijLQJVZJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tSijLQJVZJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSijLQJVZJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSijLQJVZJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSijLQJVZJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tSijLQJVZJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSijLQJVZJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSijLQJVZJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSijLQJVZJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSijLQJVZJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSijLQJVZJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tSijLQJVZJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSijLQJVZJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSijLQJVZJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSijLQJVZJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSijLQJVZJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSijLQJVZJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSijLQJVZJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSijLQJVZJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSijLQJVZJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSijLQJVZJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSijLQJVZJ .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-tSijLQJVZJ .navbar {
    height: 70px;
  }
  .cid-tSijLQJVZJ .navbar.opened {
    height: auto;
  }
  .cid-tSijLQJVZJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSijLR0mBR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSijLR0mBR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSijLR0mBR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSijLR0mBR .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tSijLR0mBR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tSijLR0mBR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tSijLR0mBR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSijLR0mBR .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tSijLR0mBR .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tSijLR0mBR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tSijLRa5iT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tSijLRa5iT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSijLRa5iT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSijLRa5iT .item {
  padding-bottom: 2rem;
}
.cid-tSijLRa5iT .item-wrapper {
  position: relative;
}
.cid-tSijLRa5iT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tSijLRa5iT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tSijLRa5iT .carousel-control,
.cid-tSijLRa5iT .close {
  background: #1b1b1b;
}
.cid-tSijLRa5iT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tSijLRa5iT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tSijLRa5iT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tSijLRa5iT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tSijLRa5iT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tSijLRa5iT .close::before {
  content: '\e91a';
}
.cid-tSijLRa5iT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tSijLRa5iT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tSijLRa5iT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSijLRa5iT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tSijLRa5iT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tSijLRa5iT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tSijLRa5iT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tSijLRa5iT .carousel-indicators li.active,
.cid-tSijLRa5iT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tSijLRa5iT .carousel-indicators li::after,
.cid-tSijLRa5iT .carousel-indicators li::before {
  content: none;
}
.cid-tSijLRa5iT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tSijLRa5iT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tSijLRa5iT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tSijLRa5iT .carousel-indicators {
    display: none;
  }
}
.cid-tSijLRa5iT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tSijLRa5iT .carousel-inner > .active {
  display: block;
}
.cid-tSijLRa5iT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tSijLRa5iT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tSijLRa5iT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tSijLRa5iT .carousel-control,
  .cid-tSijLRa5iT .carousel-indicators,
  .cid-tSijLRa5iT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tSijLRa5iT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tSijLRa5iT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tSijLRa5iT .carousel-indicators .active,
.cid-tSijLRa5iT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tSijLRa5iT .carousel-indicators .active {
  background: #fff;
}
.cid-tSijLRa5iT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tSijLRa5iT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tSijLRa5iT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tSijLRa5iT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tSijLRa5iT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tSijLRa5iT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tSijLRa5iT .carousel {
  width: 100%;
}
.cid-tSijLRa5iT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tSijLRa5iT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tSijLRa5iT .modal.fade .modal-dialog,
.cid-tSijLRa5iT .modal.in .modal-dialog {
  transform: none;
}
.cid-tSijLRa5iT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tSijLRa5iT H6 {
  text-align: center;
}
.cid-tSijLRKUQf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tSijLRKUQf .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-tSijLRKUQf form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tSijLRKUQf form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tSijLRKUQf form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tSijLRVpBB {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tSijLRVpBB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSijLRVpBB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSijLRVpBB .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tSijLRVpBB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tSijLRVpBB .row {
    text-align: center;
  }
  .cid-tSijLRVpBB .social-row {
    justify-content: center;
  }
}
.cid-tSijLRVpBB .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tSijLRVpBB .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tSijLRVpBB .list {
    margin-bottom: 0rem;
  }
}
.cid-tSijLRVpBB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tSijLRVpBB .mbr-iconfont {
  color: black;
}
.cid-tSijLRVpBB H5 {
  color: #ffffff;
}
.cid-tSijLRVpBB .mbr-section-subtitle {
  text-align: left;
}
.cid-tSijLSfLVl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tSijLSfLVl .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tT84mIXXGb {
  z-index: 1000;
  width: 100%;
}
.cid-tT84mIXXGb nav.navbar {
  position: fixed;
}
.cid-tT84mIXXGb .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-tT84mIXXGb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tT84mIXXGb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT84mIXXGb .dropdown-item:hover,
.cid-tT84mIXXGb .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tT84mIXXGb .dropdown-item:hover span {
  color: white;
}
.cid-tT84mIXXGb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT84mIXXGb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT84mIXXGb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT84mIXXGb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT84mIXXGb .nav-link {
  position: relative;
}
.cid-tT84mIXXGb .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT84mIXXGb .container {
    flex-wrap: wrap;
  }
}
.cid-tT84mIXXGb .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT84mIXXGb .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tT84mIXXGb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT84mIXXGb .dropdown-menu,
.cid-tT84mIXXGb .navbar.opened {
  background: #000000 !important;
}
.cid-tT84mIXXGb .nav-item:focus,
.cid-tT84mIXXGb .nav-link:focus {
  outline: none;
}
.cid-tT84mIXXGb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT84mIXXGb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT84mIXXGb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT84mIXXGb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT84mIXXGb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT84mIXXGb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT84mIXXGb .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tT84mIXXGb .navbar.opened {
  transition: all 0.3s;
}
.cid-tT84mIXXGb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT84mIXXGb .navbar .navbar-logo img {
  width: auto;
}
.cid-tT84mIXXGb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT84mIXXGb .navbar.collapsed {
  justify-content: center;
}
.cid-tT84mIXXGb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT84mIXXGb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tT84mIXXGb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tT84mIXXGb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT84mIXXGb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT84mIXXGb .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-tT84mIXXGb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT84mIXXGb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT84mIXXGb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT84mIXXGb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT84mIXXGb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT84mIXXGb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT84mIXXGb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT84mIXXGb .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-tT84mIXXGb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tT84mIXXGb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT84mIXXGb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT84mIXXGb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tT84mIXXGb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT84mIXXGb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tT84mIXXGb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tT84mIXXGb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT84mIXXGb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT84mIXXGb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT84mIXXGb .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-tT84mIXXGb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT84mIXXGb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT84mIXXGb .dropdown-item.active,
.cid-tT84mIXXGb .dropdown-item:active {
  background-color: transparent;
}
.cid-tT84mIXXGb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT84mIXXGb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT84mIXXGb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT84mIXXGb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tT84mIXXGb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT84mIXXGb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT84mIXXGb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT84mIXXGb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT84mIXXGb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT84mIXXGb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tT84mIXXGb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT84mIXXGb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT84mIXXGb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT84mIXXGb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT84mIXXGb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT84mIXXGb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT84mIXXGb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT84mIXXGb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT84mIXXGb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tT84mIXXGb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT84mIXXGb .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-tT84mIXXGb .navbar {
    height: 70px;
  }
  .cid-tT84mIXXGb .navbar.opened {
    height: auto;
  }
  .cid-tT84mIXXGb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT84mJj2WH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tT84mJj2WH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT84mJj2WH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT84mJj2WH .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tT84mJj2WH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tT84mJj2WH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tT84mJj2WH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tT84mJj2WH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tT84mJj2WH .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tT84mJj2WH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tT84mJvRlg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tT84mJvRlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT84mJvRlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT84mJvRlg .item {
  padding-bottom: 2rem;
}
.cid-tT84mJvRlg .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tT84mJvRlg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tT84mJvRlg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tT84mJvRlg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tT84mJvRlg .carousel-control,
.cid-tT84mJvRlg .close {
  background: #1b1b1b;
}
.cid-tT84mJvRlg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tT84mJvRlg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tT84mJvRlg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tT84mJvRlg .carousel-control-next span {
  margin-left: 5px;
}
.cid-tT84mJvRlg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tT84mJvRlg .close::before {
  content: '\e91a';
}
.cid-tT84mJvRlg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tT84mJvRlg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tT84mJvRlg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT84mJvRlg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tT84mJvRlg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tT84mJvRlg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tT84mJvRlg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tT84mJvRlg .carousel-indicators li.active,
.cid-tT84mJvRlg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tT84mJvRlg .carousel-indicators li::after,
.cid-tT84mJvRlg .carousel-indicators li::before {
  content: none;
}
.cid-tT84mJvRlg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tT84mJvRlg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tT84mJvRlg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tT84mJvRlg .carousel-indicators {
    display: none;
  }
}
.cid-tT84mJvRlg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tT84mJvRlg .carousel-inner > .active {
  display: block;
}
.cid-tT84mJvRlg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT84mJvRlg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT84mJvRlg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tT84mJvRlg .carousel-control,
  .cid-tT84mJvRlg .carousel-indicators,
  .cid-tT84mJvRlg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tT84mJvRlg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tT84mJvRlg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tT84mJvRlg .carousel-indicators .active,
.cid-tT84mJvRlg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tT84mJvRlg .carousel-indicators .active {
  background: #fff;
}
.cid-tT84mJvRlg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tT84mJvRlg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tT84mJvRlg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tT84mJvRlg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tT84mJvRlg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tT84mJvRlg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tT84mJvRlg .carousel {
  width: 100%;
}
.cid-tT84mJvRlg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tT84mJvRlg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tT84mJvRlg .modal.fade .modal-dialog,
.cid-tT84mJvRlg .modal.in .modal-dialog {
  transform: none;
}
.cid-tT84mJvRlg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tT84mJvRlg H6 {
  text-align: center;
}
.cid-tT84mK4Vf2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-tT84mK4Vf2 .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-tT84mK4Vf2 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tT84mK4Vf2 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tT84mK4Vf2 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tT84mKfctf {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tT84mKfctf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT84mKfctf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT84mKfctf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tT84mKfctf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tT84mKfctf .row {
    text-align: center;
  }
  .cid-tT84mKfctf .social-row {
    justify-content: center;
  }
}
.cid-tT84mKfctf .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tT84mKfctf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tT84mKfctf .list {
    margin-bottom: 0rem;
  }
}
.cid-tT84mKfctf .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tT84mKfctf .mbr-iconfont {
  color: black;
}
.cid-tT84mKfctf H5 {
  color: #ffffff;
}
.cid-tT84mKfctf .mbr-section-subtitle {
  text-align: left;
}
.cid-tT84mKwYSV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tT84mKwYSV .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tVtJADqFBt {
  z-index: 1000;
  width: 100%;
}
.cid-tVtJADqFBt nav.navbar {
  position: fixed;
}
.cid-tVtJADqFBt .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-tVtJADqFBt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVtJADqFBt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVtJADqFBt .dropdown-item:hover,
.cid-tVtJADqFBt .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tVtJADqFBt .dropdown-item:hover span {
  color: white;
}
.cid-tVtJADqFBt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVtJADqFBt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVtJADqFBt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVtJADqFBt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVtJADqFBt .nav-link {
  position: relative;
}
.cid-tVtJADqFBt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVtJADqFBt .container {
    flex-wrap: wrap;
  }
}
.cid-tVtJADqFBt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVtJADqFBt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tVtJADqFBt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVtJADqFBt .dropdown-menu,
.cid-tVtJADqFBt .navbar.opened {
  background: #000000 !important;
}
.cid-tVtJADqFBt .nav-item:focus,
.cid-tVtJADqFBt .nav-link:focus {
  outline: none;
}
.cid-tVtJADqFBt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVtJADqFBt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVtJADqFBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVtJADqFBt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVtJADqFBt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVtJADqFBt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVtJADqFBt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tVtJADqFBt .navbar.opened {
  transition: all 0.3s;
}
.cid-tVtJADqFBt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVtJADqFBt .navbar .navbar-logo img {
  width: auto;
}
.cid-tVtJADqFBt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVtJADqFBt .navbar.collapsed {
  justify-content: center;
}
.cid-tVtJADqFBt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVtJADqFBt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVtJADqFBt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tVtJADqFBt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVtJADqFBt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVtJADqFBt .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-tVtJADqFBt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVtJADqFBt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVtJADqFBt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVtJADqFBt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVtJADqFBt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVtJADqFBt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVtJADqFBt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVtJADqFBt .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-tVtJADqFBt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVtJADqFBt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVtJADqFBt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVtJADqFBt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVtJADqFBt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVtJADqFBt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVtJADqFBt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVtJADqFBt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVtJADqFBt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVtJADqFBt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVtJADqFBt .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-tVtJADqFBt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVtJADqFBt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVtJADqFBt .dropdown-item.active,
.cid-tVtJADqFBt .dropdown-item:active {
  background-color: transparent;
}
.cid-tVtJADqFBt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVtJADqFBt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVtJADqFBt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVtJADqFBt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tVtJADqFBt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVtJADqFBt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVtJADqFBt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVtJADqFBt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVtJADqFBt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVtJADqFBt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVtJADqFBt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVtJADqFBt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVtJADqFBt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVtJADqFBt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVtJADqFBt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVtJADqFBt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVtJADqFBt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVtJADqFBt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVtJADqFBt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVtJADqFBt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVtJADqFBt .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-tVtJADqFBt .navbar {
    height: 70px;
  }
  .cid-tVtJADqFBt .navbar.opened {
    height: auto;
  }
  .cid-tVtJADqFBt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVtJADGavG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVtJADGavG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVtJADGavG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVtJADGavG .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tVtJADGavG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tVtJADGavG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVtJADGavG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVtJADGavG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tVtJADGavG .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tVtJADGavG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tVtJADPU55 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVtJADPU55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVtJADPU55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVtJADPU55 .item {
  padding-bottom: 2rem;
}
.cid-tVtJADPU55 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tVtJADPU55 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tVtJADPU55 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tVtJADPU55 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tVtJADPU55 .carousel-control,
.cid-tVtJADPU55 .close {
  background: #1b1b1b;
}
.cid-tVtJADPU55 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tVtJADPU55 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tVtJADPU55 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tVtJADPU55 .carousel-control-next span {
  margin-left: 5px;
}
.cid-tVtJADPU55 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tVtJADPU55 .close::before {
  content: '\e91a';
}
.cid-tVtJADPU55 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVtJADPU55 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tVtJADPU55 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVtJADPU55 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVtJADPU55 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVtJADPU55 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tVtJADPU55 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tVtJADPU55 .carousel-indicators li.active,
.cid-tVtJADPU55 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVtJADPU55 .carousel-indicators li::after,
.cid-tVtJADPU55 .carousel-indicators li::before {
  content: none;
}
.cid-tVtJADPU55 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVtJADPU55 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tVtJADPU55 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tVtJADPU55 .carousel-indicators {
    display: none;
  }
}
.cid-tVtJADPU55 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tVtJADPU55 .carousel-inner > .active {
  display: block;
}
.cid-tVtJADPU55 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVtJADPU55 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVtJADPU55 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tVtJADPU55 .carousel-control,
  .cid-tVtJADPU55 .carousel-indicators,
  .cid-tVtJADPU55 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tVtJADPU55 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tVtJADPU55 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tVtJADPU55 .carousel-indicators .active,
.cid-tVtJADPU55 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tVtJADPU55 .carousel-indicators .active {
  background: #fff;
}
.cid-tVtJADPU55 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tVtJADPU55 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tVtJADPU55 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVtJADPU55 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tVtJADPU55 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tVtJADPU55 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tVtJADPU55 .carousel {
  width: 100%;
}
.cid-tVtJADPU55 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tVtJADPU55 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tVtJADPU55 .modal.fade .modal-dialog,
.cid-tVtJADPU55 .modal.in .modal-dialog {
  transform: none;
}
.cid-tVtJADPU55 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tVtJADPU55 H6 {
  text-align: center;
}
.cid-tVtJAEjMmI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tVtJAEjMmI .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-tVtJAEjMmI form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tVtJAEjMmI form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tVtJAEjMmI form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tVtJAEt8Jj {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tVtJAEt8Jj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVtJAEt8Jj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVtJAEt8Jj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVtJAEt8Jj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVtJAEt8Jj .row {
    text-align: center;
  }
  .cid-tVtJAEt8Jj .social-row {
    justify-content: center;
  }
}
.cid-tVtJAEt8Jj .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tVtJAEt8Jj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVtJAEt8Jj .list {
    margin-bottom: 0rem;
  }
}
.cid-tVtJAEt8Jj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tVtJAEt8Jj .mbr-iconfont {
  color: black;
}
.cid-tVtJAEt8Jj H5 {
  color: #ffffff;
}
.cid-tVtJAEt8Jj .mbr-section-subtitle {
  text-align: left;
}
.cid-tVtJAEJJX8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tVtJAEJJX8 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tT81A34MnQ {
  z-index: 1000;
  width: 100%;
}
.cid-tT81A34MnQ nav.navbar {
  position: fixed;
}
.cid-tT81A34MnQ .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-tT81A34MnQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tT81A34MnQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT81A34MnQ .dropdown-item:hover,
.cid-tT81A34MnQ .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tT81A34MnQ .dropdown-item:hover span {
  color: white;
}
.cid-tT81A34MnQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT81A34MnQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT81A34MnQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT81A34MnQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT81A34MnQ .nav-link {
  position: relative;
}
.cid-tT81A34MnQ .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT81A34MnQ .container {
    flex-wrap: wrap;
  }
}
.cid-tT81A34MnQ .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tT81A34MnQ .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tT81A34MnQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT81A34MnQ .dropdown-menu,
.cid-tT81A34MnQ .navbar.opened {
  background: #000000 !important;
}
.cid-tT81A34MnQ .nav-item:focus,
.cid-tT81A34MnQ .nav-link:focus {
  outline: none;
}
.cid-tT81A34MnQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT81A34MnQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT81A34MnQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT81A34MnQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT81A34MnQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT81A34MnQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT81A34MnQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tT81A34MnQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tT81A34MnQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT81A34MnQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tT81A34MnQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT81A34MnQ .navbar.collapsed {
  justify-content: center;
}
.cid-tT81A34MnQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT81A34MnQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tT81A34MnQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tT81A34MnQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT81A34MnQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT81A34MnQ .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-tT81A34MnQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT81A34MnQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT81A34MnQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT81A34MnQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT81A34MnQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT81A34MnQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT81A34MnQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT81A34MnQ .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-tT81A34MnQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tT81A34MnQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT81A34MnQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT81A34MnQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tT81A34MnQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT81A34MnQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tT81A34MnQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tT81A34MnQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tT81A34MnQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT81A34MnQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT81A34MnQ .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-tT81A34MnQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT81A34MnQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT81A34MnQ .dropdown-item.active,
.cid-tT81A34MnQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tT81A34MnQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT81A34MnQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT81A34MnQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT81A34MnQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tT81A34MnQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT81A34MnQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT81A34MnQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT81A34MnQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT81A34MnQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT81A34MnQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tT81A34MnQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT81A34MnQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT81A34MnQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT81A34MnQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT81A34MnQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT81A34MnQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT81A34MnQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT81A34MnQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT81A34MnQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tT81A34MnQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT81A34MnQ .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-tT81A34MnQ .navbar {
    height: 70px;
  }
  .cid-tT81A34MnQ .navbar.opened {
    height: auto;
  }
  .cid-tT81A34MnQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT81A41s9P {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tT81A41s9P .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT81A41s9P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT81A41s9P .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tT81A41s9P .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tT81A41s9P .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tT81A41s9P .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tT81A41s9P .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tT81A41s9P .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tT81A41s9P .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tT81A4qyVH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tT81A4qyVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT81A4qyVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT81A4qyVH .item {
  padding-bottom: 2rem;
}
.cid-tT81A4qyVH .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tT81A4qyVH .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tT81A4qyVH .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tT81A4qyVH .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tT81A4qyVH .carousel-control,
.cid-tT81A4qyVH .close {
  background: #1b1b1b;
}
.cid-tT81A4qyVH .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tT81A4qyVH .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tT81A4qyVH .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tT81A4qyVH .carousel-control-next span {
  margin-left: 5px;
}
.cid-tT81A4qyVH .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tT81A4qyVH .close::before {
  content: '\e91a';
}
.cid-tT81A4qyVH .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tT81A4qyVH .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tT81A4qyVH .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT81A4qyVH .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tT81A4qyVH .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tT81A4qyVH .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tT81A4qyVH .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tT81A4qyVH .carousel-indicators li.active,
.cid-tT81A4qyVH .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tT81A4qyVH .carousel-indicators li::after,
.cid-tT81A4qyVH .carousel-indicators li::before {
  content: none;
}
.cid-tT81A4qyVH .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tT81A4qyVH .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tT81A4qyVH .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tT81A4qyVH .carousel-indicators {
    display: none;
  }
}
.cid-tT81A4qyVH .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tT81A4qyVH .carousel-inner > .active {
  display: block;
}
.cid-tT81A4qyVH .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tT81A4qyVH .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tT81A4qyVH .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tT81A4qyVH .carousel-control,
  .cid-tT81A4qyVH .carousel-indicators,
  .cid-tT81A4qyVH .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tT81A4qyVH .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tT81A4qyVH .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tT81A4qyVH .carousel-indicators .active,
.cid-tT81A4qyVH .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tT81A4qyVH .carousel-indicators .active {
  background: #fff;
}
.cid-tT81A4qyVH .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tT81A4qyVH .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tT81A4qyVH .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tT81A4qyVH .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tT81A4qyVH .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tT81A4qyVH .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tT81A4qyVH .carousel {
  width: 100%;
}
.cid-tT81A4qyVH .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tT81A4qyVH .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tT81A4qyVH .modal.fade .modal-dialog,
.cid-tT81A4qyVH .modal.in .modal-dialog {
  transform: none;
}
.cid-tT81A4qyVH .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tT81A4qyVH H6 {
  text-align: center;
}
.cid-tT81A5iM7Q {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tT81A5iM7Q .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.3;
}
.cid-tT81A5iM7Q form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tT81A5iM7Q form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tT81A5iM7Q form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tT81A5tjgc {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tT81A5tjgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT81A5tjgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT81A5tjgc .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tT81A5tjgc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tT81A5tjgc .row {
    text-align: center;
  }
  .cid-tT81A5tjgc .social-row {
    justify-content: center;
  }
}
.cid-tT81A5tjgc .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tT81A5tjgc .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tT81A5tjgc .list {
    margin-bottom: 0rem;
  }
}
.cid-tT81A5tjgc .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tT81A5tjgc .mbr-iconfont {
  color: black;
}
.cid-tT81A5tjgc H5 {
  color: #ffffff;
}
.cid-tT81A5tjgc .mbr-section-subtitle {
  text-align: left;
}
.cid-tT81A5Ju0s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tT81A5Ju0s .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tTXL4ljYAc {
  z-index: 1000;
  width: 100%;
}
.cid-tTXL4ljYAc nav.navbar {
  position: fixed;
}
.cid-tTXL4ljYAc .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-tTXL4ljYAc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTXL4ljYAc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTXL4ljYAc .dropdown-item:hover,
.cid-tTXL4ljYAc .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tTXL4ljYAc .dropdown-item:hover span {
  color: white;
}
.cid-tTXL4ljYAc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTXL4ljYAc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTXL4ljYAc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTXL4ljYAc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTXL4ljYAc .nav-link {
  position: relative;
}
.cid-tTXL4ljYAc .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTXL4ljYAc .container {
    flex-wrap: wrap;
  }
}
.cid-tTXL4ljYAc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tTXL4ljYAc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tTXL4ljYAc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTXL4ljYAc .dropdown-menu,
.cid-tTXL4ljYAc .navbar.opened {
  background: #000000 !important;
}
.cid-tTXL4ljYAc .nav-item:focus,
.cid-tTXL4ljYAc .nav-link:focus {
  outline: none;
}
.cid-tTXL4ljYAc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTXL4ljYAc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTXL4ljYAc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTXL4ljYAc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTXL4ljYAc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTXL4ljYAc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTXL4ljYAc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tTXL4ljYAc .navbar.opened {
  transition: all 0.3s;
}
.cid-tTXL4ljYAc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTXL4ljYAc .navbar .navbar-logo img {
  width: auto;
}
.cid-tTXL4ljYAc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTXL4ljYAc .navbar.collapsed {
  justify-content: center;
}
.cid-tTXL4ljYAc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTXL4ljYAc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTXL4ljYAc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tTXL4ljYAc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTXL4ljYAc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTXL4ljYAc .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-tTXL4ljYAc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTXL4ljYAc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTXL4ljYAc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTXL4ljYAc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTXL4ljYAc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTXL4ljYAc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTXL4ljYAc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTXL4ljYAc .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-tTXL4ljYAc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTXL4ljYAc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTXL4ljYAc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTXL4ljYAc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTXL4ljYAc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTXL4ljYAc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTXL4ljYAc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTXL4ljYAc .navbar.navbar-short {
  min-height: 60px;
}
.cid-tTXL4ljYAc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTXL4ljYAc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTXL4ljYAc .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-tTXL4ljYAc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTXL4ljYAc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTXL4ljYAc .dropdown-item.active,
.cid-tTXL4ljYAc .dropdown-item:active {
  background-color: transparent;
}
.cid-tTXL4ljYAc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTXL4ljYAc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTXL4ljYAc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTXL4ljYAc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tTXL4ljYAc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTXL4ljYAc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTXL4ljYAc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTXL4ljYAc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTXL4ljYAc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTXL4ljYAc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tTXL4ljYAc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTXL4ljYAc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTXL4ljYAc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTXL4ljYAc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTXL4ljYAc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTXL4ljYAc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTXL4ljYAc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTXL4ljYAc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTXL4ljYAc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTXL4ljYAc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTXL4ljYAc .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-tTXL4ljYAc .navbar {
    height: 70px;
  }
  .cid-tTXL4ljYAc .navbar.opened {
    height: auto;
  }
  .cid-tTXL4ljYAc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTXL4lzn0k {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTXL4lzn0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTXL4lzn0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTXL4lzn0k .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tTXL4lzn0k .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tTXL4lzn0k .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tTXL4lzn0k .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTXL4lzn0k .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tTXL4lzn0k .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tTXL4lzn0k .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tTXL4lJCSm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tTXL4lJCSm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTXL4lJCSm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTXL4lJCSm .item {
  padding-bottom: 2rem;
}
.cid-tTXL4lJCSm .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tTXL4lJCSm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tTXL4lJCSm .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tTXL4lJCSm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tTXL4lJCSm .carousel-control,
.cid-tTXL4lJCSm .close {
  background: #1b1b1b;
}
.cid-tTXL4lJCSm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tTXL4lJCSm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tTXL4lJCSm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tTXL4lJCSm .carousel-control-next span {
  margin-left: 5px;
}
.cid-tTXL4lJCSm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tTXL4lJCSm .close::before {
  content: '\e91a';
}
.cid-tTXL4lJCSm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tTXL4lJCSm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tTXL4lJCSm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTXL4lJCSm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTXL4lJCSm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tTXL4lJCSm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tTXL4lJCSm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tTXL4lJCSm .carousel-indicators li.active,
.cid-tTXL4lJCSm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tTXL4lJCSm .carousel-indicators li::after,
.cid-tTXL4lJCSm .carousel-indicators li::before {
  content: none;
}
.cid-tTXL4lJCSm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tTXL4lJCSm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tTXL4lJCSm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tTXL4lJCSm .carousel-indicators {
    display: none;
  }
}
.cid-tTXL4lJCSm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tTXL4lJCSm .carousel-inner > .active {
  display: block;
}
.cid-tTXL4lJCSm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tTXL4lJCSm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tTXL4lJCSm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tTXL4lJCSm .carousel-control,
  .cid-tTXL4lJCSm .carousel-indicators,
  .cid-tTXL4lJCSm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tTXL4lJCSm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tTXL4lJCSm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tTXL4lJCSm .carousel-indicators .active,
.cid-tTXL4lJCSm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tTXL4lJCSm .carousel-indicators .active {
  background: #fff;
}
.cid-tTXL4lJCSm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tTXL4lJCSm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tTXL4lJCSm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tTXL4lJCSm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tTXL4lJCSm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tTXL4lJCSm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tTXL4lJCSm .carousel {
  width: 100%;
}
.cid-tTXL4lJCSm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tTXL4lJCSm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tTXL4lJCSm .modal.fade .modal-dialog,
.cid-tTXL4lJCSm .modal.in .modal-dialog {
  transform: none;
}
.cid-tTXL4lJCSm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tTXL4lJCSm H6 {
  text-align: center;
}
.cid-tTXL4mjbMN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tTXL4mjbMN .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-tTXL4mjbMN form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tTXL4mjbMN form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tTXL4mjbMN form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tTXL4muOf0 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tTXL4muOf0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTXL4muOf0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTXL4muOf0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tTXL4muOf0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tTXL4muOf0 .row {
    text-align: center;
  }
  .cid-tTXL4muOf0 .social-row {
    justify-content: center;
  }
}
.cid-tTXL4muOf0 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tTXL4muOf0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tTXL4muOf0 .list {
    margin-bottom: 0rem;
  }
}
.cid-tTXL4muOf0 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tTXL4muOf0 .mbr-iconfont {
  color: black;
}
.cid-tTXL4muOf0 H5 {
  color: #ffffff;
}
.cid-tTXL4muOf0 .mbr-section-subtitle {
  text-align: left;
}
.cid-tTXL4mOsIR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tTXL4mOsIR .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tVuLJsqeyj {
  z-index: 1000;
  width: 100%;
}
.cid-tVuLJsqeyj nav.navbar {
  position: fixed;
}
.cid-tVuLJsqeyj .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-tVuLJsqeyj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVuLJsqeyj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVuLJsqeyj .dropdown-item:hover,
.cid-tVuLJsqeyj .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tVuLJsqeyj .dropdown-item:hover span {
  color: white;
}
.cid-tVuLJsqeyj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVuLJsqeyj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVuLJsqeyj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVuLJsqeyj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVuLJsqeyj .nav-link {
  position: relative;
}
.cid-tVuLJsqeyj .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVuLJsqeyj .container {
    flex-wrap: wrap;
  }
}
.cid-tVuLJsqeyj .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tVuLJsqeyj .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tVuLJsqeyj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVuLJsqeyj .dropdown-menu,
.cid-tVuLJsqeyj .navbar.opened {
  background: #000000 !important;
}
.cid-tVuLJsqeyj .nav-item:focus,
.cid-tVuLJsqeyj .nav-link:focus {
  outline: none;
}
.cid-tVuLJsqeyj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVuLJsqeyj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVuLJsqeyj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVuLJsqeyj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVuLJsqeyj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVuLJsqeyj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVuLJsqeyj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tVuLJsqeyj .navbar.opened {
  transition: all 0.3s;
}
.cid-tVuLJsqeyj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVuLJsqeyj .navbar .navbar-logo img {
  width: auto;
}
.cid-tVuLJsqeyj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVuLJsqeyj .navbar.collapsed {
  justify-content: center;
}
.cid-tVuLJsqeyj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVuLJsqeyj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVuLJsqeyj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tVuLJsqeyj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVuLJsqeyj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVuLJsqeyj .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-tVuLJsqeyj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVuLJsqeyj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVuLJsqeyj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVuLJsqeyj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVuLJsqeyj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVuLJsqeyj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVuLJsqeyj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVuLJsqeyj .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-tVuLJsqeyj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVuLJsqeyj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVuLJsqeyj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVuLJsqeyj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVuLJsqeyj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVuLJsqeyj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVuLJsqeyj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVuLJsqeyj .navbar.navbar-short {
  min-height: 60px;
}
.cid-tVuLJsqeyj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVuLJsqeyj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVuLJsqeyj .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-tVuLJsqeyj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVuLJsqeyj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVuLJsqeyj .dropdown-item.active,
.cid-tVuLJsqeyj .dropdown-item:active {
  background-color: transparent;
}
.cid-tVuLJsqeyj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVuLJsqeyj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVuLJsqeyj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVuLJsqeyj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tVuLJsqeyj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVuLJsqeyj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVuLJsqeyj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVuLJsqeyj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVuLJsqeyj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVuLJsqeyj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tVuLJsqeyj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVuLJsqeyj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVuLJsqeyj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVuLJsqeyj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVuLJsqeyj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVuLJsqeyj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVuLJsqeyj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVuLJsqeyj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVuLJsqeyj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVuLJsqeyj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVuLJsqeyj .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-tVuLJsqeyj .navbar {
    height: 70px;
  }
  .cid-tVuLJsqeyj .navbar.opened {
    height: auto;
  }
  .cid-tVuLJsqeyj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVuLJsJyV7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVuLJsJyV7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVuLJsJyV7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVuLJsJyV7 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tVuLJsJyV7 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tVuLJsJyV7 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tVuLJsJyV7 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVuLJsJyV7 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tVuLJsJyV7 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tVuLJsJyV7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tVuLJt4Mdp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tVuLJt4Mdp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVuLJt4Mdp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVuLJt4Mdp .item {
  padding-bottom: 2rem;
}
.cid-tVuLJt4Mdp .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tVuLJt4Mdp .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tVuLJt4Mdp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tVuLJt4Mdp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tVuLJt4Mdp .carousel-control,
.cid-tVuLJt4Mdp .close {
  background: #1b1b1b;
}
.cid-tVuLJt4Mdp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tVuLJt4Mdp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tVuLJt4Mdp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tVuLJt4Mdp .carousel-control-next span {
  margin-left: 5px;
}
.cid-tVuLJt4Mdp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tVuLJt4Mdp .close::before {
  content: '\e91a';
}
.cid-tVuLJt4Mdp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tVuLJt4Mdp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tVuLJt4Mdp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVuLJt4Mdp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVuLJt4Mdp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tVuLJt4Mdp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tVuLJt4Mdp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tVuLJt4Mdp .carousel-indicators li.active,
.cid-tVuLJt4Mdp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tVuLJt4Mdp .carousel-indicators li::after,
.cid-tVuLJt4Mdp .carousel-indicators li::before {
  content: none;
}
.cid-tVuLJt4Mdp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tVuLJt4Mdp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tVuLJt4Mdp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tVuLJt4Mdp .carousel-indicators {
    display: none;
  }
}
.cid-tVuLJt4Mdp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tVuLJt4Mdp .carousel-inner > .active {
  display: block;
}
.cid-tVuLJt4Mdp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tVuLJt4Mdp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tVuLJt4Mdp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tVuLJt4Mdp .carousel-control,
  .cid-tVuLJt4Mdp .carousel-indicators,
  .cid-tVuLJt4Mdp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tVuLJt4Mdp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tVuLJt4Mdp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tVuLJt4Mdp .carousel-indicators .active,
.cid-tVuLJt4Mdp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tVuLJt4Mdp .carousel-indicators .active {
  background: #fff;
}
.cid-tVuLJt4Mdp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tVuLJt4Mdp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tVuLJt4Mdp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tVuLJt4Mdp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tVuLJt4Mdp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tVuLJt4Mdp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tVuLJt4Mdp .carousel {
  width: 100%;
}
.cid-tVuLJt4Mdp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tVuLJt4Mdp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tVuLJt4Mdp .modal.fade .modal-dialog,
.cid-tVuLJt4Mdp .modal.in .modal-dialog {
  transform: none;
}
.cid-tVuLJt4Mdp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tVuLJt4Mdp H6 {
  text-align: center;
}
.cid-tVuLJtApJJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-bianco-3-foglie-1920x1080px2-2000x1125.webp");
}
.cid-tVuLJtApJJ .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-tVuLJtApJJ form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tVuLJtApJJ form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tVuLJtApJJ form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tVuLJtL3aX {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tVuLJtL3aX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVuLJtL3aX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVuLJtL3aX .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tVuLJtL3aX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tVuLJtL3aX .row {
    text-align: center;
  }
  .cid-tVuLJtL3aX .social-row {
    justify-content: center;
  }
}
.cid-tVuLJtL3aX .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tVuLJtL3aX .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tVuLJtL3aX .list {
    margin-bottom: 0rem;
  }
}
.cid-tVuLJtL3aX .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tVuLJtL3aX .mbr-iconfont {
  color: black;
}
.cid-tVuLJtL3aX H5 {
  color: #ffffff;
}
.cid-tVuLJtL3aX .mbr-section-subtitle {
  text-align: left;
}
.cid-tVuLJu3vS3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tVuLJu3vS3 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uaLur3UKGX {
  z-index: 1000;
  width: 100%;
}
.cid-uaLur3UKGX nav.navbar {
  position: fixed;
}
.cid-uaLur3UKGX .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-uaLur3UKGX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaLur3UKGX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaLur3UKGX .dropdown-item:hover,
.cid-uaLur3UKGX .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uaLur3UKGX .dropdown-item:hover span {
  color: white;
}
.cid-uaLur3UKGX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaLur3UKGX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaLur3UKGX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaLur3UKGX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaLur3UKGX .nav-link {
  position: relative;
}
.cid-uaLur3UKGX .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaLur3UKGX .container {
    flex-wrap: wrap;
  }
}
.cid-uaLur3UKGX .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uaLur3UKGX .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uaLur3UKGX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaLur3UKGX .dropdown-menu,
.cid-uaLur3UKGX .navbar.opened {
  background: #000000 !important;
}
.cid-uaLur3UKGX .nav-item:focus,
.cid-uaLur3UKGX .nav-link:focus {
  outline: none;
}
.cid-uaLur3UKGX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaLur3UKGX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaLur3UKGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaLur3UKGX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaLur3UKGX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaLur3UKGX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaLur3UKGX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uaLur3UKGX .navbar.opened {
  transition: all 0.3s;
}
.cid-uaLur3UKGX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaLur3UKGX .navbar .navbar-logo img {
  width: auto;
}
.cid-uaLur3UKGX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaLur3UKGX .navbar.collapsed {
  justify-content: center;
}
.cid-uaLur3UKGX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaLur3UKGX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaLur3UKGX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uaLur3UKGX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaLur3UKGX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaLur3UKGX .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-uaLur3UKGX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaLur3UKGX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaLur3UKGX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaLur3UKGX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaLur3UKGX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaLur3UKGX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaLur3UKGX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaLur3UKGX .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-uaLur3UKGX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaLur3UKGX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaLur3UKGX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaLur3UKGX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaLur3UKGX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaLur3UKGX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaLur3UKGX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaLur3UKGX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uaLur3UKGX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaLur3UKGX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaLur3UKGX .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-uaLur3UKGX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaLur3UKGX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaLur3UKGX .dropdown-item.active,
.cid-uaLur3UKGX .dropdown-item:active {
  background-color: transparent;
}
.cid-uaLur3UKGX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaLur3UKGX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaLur3UKGX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaLur3UKGX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uaLur3UKGX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaLur3UKGX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaLur3UKGX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaLur3UKGX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaLur3UKGX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaLur3UKGX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uaLur3UKGX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaLur3UKGX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaLur3UKGX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaLur3UKGX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaLur3UKGX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaLur3UKGX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaLur3UKGX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaLur3UKGX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaLur3UKGX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaLur3UKGX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaLur3UKGX .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-uaLur3UKGX .navbar {
    height: 70px;
  }
  .cid-uaLur3UKGX .navbar.opened {
    height: auto;
  }
  .cid-uaLur3UKGX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaLur4fhpU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaLur4fhpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaLur4fhpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaLur4fhpU .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uaLur4fhpU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uaLur4fhpU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uaLur4fhpU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uaLur4fhpU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uaLur4fhpU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uaLur4fhpU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uaLur4w2id {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaLur4w2id .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaLur4w2id .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaLur4w2id .item {
  padding-bottom: 2rem;
}
.cid-uaLur4w2id .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uaLur4w2id .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uaLur4w2id .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uaLur4w2id .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uaLur4w2id .carousel-control,
.cid-uaLur4w2id .close {
  background: #1b1b1b;
}
.cid-uaLur4w2id .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uaLur4w2id .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uaLur4w2id .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uaLur4w2id .carousel-control-next span {
  margin-left: 5px;
}
.cid-uaLur4w2id .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uaLur4w2id .close::before {
  content: '\e91a';
}
.cid-uaLur4w2id .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uaLur4w2id .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uaLur4w2id .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uaLur4w2id .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uaLur4w2id .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uaLur4w2id .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uaLur4w2id .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uaLur4w2id .carousel-indicators li.active,
.cid-uaLur4w2id .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uaLur4w2id .carousel-indicators li::after,
.cid-uaLur4w2id .carousel-indicators li::before {
  content: none;
}
.cid-uaLur4w2id .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uaLur4w2id .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uaLur4w2id .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uaLur4w2id .carousel-indicators {
    display: none;
  }
}
.cid-uaLur4w2id .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uaLur4w2id .carousel-inner > .active {
  display: block;
}
.cid-uaLur4w2id .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uaLur4w2id .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uaLur4w2id .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uaLur4w2id .carousel-control,
  .cid-uaLur4w2id .carousel-indicators,
  .cid-uaLur4w2id .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uaLur4w2id .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uaLur4w2id .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uaLur4w2id .carousel-indicators .active,
.cid-uaLur4w2id .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uaLur4w2id .carousel-indicators .active {
  background: #fff;
}
.cid-uaLur4w2id .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uaLur4w2id .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uaLur4w2id .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uaLur4w2id .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uaLur4w2id .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uaLur4w2id .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uaLur4w2id .carousel {
  width: 100%;
}
.cid-uaLur4w2id .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uaLur4w2id .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uaLur4w2id .modal.fade .modal-dialog,
.cid-uaLur4w2id .modal.in .modal-dialog {
  transform: none;
}
.cid-uaLur4w2id .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uaLur4w2id H6 {
  text-align: center;
}
.cid-uaLur5x1nh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-uaLur5x1nh .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-uaLur5x1nh form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uaLur5x1nh form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uaLur5x1nh form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uaLur5x1nh .mbr-section-title {
  text-align: center;
}
.cid-uaLur5IyVE {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uaLur5IyVE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaLur5IyVE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaLur5IyVE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uaLur5IyVE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uaLur5IyVE .row {
    text-align: center;
  }
  .cid-uaLur5IyVE .social-row {
    justify-content: center;
  }
}
.cid-uaLur5IyVE .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uaLur5IyVE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uaLur5IyVE .list {
    margin-bottom: 0rem;
  }
}
.cid-uaLur5IyVE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uaLur5IyVE .mbr-iconfont {
  color: black;
}
.cid-uaLur5IyVE H5 {
  color: #ffffff;
}
.cid-uaLur5IyVE .mbr-section-subtitle {
  text-align: left;
}
.cid-uaLur5Y7n7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uaLur5Y7n7 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tRqd4qKZIF {
  z-index: 1000;
  width: 100%;
}
.cid-tRqd4qKZIF nav.navbar {
  position: fixed;
}
.cid-tRqd4qKZIF .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-tRqd4qKZIF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRqd4qKZIF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRqd4qKZIF .dropdown-item:hover,
.cid-tRqd4qKZIF .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tRqd4qKZIF .dropdown-item:hover span {
  color: white;
}
.cid-tRqd4qKZIF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRqd4qKZIF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRqd4qKZIF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRqd4qKZIF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRqd4qKZIF .nav-link {
  position: relative;
}
.cid-tRqd4qKZIF .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRqd4qKZIF .container {
    flex-wrap: wrap;
  }
}
.cid-tRqd4qKZIF .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRqd4qKZIF .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tRqd4qKZIF .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRqd4qKZIF .dropdown-menu,
.cid-tRqd4qKZIF .navbar.opened {
  background: #000000 !important;
}
.cid-tRqd4qKZIF .nav-item:focus,
.cid-tRqd4qKZIF .nav-link:focus {
  outline: none;
}
.cid-tRqd4qKZIF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRqd4qKZIF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRqd4qKZIF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRqd4qKZIF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRqd4qKZIF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRqd4qKZIF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRqd4qKZIF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tRqd4qKZIF .navbar.opened {
  transition: all 0.3s;
}
.cid-tRqd4qKZIF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRqd4qKZIF .navbar .navbar-logo img {
  width: auto;
}
.cid-tRqd4qKZIF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRqd4qKZIF .navbar.collapsed {
  justify-content: center;
}
.cid-tRqd4qKZIF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRqd4qKZIF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRqd4qKZIF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tRqd4qKZIF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRqd4qKZIF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRqd4qKZIF .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-tRqd4qKZIF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRqd4qKZIF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRqd4qKZIF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRqd4qKZIF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRqd4qKZIF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRqd4qKZIF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRqd4qKZIF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRqd4qKZIF .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-tRqd4qKZIF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRqd4qKZIF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRqd4qKZIF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRqd4qKZIF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRqd4qKZIF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRqd4qKZIF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRqd4qKZIF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRqd4qKZIF .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRqd4qKZIF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRqd4qKZIF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRqd4qKZIF .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-tRqd4qKZIF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRqd4qKZIF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRqd4qKZIF .dropdown-item.active,
.cid-tRqd4qKZIF .dropdown-item:active {
  background-color: transparent;
}
.cid-tRqd4qKZIF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRqd4qKZIF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRqd4qKZIF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRqd4qKZIF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tRqd4qKZIF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRqd4qKZIF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRqd4qKZIF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRqd4qKZIF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRqd4qKZIF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRqd4qKZIF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRqd4qKZIF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRqd4qKZIF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRqd4qKZIF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRqd4qKZIF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRqd4qKZIF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRqd4qKZIF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRqd4qKZIF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRqd4qKZIF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRqd4qKZIF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRqd4qKZIF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRqd4qKZIF .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-tRqd4qKZIF .navbar {
    height: 70px;
  }
  .cid-tRqd4qKZIF .navbar.opened {
    height: auto;
  }
  .cid-tRqd4qKZIF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRqd4r7UO0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRqd4r7UO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqd4r7UO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqd4r7UO0 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tRqd4r7UO0 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tRqd4r7UO0 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tRqd4r7UO0 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRqd4r7UO0 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tRqd4r7UO0 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tRqd4r7UO0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tRqd4rib3o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRqd4rib3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqd4rib3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqd4rib3o .item {
  padding-bottom: 2rem;
}
.cid-tRqd4rib3o .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tRqd4rib3o .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRqd4rib3o .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tRqd4rib3o .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRqd4rib3o .carousel-control,
.cid-tRqd4rib3o .close {
  background: #1b1b1b;
}
.cid-tRqd4rib3o .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRqd4rib3o .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRqd4rib3o .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRqd4rib3o .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRqd4rib3o .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tRqd4rib3o .close::before {
  content: '\e91a';
}
.cid-tRqd4rib3o .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRqd4rib3o .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tRqd4rib3o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRqd4rib3o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRqd4rib3o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRqd4rib3o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRqd4rib3o .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tRqd4rib3o .carousel-indicators li.active,
.cid-tRqd4rib3o .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRqd4rib3o .carousel-indicators li::after,
.cid-tRqd4rib3o .carousel-indicators li::before {
  content: none;
}
.cid-tRqd4rib3o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRqd4rib3o .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRqd4rib3o .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRqd4rib3o .carousel-indicators {
    display: none;
  }
}
.cid-tRqd4rib3o .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRqd4rib3o .carousel-inner > .active {
  display: block;
}
.cid-tRqd4rib3o .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRqd4rib3o .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRqd4rib3o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRqd4rib3o .carousel-control,
  .cid-tRqd4rib3o .carousel-indicators,
  .cid-tRqd4rib3o .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRqd4rib3o .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRqd4rib3o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRqd4rib3o .carousel-indicators .active,
.cid-tRqd4rib3o .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRqd4rib3o .carousel-indicators .active {
  background: #fff;
}
.cid-tRqd4rib3o .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tRqd4rib3o .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tRqd4rib3o .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tRqd4rib3o .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tRqd4rib3o .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tRqd4rib3o .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tRqd4rib3o .carousel {
  width: 100%;
}
.cid-tRqd4rib3o .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tRqd4rib3o .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tRqd4rib3o .modal.fade .modal-dialog,
.cid-tRqd4rib3o .modal.in .modal-dialog {
  transform: none;
}
.cid-tRqd4rib3o .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tRqd4rib3o H6 {
  text-align: center;
}
.cid-tRqd4sqcVP {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tRqd4sqcVP .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-tRqd4sqcVP form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tRqd4sqcVP form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tRqd4sqcVP form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tRqd4sqcVP .mbr-section-title {
  text-align: center;
}
.cid-tRqd4sBpGJ {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tRqd4sBpGJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqd4sBpGJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqd4sBpGJ .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tRqd4sBpGJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRqd4sBpGJ .row {
    text-align: center;
  }
  .cid-tRqd4sBpGJ .social-row {
    justify-content: center;
  }
}
.cid-tRqd4sBpGJ .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tRqd4sBpGJ .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRqd4sBpGJ .list {
    margin-bottom: 0rem;
  }
}
.cid-tRqd4sBpGJ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tRqd4sBpGJ .mbr-iconfont {
  color: black;
}
.cid-tRqd4sBpGJ H5 {
  color: #ffffff;
}
.cid-tRqd4sBpGJ .mbr-section-subtitle {
  text-align: left;
}
.cid-tRqd4sSfJJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tRqd4sSfJJ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-u82XHrdPze {
  z-index: 1000;
  width: 100%;
}
.cid-u82XHrdPze nav.navbar {
  position: fixed;
}
.cid-u82XHrdPze .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-u82XHrdPze .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u82XHrdPze .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u82XHrdPze .dropdown-item:hover,
.cid-u82XHrdPze .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-u82XHrdPze .dropdown-item:hover span {
  color: white;
}
.cid-u82XHrdPze .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u82XHrdPze .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u82XHrdPze .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u82XHrdPze .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u82XHrdPze .nav-link {
  position: relative;
}
.cid-u82XHrdPze .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u82XHrdPze .container {
    flex-wrap: wrap;
  }
}
.cid-u82XHrdPze .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-u82XHrdPze .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-u82XHrdPze .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u82XHrdPze .dropdown-menu,
.cid-u82XHrdPze .navbar.opened {
  background: #000000 !important;
}
.cid-u82XHrdPze .nav-item:focus,
.cid-u82XHrdPze .nav-link:focus {
  outline: none;
}
.cid-u82XHrdPze .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u82XHrdPze .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u82XHrdPze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u82XHrdPze .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u82XHrdPze .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u82XHrdPze .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u82XHrdPze .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-u82XHrdPze .navbar.opened {
  transition: all 0.3s;
}
.cid-u82XHrdPze .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u82XHrdPze .navbar .navbar-logo img {
  width: auto;
}
.cid-u82XHrdPze .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u82XHrdPze .navbar.collapsed {
  justify-content: center;
}
.cid-u82XHrdPze .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u82XHrdPze .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u82XHrdPze .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-u82XHrdPze .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u82XHrdPze .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u82XHrdPze .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-u82XHrdPze .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u82XHrdPze .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u82XHrdPze .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u82XHrdPze .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u82XHrdPze .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u82XHrdPze .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u82XHrdPze .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u82XHrdPze .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-u82XHrdPze .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u82XHrdPze .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u82XHrdPze .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u82XHrdPze .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u82XHrdPze .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u82XHrdPze .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u82XHrdPze .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u82XHrdPze .navbar.navbar-short {
  min-height: 60px;
}
.cid-u82XHrdPze .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u82XHrdPze .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u82XHrdPze .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-u82XHrdPze .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u82XHrdPze .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u82XHrdPze .dropdown-item.active,
.cid-u82XHrdPze .dropdown-item:active {
  background-color: transparent;
}
.cid-u82XHrdPze .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u82XHrdPze .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u82XHrdPze .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u82XHrdPze .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-u82XHrdPze .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u82XHrdPze .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u82XHrdPze ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u82XHrdPze .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u82XHrdPze button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u82XHrdPze button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u82XHrdPze button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u82XHrdPze button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u82XHrdPze button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u82XHrdPze button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u82XHrdPze nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u82XHrdPze nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u82XHrdPze nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u82XHrdPze nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u82XHrdPze .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u82XHrdPze a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u82XHrdPze .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-u82XHrdPze .navbar {
    height: 70px;
  }
  .cid-u82XHrdPze .navbar.opened {
    height: auto;
  }
  .cid-u82XHrdPze .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u82XHrxF8N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u82XHrxF8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82XHrxF8N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82XHrxF8N .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-u82XHrxF8N .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u82XHrxF8N .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u82XHrxF8N .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u82XHrxF8N .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-u82XHrxF8N .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-u82XHrxF8N .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u82XHrKoXN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u82XHrKoXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82XHrKoXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82XHrKoXN .item {
  padding-bottom: 2rem;
}
.cid-u82XHrKoXN .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-u82XHrKoXN .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-u82XHrKoXN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-u82XHrKoXN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u82XHrKoXN .carousel-control,
.cid-u82XHrKoXN .close {
  background: #1b1b1b;
}
.cid-u82XHrKoXN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u82XHrKoXN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u82XHrKoXN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u82XHrKoXN .carousel-control-next span {
  margin-left: 5px;
}
.cid-u82XHrKoXN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u82XHrKoXN .close::before {
  content: '\e91a';
}
.cid-u82XHrKoXN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u82XHrKoXN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-u82XHrKoXN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u82XHrKoXN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u82XHrKoXN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u82XHrKoXN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u82XHrKoXN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u82XHrKoXN .carousel-indicators li.active,
.cid-u82XHrKoXN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u82XHrKoXN .carousel-indicators li::after,
.cid-u82XHrKoXN .carousel-indicators li::before {
  content: none;
}
.cid-u82XHrKoXN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u82XHrKoXN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u82XHrKoXN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u82XHrKoXN .carousel-indicators {
    display: none;
  }
}
.cid-u82XHrKoXN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u82XHrKoXN .carousel-inner > .active {
  display: block;
}
.cid-u82XHrKoXN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u82XHrKoXN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u82XHrKoXN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u82XHrKoXN .carousel-control,
  .cid-u82XHrKoXN .carousel-indicators,
  .cid-u82XHrKoXN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-u82XHrKoXN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-u82XHrKoXN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u82XHrKoXN .carousel-indicators .active,
.cid-u82XHrKoXN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u82XHrKoXN .carousel-indicators .active {
  background: #fff;
}
.cid-u82XHrKoXN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u82XHrKoXN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u82XHrKoXN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u82XHrKoXN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u82XHrKoXN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u82XHrKoXN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u82XHrKoXN .carousel {
  width: 100%;
}
.cid-u82XHrKoXN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u82XHrKoXN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u82XHrKoXN .modal.fade .modal-dialog,
.cid-u82XHrKoXN .modal.in .modal-dialog {
  transform: none;
}
.cid-u82XHrKoXN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u82XHrKoXN H6 {
  text-align: center;
}
.cid-u82XHsLFkW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-u82XHsLFkW .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u82XHsLFkW form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-u82XHsLFkW form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-u82XHsLFkW form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-u82XHsLFkW .mbr-section-title {
  text-align: center;
}
.cid-u82XHsWJkn {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-u82XHsWJkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u82XHsWJkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u82XHsWJkn .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-u82XHsWJkn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u82XHsWJkn .row {
    text-align: center;
  }
  .cid-u82XHsWJkn .social-row {
    justify-content: center;
  }
}
.cid-u82XHsWJkn .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-u82XHsWJkn .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u82XHsWJkn .list {
    margin-bottom: 0rem;
  }
}
.cid-u82XHsWJkn .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u82XHsWJkn .mbr-iconfont {
  color: black;
}
.cid-u82XHsWJkn H5 {
  color: #ffffff;
}
.cid-u82XHsWJkn .mbr-section-subtitle {
  text-align: left;
}
.cid-u82XHtcJ9S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-u82XHtcJ9S .mbr-text {
  text-align: center;
}
.cid-tRqkI6TinI {
  z-index: 1000;
  width: 100%;
}
.cid-tRqkI6TinI nav.navbar {
  position: fixed;
}
.cid-tRqkI6TinI .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-tRqkI6TinI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tRqkI6TinI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tRqkI6TinI .dropdown-item:hover,
.cid-tRqkI6TinI .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tRqkI6TinI .dropdown-item:hover span {
  color: white;
}
.cid-tRqkI6TinI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tRqkI6TinI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tRqkI6TinI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tRqkI6TinI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tRqkI6TinI .nav-link {
  position: relative;
}
.cid-tRqkI6TinI .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRqkI6TinI .container {
    flex-wrap: wrap;
  }
}
.cid-tRqkI6TinI .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tRqkI6TinI .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tRqkI6TinI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tRqkI6TinI .dropdown-menu,
.cid-tRqkI6TinI .navbar.opened {
  background: #000000 !important;
}
.cid-tRqkI6TinI .nav-item:focus,
.cid-tRqkI6TinI .nav-link:focus {
  outline: none;
}
.cid-tRqkI6TinI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tRqkI6TinI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tRqkI6TinI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tRqkI6TinI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tRqkI6TinI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRqkI6TinI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tRqkI6TinI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tRqkI6TinI .navbar.opened {
  transition: all 0.3s;
}
.cid-tRqkI6TinI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tRqkI6TinI .navbar .navbar-logo img {
  width: auto;
}
.cid-tRqkI6TinI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRqkI6TinI .navbar.collapsed {
  justify-content: center;
}
.cid-tRqkI6TinI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRqkI6TinI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRqkI6TinI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tRqkI6TinI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tRqkI6TinI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tRqkI6TinI .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-tRqkI6TinI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRqkI6TinI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tRqkI6TinI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tRqkI6TinI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRqkI6TinI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRqkI6TinI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRqkI6TinI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tRqkI6TinI .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-tRqkI6TinI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tRqkI6TinI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRqkI6TinI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tRqkI6TinI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tRqkI6TinI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tRqkI6TinI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tRqkI6TinI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tRqkI6TinI .navbar.navbar-short {
  min-height: 60px;
}
.cid-tRqkI6TinI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tRqkI6TinI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tRqkI6TinI .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-tRqkI6TinI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRqkI6TinI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRqkI6TinI .dropdown-item.active,
.cid-tRqkI6TinI .dropdown-item:active {
  background-color: transparent;
}
.cid-tRqkI6TinI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tRqkI6TinI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tRqkI6TinI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRqkI6TinI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tRqkI6TinI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRqkI6TinI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRqkI6TinI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tRqkI6TinI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tRqkI6TinI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tRqkI6TinI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tRqkI6TinI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tRqkI6TinI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRqkI6TinI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tRqkI6TinI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tRqkI6TinI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRqkI6TinI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tRqkI6TinI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tRqkI6TinI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tRqkI6TinI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tRqkI6TinI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tRqkI6TinI .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-tRqkI6TinI .navbar {
    height: 70px;
  }
  .cid-tRqkI6TinI .navbar.opened {
    height: auto;
  }
  .cid-tRqkI6TinI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tRqkI7e1L9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRqkI7e1L9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqkI7e1L9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqkI7e1L9 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tRqkI7e1L9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tRqkI7e1L9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tRqkI7e1L9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRqkI7e1L9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tRqkI7e1L9 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tRqkI7e1L9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tRqkI7tgDi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tRqkI7tgDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqkI7tgDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqkI7tgDi .item {
  padding-bottom: 2rem;
}
.cid-tRqkI7tgDi .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tRqkI7tgDi .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tRqkI7tgDi .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tRqkI7tgDi .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tRqkI7tgDi .carousel-control,
.cid-tRqkI7tgDi .close {
  background: #1b1b1b;
}
.cid-tRqkI7tgDi .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tRqkI7tgDi .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tRqkI7tgDi .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tRqkI7tgDi .carousel-control-next span {
  margin-left: 5px;
}
.cid-tRqkI7tgDi .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tRqkI7tgDi .close::before {
  content: '\e91a';
}
.cid-tRqkI7tgDi .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tRqkI7tgDi .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tRqkI7tgDi .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRqkI7tgDi .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRqkI7tgDi .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tRqkI7tgDi .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tRqkI7tgDi .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tRqkI7tgDi .carousel-indicators li.active,
.cid-tRqkI7tgDi .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tRqkI7tgDi .carousel-indicators li::after,
.cid-tRqkI7tgDi .carousel-indicators li::before {
  content: none;
}
.cid-tRqkI7tgDi .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tRqkI7tgDi .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tRqkI7tgDi .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tRqkI7tgDi .carousel-indicators {
    display: none;
  }
}
.cid-tRqkI7tgDi .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tRqkI7tgDi .carousel-inner > .active {
  display: block;
}
.cid-tRqkI7tgDi .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tRqkI7tgDi .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tRqkI7tgDi .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tRqkI7tgDi .carousel-control,
  .cid-tRqkI7tgDi .carousel-indicators,
  .cid-tRqkI7tgDi .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tRqkI7tgDi .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tRqkI7tgDi .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tRqkI7tgDi .carousel-indicators .active,
.cid-tRqkI7tgDi .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tRqkI7tgDi .carousel-indicators .active {
  background: #fff;
}
.cid-tRqkI7tgDi .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tRqkI7tgDi .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tRqkI7tgDi .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tRqkI7tgDi .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tRqkI7tgDi .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tRqkI7tgDi .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tRqkI7tgDi .carousel {
  width: 100%;
}
.cid-tRqkI7tgDi .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tRqkI7tgDi .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tRqkI7tgDi .modal.fade .modal-dialog,
.cid-tRqkI7tgDi .modal.in .modal-dialog {
  transform: none;
}
.cid-tRqkI7tgDi .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tRqkI7tgDi H6 {
  text-align: center;
}
.cid-tRqkI8n6pq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-tRqkI8n6pq .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.3;
}
.cid-tRqkI8n6pq form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tRqkI8n6pq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tRqkI8n6pq form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tRqkI8n6pq .mbr-section-title {
  text-align: center;
}
.cid-tRqkI8AxCa {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tRqkI8AxCa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tRqkI8AxCa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tRqkI8AxCa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tRqkI8AxCa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tRqkI8AxCa .row {
    text-align: center;
  }
  .cid-tRqkI8AxCa .social-row {
    justify-content: center;
  }
}
.cid-tRqkI8AxCa .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tRqkI8AxCa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tRqkI8AxCa .list {
    margin-bottom: 0rem;
  }
}
.cid-tRqkI8AxCa .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tRqkI8AxCa .mbr-iconfont {
  color: black;
}
.cid-tRqkI8AxCa H5 {
  color: #ffffff;
}
.cid-tRqkI8AxCa .mbr-section-subtitle {
  text-align: left;
}
.cid-tRqkI8P40x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tRqkI8P40x .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tvJze61ErW {
  z-index: 1000;
  width: 100%;
}
.cid-tvJze61ErW nav.navbar {
  position: fixed;
}
.cid-tvJze61ErW .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-tvJze61ErW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvJze61ErW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvJze61ErW .dropdown-item:hover,
.cid-tvJze61ErW .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tvJze61ErW .dropdown-item:hover span {
  color: white;
}
.cid-tvJze61ErW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvJze61ErW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvJze61ErW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvJze61ErW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvJze61ErW .nav-link {
  position: relative;
}
.cid-tvJze61ErW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tvJze61ErW .container {
    flex-wrap: wrap;
  }
}
.cid-tvJze61ErW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tvJze61ErW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tvJze61ErW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvJze61ErW .dropdown-menu,
.cid-tvJze61ErW .navbar.opened {
  background: #000000 !important;
}
.cid-tvJze61ErW .nav-item:focus,
.cid-tvJze61ErW .nav-link:focus {
  outline: none;
}
.cid-tvJze61ErW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvJze61ErW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvJze61ErW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvJze61ErW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvJze61ErW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvJze61ErW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvJze61ErW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tvJze61ErW .navbar.opened {
  transition: all 0.3s;
}
.cid-tvJze61ErW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvJze61ErW .navbar .navbar-logo img {
  width: auto;
}
.cid-tvJze61ErW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvJze61ErW .navbar.collapsed {
  justify-content: center;
}
.cid-tvJze61ErW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvJze61ErW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvJze61ErW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tvJze61ErW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvJze61ErW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvJze61ErW .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-tvJze61ErW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvJze61ErW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvJze61ErW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvJze61ErW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvJze61ErW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvJze61ErW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvJze61ErW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvJze61ErW .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-tvJze61ErW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvJze61ErW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvJze61ErW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvJze61ErW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvJze61ErW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvJze61ErW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tvJze61ErW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tvJze61ErW .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvJze61ErW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvJze61ErW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvJze61ErW .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-tvJze61ErW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvJze61ErW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvJze61ErW .dropdown-item.active,
.cid-tvJze61ErW .dropdown-item:active {
  background-color: transparent;
}
.cid-tvJze61ErW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvJze61ErW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvJze61ErW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvJze61ErW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tvJze61ErW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvJze61ErW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvJze61ErW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvJze61ErW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvJze61ErW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvJze61ErW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvJze61ErW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvJze61ErW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvJze61ErW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvJze61ErW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvJze61ErW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvJze61ErW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvJze61ErW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvJze61ErW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvJze61ErW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvJze61ErW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvJze61ErW .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-tvJze61ErW .navbar {
    height: 70px;
  }
  .cid-tvJze61ErW .navbar.opened {
    height: auto;
  }
  .cid-tvJze61ErW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvJze6l1PE {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tvJze6l1PE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvJze6l1PE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvJze6l1PE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tvJze6l1PE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tvJze6l1PE .row {
    text-align: center;
  }
  .cid-tvJze6l1PE .social-row {
    justify-content: center;
  }
}
.cid-tvJze6l1PE .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tvJze6l1PE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvJze6l1PE .list {
    margin-bottom: 0rem;
  }
}
.cid-tvJze6l1PE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tvJze6l1PE .mbr-iconfont {
  color: black;
}
.cid-tvJze6l1PE H5 {
  color: #ffffff;
}
.cid-tvJze6l1PE .mbr-section-subtitle {
  text-align: left;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-twMXsnoO8m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-turqLAJasd {
  z-index: 1000;
  width: 100%;
}
.cid-turqLAJasd nav.navbar {
  position: fixed;
}
.cid-turqLAJasd .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-turqLAJasd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-turqLAJasd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-turqLAJasd .dropdown-item:hover,
.cid-turqLAJasd .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-turqLAJasd .dropdown-item:hover span {
  color: white;
}
.cid-turqLAJasd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-turqLAJasd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-turqLAJasd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-turqLAJasd .nav-link {
  position: relative;
}
.cid-turqLAJasd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-turqLAJasd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-turqLAJasd .dropdown-menu,
.cid-turqLAJasd .navbar.opened {
  background: #000000 !important;
}
.cid-turqLAJasd .nav-item:focus,
.cid-turqLAJasd .nav-link:focus {
  outline: none;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-turqLAJasd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-turqLAJasd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-turqLAJasd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-turqLAJasd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-turqLAJasd .navbar.opened {
  transition: all 0.3s;
}
.cid-turqLAJasd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-turqLAJasd .navbar .navbar-logo img {
  width: auto;
}
.cid-turqLAJasd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-turqLAJasd .navbar.collapsed {
  justify-content: center;
}
.cid-turqLAJasd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-turqLAJasd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-turqLAJasd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-turqLAJasd .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-turqLAJasd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-turqLAJasd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-turqLAJasd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-turqLAJasd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-turqLAJasd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-turqLAJasd .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-turqLAJasd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-turqLAJasd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-turqLAJasd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-turqLAJasd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-turqLAJasd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-turqLAJasd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-turqLAJasd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-turqLAJasd .navbar.navbar-short {
  min-height: 60px;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-turqLAJasd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-turqLAJasd .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-turqLAJasd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-turqLAJasd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-turqLAJasd .dropdown-item.active,
.cid-turqLAJasd .dropdown-item:active {
  background-color: transparent;
}
.cid-turqLAJasd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-turqLAJasd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-turqLAJasd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-turqLAJasd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-turqLAJasd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-turqLAJasd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-turqLAJasd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-turqLAJasd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-turqLAJasd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-turqLAJasd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-turqLAJasd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-turqLAJasd .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-turqLAJasd .navbar {
    height: 70px;
  }
  .cid-turqLAJasd .navbar.opened {
    height: auto;
  }
  .cid-turqLAJasd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utrcckhRte {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utrcckhRte .mbr-fallback-image.disabled {
  display: none;
}
.cid-utrcckhRte .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utrcdWeoKT {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utrlkR1bvS {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-utrlkR1bvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-utrlkR1bvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utrlkR1bvS .video-wrapper iframe {
  width: 100%;
}
.cid-utrlkR1bvS .mbr-section-title,
.cid-utrlkR1bvS .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-utrlkR1bvS .text-wrapper {
    padding: 2rem;
  }
}
.cid-utrlkR1bvS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-utrlkR1bvS .mbr-text {
  color: #fafafa;
}
.cid-utrcgPeNg0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-utrcgPeNg0 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-utrd4zkjkm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-utrd4zkjkm .mbr-overlay {
  background-color: #353535;
  opacity: 0.9;
}
.cid-utrd4zkjkm form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utrd4zkjkm form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utrd4zkjkm form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utrd4zkjkm .mbr-section-title {
  text-align: center;
}
.cid-turt0YEYxG {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-turt0YEYxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-turt0YEYxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-turt0YEYxG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-turt0YEYxG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-turt0YEYxG .row {
    text-align: center;
  }
  .cid-turt0YEYxG .social-row {
    justify-content: center;
  }
}
.cid-turt0YEYxG .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turt0YEYxG .list {
    margin-bottom: 0rem;
  }
}
.cid-turt0YEYxG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-turt0YEYxG .mbr-iconfont {
  color: black;
}
.cid-turt0YEYxG H5 {
  color: #ffffff;
}
.cid-turt0YEYxG .mbr-section-subtitle {
  text-align: left;
}
.cid-utrF7icahy {
  z-index: 1000;
  width: 100%;
}
.cid-utrF7icahy nav.navbar {
  position: fixed;
}
.cid-utrF7icahy .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-utrF7icahy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utrF7icahy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utrF7icahy .dropdown-item:hover,
.cid-utrF7icahy .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-utrF7icahy .dropdown-item:hover span {
  color: white;
}
.cid-utrF7icahy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utrF7icahy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utrF7icahy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utrF7icahy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utrF7icahy .nav-link {
  position: relative;
}
.cid-utrF7icahy .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-utrF7icahy .container {
    flex-wrap: wrap;
  }
}
.cid-utrF7icahy .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-utrF7icahy .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-utrF7icahy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utrF7icahy .dropdown-menu,
.cid-utrF7icahy .navbar.opened {
  background: #000000 !important;
}
.cid-utrF7icahy .nav-item:focus,
.cid-utrF7icahy .nav-link:focus {
  outline: none;
}
.cid-utrF7icahy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utrF7icahy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utrF7icahy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utrF7icahy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utrF7icahy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utrF7icahy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utrF7icahy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-utrF7icahy .navbar.opened {
  transition: all 0.3s;
}
.cid-utrF7icahy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utrF7icahy .navbar .navbar-logo img {
  width: auto;
}
.cid-utrF7icahy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utrF7icahy .navbar.collapsed {
  justify-content: center;
}
.cid-utrF7icahy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utrF7icahy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utrF7icahy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-utrF7icahy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utrF7icahy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utrF7icahy .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-utrF7icahy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utrF7icahy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utrF7icahy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utrF7icahy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utrF7icahy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utrF7icahy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utrF7icahy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utrF7icahy .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-utrF7icahy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utrF7icahy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utrF7icahy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utrF7icahy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utrF7icahy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utrF7icahy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-utrF7icahy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-utrF7icahy .navbar.navbar-short {
  min-height: 60px;
}
.cid-utrF7icahy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utrF7icahy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utrF7icahy .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-utrF7icahy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utrF7icahy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utrF7icahy .dropdown-item.active,
.cid-utrF7icahy .dropdown-item:active {
  background-color: transparent;
}
.cid-utrF7icahy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utrF7icahy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utrF7icahy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utrF7icahy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-utrF7icahy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utrF7icahy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utrF7icahy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utrF7icahy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utrF7icahy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utrF7icahy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-utrF7icahy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utrF7icahy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utrF7icahy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utrF7icahy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utrF7icahy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utrF7icahy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utrF7icahy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utrF7icahy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utrF7icahy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utrF7icahy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utrF7icahy .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-utrF7icahy .navbar {
    height: 70px;
  }
  .cid-utrF7icahy .navbar.opened {
    height: auto;
  }
  .cid-utrF7icahy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utrF7iv0WO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utrF7iv0WO .mbr-fallback-image.disabled {
  display: none;
}
.cid-utrF7iv0WO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utrF7iK4t0 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uxvIjqF30S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uxvIjqF30S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxvIjqF30S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utrF7jbuwH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-utrF7jbuwH .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-utrF7jjFB5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-utrF7jjFB5 .mbr-overlay {
  background-color: #232323;
  opacity: 0.8;
}
.cid-utrF7jjFB5 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utrF7jjFB5 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utrF7jjFB5 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-utrF7jjFB5 .mbr-section-title {
  text-align: center;
}
.cid-utrF7jwtX1 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-utrF7jwtX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utrF7jwtX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utrF7jwtX1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-utrF7jwtX1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utrF7jwtX1 .row {
    text-align: center;
  }
  .cid-utrF7jwtX1 .social-row {
    justify-content: center;
  }
}
.cid-utrF7jwtX1 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-utrF7jwtX1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-utrF7jwtX1 .list {
    margin-bottom: 0rem;
  }
}
.cid-utrF7jwtX1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-utrF7jwtX1 .mbr-iconfont {
  color: black;
}
.cid-utrF7jwtX1 H5 {
  color: #ffffff;
}
.cid-utrF7jwtX1 .mbr-section-subtitle {
  text-align: left;
}
.cid-uwVAsoTTCx {
  z-index: 1000;
  width: 100%;
}
.cid-uwVAsoTTCx nav.navbar {
  position: fixed;
}
.cid-uwVAsoTTCx .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-uwVAsoTTCx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwVAsoTTCx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwVAsoTTCx .dropdown-item:hover,
.cid-uwVAsoTTCx .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uwVAsoTTCx .dropdown-item:hover span {
  color: white;
}
.cid-uwVAsoTTCx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwVAsoTTCx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwVAsoTTCx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwVAsoTTCx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwVAsoTTCx .nav-link {
  position: relative;
}
.cid-uwVAsoTTCx .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwVAsoTTCx .container {
    flex-wrap: wrap;
  }
}
.cid-uwVAsoTTCx .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwVAsoTTCx .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwVAsoTTCx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwVAsoTTCx .dropdown-menu,
.cid-uwVAsoTTCx .navbar.opened {
  background: #000000 !important;
}
.cid-uwVAsoTTCx .nav-item:focus,
.cid-uwVAsoTTCx .nav-link:focus {
  outline: none;
}
.cid-uwVAsoTTCx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwVAsoTTCx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwVAsoTTCx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwVAsoTTCx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwVAsoTTCx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwVAsoTTCx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwVAsoTTCx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uwVAsoTTCx .navbar.opened {
  transition: all 0.3s;
}
.cid-uwVAsoTTCx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwVAsoTTCx .navbar .navbar-logo img {
  width: auto;
}
.cid-uwVAsoTTCx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwVAsoTTCx .navbar.collapsed {
  justify-content: center;
}
.cid-uwVAsoTTCx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwVAsoTTCx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwVAsoTTCx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uwVAsoTTCx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwVAsoTTCx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwVAsoTTCx .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-uwVAsoTTCx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwVAsoTTCx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwVAsoTTCx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwVAsoTTCx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwVAsoTTCx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwVAsoTTCx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwVAsoTTCx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwVAsoTTCx .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-uwVAsoTTCx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwVAsoTTCx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwVAsoTTCx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwVAsoTTCx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwVAsoTTCx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwVAsoTTCx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwVAsoTTCx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwVAsoTTCx .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwVAsoTTCx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwVAsoTTCx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwVAsoTTCx .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-uwVAsoTTCx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwVAsoTTCx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwVAsoTTCx .dropdown-item.active,
.cid-uwVAsoTTCx .dropdown-item:active {
  background-color: transparent;
}
.cid-uwVAsoTTCx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwVAsoTTCx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwVAsoTTCx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwVAsoTTCx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwVAsoTTCx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwVAsoTTCx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwVAsoTTCx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwVAsoTTCx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwVAsoTTCx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwVAsoTTCx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwVAsoTTCx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwVAsoTTCx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwVAsoTTCx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwVAsoTTCx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwVAsoTTCx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwVAsoTTCx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwVAsoTTCx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwVAsoTTCx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwVAsoTTCx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwVAsoTTCx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwVAsoTTCx .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-uwVAsoTTCx .navbar {
    height: 70px;
  }
  .cid-uwVAsoTTCx .navbar.opened {
    height: auto;
  }
  .cid-uwVAsoTTCx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwVAsphkq9 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uwVAsphkq9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwVAsphkq9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwVAsphkq9 .mbr-section-title {
  color: #000000;
}
.cid-uwVLNgtpVi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uwVLNgtpVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwVLNgtpVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwVLNgtpVi .text-wrapper {
    padding: 2rem;
  }
}
.cid-uwVLNgtpVi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uwVLNgtpVi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uwVLNgtpVi .mbr-text {
  color: #ffffff;
}
.cid-uwVLNgtpVi .position {
  color: #ffffff;
}
.cid-uwVLNgtpVi .name {
  color: #ffffff;
}
.cid-uwVAspx9HO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwVAsq1Bo6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uwVAsq1Bo6 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uwVAsqbWcV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-uwVAsqbWcV .mbr-overlay {
  background-color: #232323;
  opacity: 0.8;
}
.cid-uwVAsqbWcV form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uwVAsqbWcV form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uwVAsqbWcV form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uwVAsqbWcV .mbr-section-title {
  text-align: center;
}
.cid-uwVAsqrOzu {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uwVAsqrOzu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwVAsqrOzu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwVAsqrOzu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uwVAsqrOzu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwVAsqrOzu .row {
    text-align: center;
  }
  .cid-uwVAsqrOzu .social-row {
    justify-content: center;
  }
}
.cid-uwVAsqrOzu .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uwVAsqrOzu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwVAsqrOzu .list {
    margin-bottom: 0rem;
  }
}
.cid-uwVAsqrOzu .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwVAsqrOzu .mbr-iconfont {
  color: black;
}
.cid-uwVAsqrOzu H5 {
  color: #ffffff;
}
.cid-uwVAsqrOzu .mbr-section-subtitle {
  text-align: left;
}
.cid-uwXKCgnGPm {
  z-index: 1000;
  width: 100%;
}
.cid-uwXKCgnGPm nav.navbar {
  position: fixed;
}
.cid-uwXKCgnGPm .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-uwXKCgnGPm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwXKCgnGPm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwXKCgnGPm .dropdown-item:hover,
.cid-uwXKCgnGPm .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uwXKCgnGPm .dropdown-item:hover span {
  color: white;
}
.cid-uwXKCgnGPm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwXKCgnGPm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwXKCgnGPm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwXKCgnGPm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwXKCgnGPm .nav-link {
  position: relative;
}
.cid-uwXKCgnGPm .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXKCgnGPm .container {
    flex-wrap: wrap;
  }
}
.cid-uwXKCgnGPm .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXKCgnGPm .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwXKCgnGPm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwXKCgnGPm .dropdown-menu,
.cid-uwXKCgnGPm .navbar.opened {
  background: #000000 !important;
}
.cid-uwXKCgnGPm .nav-item:focus,
.cid-uwXKCgnGPm .nav-link:focus {
  outline: none;
}
.cid-uwXKCgnGPm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwXKCgnGPm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwXKCgnGPm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwXKCgnGPm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwXKCgnGPm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwXKCgnGPm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwXKCgnGPm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uwXKCgnGPm .navbar.opened {
  transition: all 0.3s;
}
.cid-uwXKCgnGPm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwXKCgnGPm .navbar .navbar-logo img {
  width: auto;
}
.cid-uwXKCgnGPm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwXKCgnGPm .navbar.collapsed {
  justify-content: center;
}
.cid-uwXKCgnGPm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwXKCgnGPm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwXKCgnGPm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uwXKCgnGPm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwXKCgnGPm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwXKCgnGPm .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-uwXKCgnGPm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwXKCgnGPm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwXKCgnGPm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwXKCgnGPm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwXKCgnGPm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwXKCgnGPm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwXKCgnGPm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwXKCgnGPm .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-uwXKCgnGPm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwXKCgnGPm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwXKCgnGPm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwXKCgnGPm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwXKCgnGPm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwXKCgnGPm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwXKCgnGPm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwXKCgnGPm .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwXKCgnGPm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwXKCgnGPm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwXKCgnGPm .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-uwXKCgnGPm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwXKCgnGPm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwXKCgnGPm .dropdown-item.active,
.cid-uwXKCgnGPm .dropdown-item:active {
  background-color: transparent;
}
.cid-uwXKCgnGPm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwXKCgnGPm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwXKCgnGPm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwXKCgnGPm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwXKCgnGPm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwXKCgnGPm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwXKCgnGPm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwXKCgnGPm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwXKCgnGPm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwXKCgnGPm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwXKCgnGPm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwXKCgnGPm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXKCgnGPm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXKCgnGPm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwXKCgnGPm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXKCgnGPm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwXKCgnGPm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwXKCgnGPm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXKCgnGPm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwXKCgnGPm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwXKCgnGPm .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-uwXKCgnGPm .navbar {
    height: 70px;
  }
  .cid-uwXKCgnGPm .navbar.opened {
    height: auto;
  }
  .cid-uwXKCgnGPm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwXKCgQaLG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXKCgQaLG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXKCgQaLG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXKCgQaLG .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uwXKCgQaLG .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXKCgQaLG .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwXKCgQaLG .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXKCgQaLG .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uwXKCgQaLG .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uwXKCgQaLG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwXKCh6GW4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXKCh6GW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXKCh6GW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXKCh6GW4 .item {
  padding-bottom: 2rem;
}
.cid-uwXKCh6GW4 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uwXKCh6GW4 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uwXKCh6GW4 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uwXKCh6GW4 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uwXKCh6GW4 .carousel-control,
.cid-uwXKCh6GW4 .close {
  background: #1b1b1b;
}
.cid-uwXKCh6GW4 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uwXKCh6GW4 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uwXKCh6GW4 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uwXKCh6GW4 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uwXKCh6GW4 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uwXKCh6GW4 .close::before {
  content: '\e91a';
}
.cid-uwXKCh6GW4 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uwXKCh6GW4 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uwXKCh6GW4 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXKCh6GW4 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXKCh6GW4 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uwXKCh6GW4 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uwXKCh6GW4 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uwXKCh6GW4 .carousel-indicators li.active,
.cid-uwXKCh6GW4 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uwXKCh6GW4 .carousel-indicators li::after,
.cid-uwXKCh6GW4 .carousel-indicators li::before {
  content: none;
}
.cid-uwXKCh6GW4 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uwXKCh6GW4 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uwXKCh6GW4 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXKCh6GW4 .carousel-indicators {
    display: none;
  }
}
.cid-uwXKCh6GW4 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uwXKCh6GW4 .carousel-inner > .active {
  display: block;
}
.cid-uwXKCh6GW4 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXKCh6GW4 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uwXKCh6GW4 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uwXKCh6GW4 .carousel-control,
  .cid-uwXKCh6GW4 .carousel-indicators,
  .cid-uwXKCh6GW4 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uwXKCh6GW4 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uwXKCh6GW4 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uwXKCh6GW4 .carousel-indicators .active,
.cid-uwXKCh6GW4 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uwXKCh6GW4 .carousel-indicators .active {
  background: #fff;
}
.cid-uwXKCh6GW4 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uwXKCh6GW4 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uwXKCh6GW4 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uwXKCh6GW4 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uwXKCh6GW4 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uwXKCh6GW4 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uwXKCh6GW4 .carousel {
  width: 100%;
}
.cid-uwXKCh6GW4 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uwXKCh6GW4 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uwXKCh6GW4 .modal.fade .modal-dialog,
.cid-uwXKCh6GW4 .modal.in .modal-dialog {
  transform: none;
}
.cid-uwXKCh6GW4 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uwXKCh6GW4 H6 {
  text-align: center;
}
.cid-uwXKChF6dz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-uwXKChF6dz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uwXKChF6dz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uwXKChF6dz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uwXKChF6dz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uwXKChF6dz .mbr-section-title {
  text-align: center;
}
.cid-uwXKChTHjE {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uwXKChTHjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXKChTHjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXKChTHjE .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uwXKChTHjE .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXKChTHjE .row {
    text-align: center;
  }
  .cid-uwXKChTHjE .social-row {
    justify-content: center;
  }
}
.cid-uwXKChTHjE .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uwXKChTHjE .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXKChTHjE .list {
    margin-bottom: 0rem;
  }
}
.cid-uwXKChTHjE .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwXKChTHjE .mbr-iconfont {
  color: black;
}
.cid-uwXKChTHjE H5 {
  color: #ffffff;
}
.cid-uwXKChTHjE .mbr-section-subtitle {
  text-align: left;
}
.cid-uwXKCie9dG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uwXKCie9dG .mbr-text {
  text-align: center;
}
.cid-uxv7hkMdMD {
  z-index: 1000;
  width: 100%;
}
.cid-uxv7hkMdMD nav.navbar {
  position: fixed;
}
.cid-uxv7hkMdMD .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-uxv7hkMdMD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uxv7hkMdMD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uxv7hkMdMD .dropdown-item:hover,
.cid-uxv7hkMdMD .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uxv7hkMdMD .dropdown-item:hover span {
  color: white;
}
.cid-uxv7hkMdMD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uxv7hkMdMD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uxv7hkMdMD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uxv7hkMdMD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uxv7hkMdMD .nav-link {
  position: relative;
}
.cid-uxv7hkMdMD .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxv7hkMdMD .container {
    flex-wrap: wrap;
  }
}
.cid-uxv7hkMdMD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uxv7hkMdMD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uxv7hkMdMD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uxv7hkMdMD .dropdown-menu,
.cid-uxv7hkMdMD .navbar.opened {
  background: #000000 !important;
}
.cid-uxv7hkMdMD .nav-item:focus,
.cid-uxv7hkMdMD .nav-link:focus {
  outline: none;
}
.cid-uxv7hkMdMD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uxv7hkMdMD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uxv7hkMdMD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uxv7hkMdMD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uxv7hkMdMD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uxv7hkMdMD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uxv7hkMdMD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uxv7hkMdMD .navbar.opened {
  transition: all 0.3s;
}
.cid-uxv7hkMdMD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uxv7hkMdMD .navbar .navbar-logo img {
  width: auto;
}
.cid-uxv7hkMdMD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uxv7hkMdMD .navbar.collapsed {
  justify-content: center;
}
.cid-uxv7hkMdMD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uxv7hkMdMD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uxv7hkMdMD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uxv7hkMdMD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uxv7hkMdMD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uxv7hkMdMD .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-uxv7hkMdMD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uxv7hkMdMD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uxv7hkMdMD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uxv7hkMdMD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uxv7hkMdMD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uxv7hkMdMD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uxv7hkMdMD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uxv7hkMdMD .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-uxv7hkMdMD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uxv7hkMdMD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uxv7hkMdMD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uxv7hkMdMD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uxv7hkMdMD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uxv7hkMdMD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uxv7hkMdMD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uxv7hkMdMD .navbar.navbar-short {
  min-height: 60px;
}
.cid-uxv7hkMdMD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uxv7hkMdMD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uxv7hkMdMD .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-uxv7hkMdMD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uxv7hkMdMD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uxv7hkMdMD .dropdown-item.active,
.cid-uxv7hkMdMD .dropdown-item:active {
  background-color: transparent;
}
.cid-uxv7hkMdMD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uxv7hkMdMD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uxv7hkMdMD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uxv7hkMdMD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uxv7hkMdMD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uxv7hkMdMD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uxv7hkMdMD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uxv7hkMdMD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uxv7hkMdMD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uxv7hkMdMD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uxv7hkMdMD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uxv7hkMdMD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxv7hkMdMD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uxv7hkMdMD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uxv7hkMdMD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxv7hkMdMD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uxv7hkMdMD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uxv7hkMdMD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uxv7hkMdMD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uxv7hkMdMD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uxv7hkMdMD .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-uxv7hkMdMD .navbar {
    height: 70px;
  }
  .cid-uxv7hkMdMD .navbar.opened {
    height: auto;
  }
  .cid-uxv7hkMdMD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uxv7hlsBvC {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxv7hlsBvC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxv7hlsBvC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxv7hlsBvC .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uxv7hlsBvC .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uxv7hlsBvC .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uxv7hlsBvC .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxv7hlsBvC .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uxv7hlsBvC .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uxv7hlsBvC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxv7hlW8x2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uxv7hlW8x2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxv7hlW8x2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxv7hlW8x2 .item {
  padding-bottom: 2rem;
}
.cid-uxv7hlW8x2 .item-wrapper {
  position: relative;
}
.cid-uxv7hlW8x2 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uxv7hlW8x2 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uxv7hlW8x2 .carousel-control,
.cid-uxv7hlW8x2 .close {
  background: #1b1b1b;
}
.cid-uxv7hlW8x2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uxv7hlW8x2 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uxv7hlW8x2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uxv7hlW8x2 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uxv7hlW8x2 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxv7hlW8x2 .close::before {
  content: '\e91a';
}
.cid-uxv7hlW8x2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxv7hlW8x2 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uxv7hlW8x2 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxv7hlW8x2 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxv7hlW8x2 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uxv7hlW8x2 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uxv7hlW8x2 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uxv7hlW8x2 .carousel-indicators li.active,
.cid-uxv7hlW8x2 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uxv7hlW8x2 .carousel-indicators li::after,
.cid-uxv7hlW8x2 .carousel-indicators li::before {
  content: none;
}
.cid-uxv7hlW8x2 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uxv7hlW8x2 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uxv7hlW8x2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uxv7hlW8x2 .carousel-indicators {
    display: none;
  }
}
.cid-uxv7hlW8x2 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uxv7hlW8x2 .carousel-inner > .active {
  display: block;
}
.cid-uxv7hlW8x2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uxv7hlW8x2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uxv7hlW8x2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uxv7hlW8x2 .carousel-control,
  .cid-uxv7hlW8x2 .carousel-indicators,
  .cid-uxv7hlW8x2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uxv7hlW8x2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uxv7hlW8x2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uxv7hlW8x2 .carousel-indicators .active,
.cid-uxv7hlW8x2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uxv7hlW8x2 .carousel-indicators .active {
  background: #fff;
}
.cid-uxv7hlW8x2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uxv7hlW8x2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uxv7hlW8x2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uxv7hlW8x2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uxv7hlW8x2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uxv7hlW8x2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uxv7hlW8x2 .carousel {
  width: 100%;
}
.cid-uxv7hlW8x2 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uxv7hlW8x2 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uxv7hlW8x2 .modal.fade .modal-dialog,
.cid-uxv7hlW8x2 .modal.in .modal-dialog {
  transform: none;
}
.cid-uxv7hlW8x2 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uxv7hlW8x2 H6 {
  text-align: center;
}
.cid-uxv7hnBeEp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bac5c4;
}
.cid-uxv7hnBeEp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uxv7hnBeEp form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uxv7hnBeEp form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uxv7hnBeEp form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uxv7hnMtYF {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uxv7hnMtYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxv7hnMtYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxv7hnMtYF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uxv7hnMtYF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uxv7hnMtYF .row {
    text-align: center;
  }
  .cid-uxv7hnMtYF .social-row {
    justify-content: center;
  }
}
.cid-uxv7hnMtYF .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uxv7hnMtYF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxv7hnMtYF .list {
    margin-bottom: 0rem;
  }
}
.cid-uxv7hnMtYF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uxv7hnMtYF .mbr-iconfont {
  color: black;
}
.cid-uxv7hnMtYF H5 {
  color: #ffffff;
}
.cid-uxv7hnMtYF .mbr-section-subtitle {
  text-align: left;
}
.cid-uxv7ho3NBM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uxv7ho3NBM .mbr-text {
  text-align: center;
}
.cid-uwXLDm9b4V {
  z-index: 1000;
  width: 100%;
}
.cid-uwXLDm9b4V nav.navbar {
  position: fixed;
}
.cid-uwXLDm9b4V .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-uwXLDm9b4V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwXLDm9b4V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwXLDm9b4V .dropdown-item:hover,
.cid-uwXLDm9b4V .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uwXLDm9b4V .dropdown-item:hover span {
  color: white;
}
.cid-uwXLDm9b4V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwXLDm9b4V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwXLDm9b4V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwXLDm9b4V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwXLDm9b4V .nav-link {
  position: relative;
}
.cid-uwXLDm9b4V .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXLDm9b4V .container {
    flex-wrap: wrap;
  }
}
.cid-uwXLDm9b4V .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXLDm9b4V .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwXLDm9b4V .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwXLDm9b4V .dropdown-menu,
.cid-uwXLDm9b4V .navbar.opened {
  background: #000000 !important;
}
.cid-uwXLDm9b4V .nav-item:focus,
.cid-uwXLDm9b4V .nav-link:focus {
  outline: none;
}
.cid-uwXLDm9b4V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwXLDm9b4V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwXLDm9b4V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwXLDm9b4V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwXLDm9b4V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwXLDm9b4V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwXLDm9b4V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uwXLDm9b4V .navbar.opened {
  transition: all 0.3s;
}
.cid-uwXLDm9b4V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwXLDm9b4V .navbar .navbar-logo img {
  width: auto;
}
.cid-uwXLDm9b4V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwXLDm9b4V .navbar.collapsed {
  justify-content: center;
}
.cid-uwXLDm9b4V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwXLDm9b4V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwXLDm9b4V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uwXLDm9b4V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwXLDm9b4V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwXLDm9b4V .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-uwXLDm9b4V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwXLDm9b4V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwXLDm9b4V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwXLDm9b4V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwXLDm9b4V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwXLDm9b4V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwXLDm9b4V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwXLDm9b4V .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-uwXLDm9b4V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwXLDm9b4V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwXLDm9b4V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwXLDm9b4V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwXLDm9b4V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwXLDm9b4V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwXLDm9b4V .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwXLDm9b4V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwXLDm9b4V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwXLDm9b4V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwXLDm9b4V .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-uwXLDm9b4V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwXLDm9b4V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwXLDm9b4V .dropdown-item.active,
.cid-uwXLDm9b4V .dropdown-item:active {
  background-color: transparent;
}
.cid-uwXLDm9b4V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwXLDm9b4V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwXLDm9b4V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwXLDm9b4V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwXLDm9b4V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwXLDm9b4V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwXLDm9b4V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwXLDm9b4V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwXLDm9b4V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwXLDm9b4V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwXLDm9b4V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwXLDm9b4V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXLDm9b4V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXLDm9b4V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwXLDm9b4V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXLDm9b4V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwXLDm9b4V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwXLDm9b4V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXLDm9b4V .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwXLDm9b4V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwXLDm9b4V .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-uwXLDm9b4V .navbar {
    height: 70px;
  }
  .cid-uwXLDm9b4V .navbar.opened {
    height: auto;
  }
  .cid-uwXLDm9b4V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwXLDmrhP6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXLDmrhP6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLDmrhP6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLDmrhP6 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uwXLDmrhP6 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXLDmrhP6 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwXLDmrhP6 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXLDmrhP6 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uwXLDmrhP6 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uwXLDmrhP6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwXLDmADn7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXLDmADn7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLDmADn7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLDmADn7 .item {
  padding-bottom: 2rem;
}
.cid-uwXLDmADn7 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uwXLDmADn7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uwXLDmADn7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uwXLDmADn7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uwXLDmADn7 .carousel-control,
.cid-uwXLDmADn7 .close {
  background: #1b1b1b;
}
.cid-uwXLDmADn7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uwXLDmADn7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uwXLDmADn7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uwXLDmADn7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uwXLDmADn7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uwXLDmADn7 .close::before {
  content: '\e91a';
}
.cid-uwXLDmADn7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uwXLDmADn7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uwXLDmADn7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXLDmADn7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXLDmADn7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uwXLDmADn7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uwXLDmADn7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uwXLDmADn7 .carousel-indicators li.active,
.cid-uwXLDmADn7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uwXLDmADn7 .carousel-indicators li::after,
.cid-uwXLDmADn7 .carousel-indicators li::before {
  content: none;
}
.cid-uwXLDmADn7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uwXLDmADn7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uwXLDmADn7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXLDmADn7 .carousel-indicators {
    display: none;
  }
}
.cid-uwXLDmADn7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uwXLDmADn7 .carousel-inner > .active {
  display: block;
}
.cid-uwXLDmADn7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXLDmADn7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uwXLDmADn7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uwXLDmADn7 .carousel-control,
  .cid-uwXLDmADn7 .carousel-indicators,
  .cid-uwXLDmADn7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uwXLDmADn7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uwXLDmADn7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uwXLDmADn7 .carousel-indicators .active,
.cid-uwXLDmADn7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uwXLDmADn7 .carousel-indicators .active {
  background: #fff;
}
.cid-uwXLDmADn7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uwXLDmADn7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uwXLDmADn7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uwXLDmADn7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uwXLDmADn7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uwXLDmADn7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uwXLDmADn7 .carousel {
  width: 100%;
}
.cid-uwXLDmADn7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uwXLDmADn7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uwXLDmADn7 .modal.fade .modal-dialog,
.cid-uwXLDmADn7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uwXLDmADn7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uwXLDmADn7 H6 {
  text-align: center;
}
.cid-uwXLDnrt7b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1280x800px-1280x800.webp");
}
.cid-uwXLDnrt7b .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uwXLDnrt7b form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uwXLDnrt7b form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uwXLDnrt7b form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uwXLDnFBwm {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uwXLDnFBwm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLDnFBwm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLDnFBwm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uwXLDnFBwm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXLDnFBwm .row {
    text-align: center;
  }
  .cid-uwXLDnFBwm .social-row {
    justify-content: center;
  }
}
.cid-uwXLDnFBwm .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uwXLDnFBwm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXLDnFBwm .list {
    margin-bottom: 0rem;
  }
}
.cid-uwXLDnFBwm .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwXLDnFBwm .mbr-iconfont {
  color: black;
}
.cid-uwXLDnFBwm H5 {
  color: #ffffff;
}
.cid-uwXLDnFBwm .mbr-section-subtitle {
  text-align: left;
}
.cid-uwXLDnWEJe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uwXLDnWEJe .mbr-text {
  text-align: center;
}
.cid-uwXLefv8w4 {
  z-index: 1000;
  width: 100%;
}
.cid-uwXLefv8w4 nav.navbar {
  position: fixed;
}
.cid-uwXLefv8w4 .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-uwXLefv8w4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uwXLefv8w4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uwXLefv8w4 .dropdown-item:hover,
.cid-uwXLefv8w4 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uwXLefv8w4 .dropdown-item:hover span {
  color: white;
}
.cid-uwXLefv8w4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uwXLefv8w4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uwXLefv8w4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uwXLefv8w4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uwXLefv8w4 .nav-link {
  position: relative;
}
.cid-uwXLefv8w4 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXLefv8w4 .container {
    flex-wrap: wrap;
  }
}
.cid-uwXLefv8w4 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uwXLefv8w4 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uwXLefv8w4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uwXLefv8w4 .dropdown-menu,
.cid-uwXLefv8w4 .navbar.opened {
  background: #000000 !important;
}
.cid-uwXLefv8w4 .nav-item:focus,
.cid-uwXLefv8w4 .nav-link:focus {
  outline: none;
}
.cid-uwXLefv8w4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uwXLefv8w4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uwXLefv8w4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uwXLefv8w4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uwXLefv8w4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uwXLefv8w4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uwXLefv8w4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uwXLefv8w4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uwXLefv8w4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uwXLefv8w4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uwXLefv8w4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uwXLefv8w4 .navbar.collapsed {
  justify-content: center;
}
.cid-uwXLefv8w4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uwXLefv8w4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uwXLefv8w4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uwXLefv8w4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uwXLefv8w4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uwXLefv8w4 .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-uwXLefv8w4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uwXLefv8w4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uwXLefv8w4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uwXLefv8w4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uwXLefv8w4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uwXLefv8w4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uwXLefv8w4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uwXLefv8w4 .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-uwXLefv8w4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uwXLefv8w4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uwXLefv8w4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uwXLefv8w4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uwXLefv8w4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uwXLefv8w4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uwXLefv8w4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uwXLefv8w4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uwXLefv8w4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uwXLefv8w4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uwXLefv8w4 .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-uwXLefv8w4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uwXLefv8w4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uwXLefv8w4 .dropdown-item.active,
.cid-uwXLefv8w4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uwXLefv8w4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uwXLefv8w4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uwXLefv8w4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uwXLefv8w4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uwXLefv8w4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uwXLefv8w4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uwXLefv8w4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uwXLefv8w4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uwXLefv8w4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uwXLefv8w4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uwXLefv8w4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uwXLefv8w4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXLefv8w4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uwXLefv8w4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uwXLefv8w4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXLefv8w4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uwXLefv8w4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uwXLefv8w4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uwXLefv8w4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uwXLefv8w4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwXLefv8w4 .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-uwXLefv8w4 .navbar {
    height: 70px;
  }
  .cid-uwXLefv8w4 .navbar.opened {
    height: auto;
  }
  .cid-uwXLefv8w4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uwXLefPG2d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXLefPG2d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLefPG2d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLefPG2d .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uwXLefPG2d .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXLefPG2d .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwXLefPG2d .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXLefPG2d .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uwXLefPG2d .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uwXLefPG2d .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uwXLeg2Bx1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwXLeg2Bx1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLeg2Bx1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLeg2Bx1 .item {
  padding-bottom: 2rem;
}
.cid-uwXLeg2Bx1 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uwXLeg2Bx1 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uwXLeg2Bx1 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uwXLeg2Bx1 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uwXLeg2Bx1 .carousel-control,
.cid-uwXLeg2Bx1 .close {
  background: #1b1b1b;
}
.cid-uwXLeg2Bx1 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uwXLeg2Bx1 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uwXLeg2Bx1 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uwXLeg2Bx1 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uwXLeg2Bx1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uwXLeg2Bx1 .close::before {
  content: '\e91a';
}
.cid-uwXLeg2Bx1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uwXLeg2Bx1 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uwXLeg2Bx1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXLeg2Bx1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXLeg2Bx1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uwXLeg2Bx1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uwXLeg2Bx1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uwXLeg2Bx1 .carousel-indicators li.active,
.cid-uwXLeg2Bx1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uwXLeg2Bx1 .carousel-indicators li::after,
.cid-uwXLeg2Bx1 .carousel-indicators li::before {
  content: none;
}
.cid-uwXLeg2Bx1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uwXLeg2Bx1 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uwXLeg2Bx1 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uwXLeg2Bx1 .carousel-indicators {
    display: none;
  }
}
.cid-uwXLeg2Bx1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uwXLeg2Bx1 .carousel-inner > .active {
  display: block;
}
.cid-uwXLeg2Bx1 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uwXLeg2Bx1 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uwXLeg2Bx1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uwXLeg2Bx1 .carousel-control,
  .cid-uwXLeg2Bx1 .carousel-indicators,
  .cid-uwXLeg2Bx1 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uwXLeg2Bx1 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uwXLeg2Bx1 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uwXLeg2Bx1 .carousel-indicators .active,
.cid-uwXLeg2Bx1 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uwXLeg2Bx1 .carousel-indicators .active {
  background: #fff;
}
.cid-uwXLeg2Bx1 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uwXLeg2Bx1 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uwXLeg2Bx1 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uwXLeg2Bx1 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uwXLeg2Bx1 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uwXLeg2Bx1 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uwXLeg2Bx1 .carousel {
  width: 100%;
}
.cid-uwXLeg2Bx1 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uwXLeg2Bx1 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uwXLeg2Bx1 .modal.fade .modal-dialog,
.cid-uwXLeg2Bx1 .modal.in .modal-dialog {
  transform: none;
}
.cid-uwXLeg2Bx1 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uwXLeg2Bx1 H6 {
  text-align: center;
}
.cid-uwXLeh3ZjX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1280x800px-1280x800.webp");
}
.cid-uwXLeh3ZjX .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uwXLeh3ZjX form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uwXLeh3ZjX form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uwXLeh3ZjX form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uwXLehfvYd {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uwXLehfvYd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwXLehfvYd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwXLehfvYd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uwXLehfvYd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uwXLehfvYd .row {
    text-align: center;
  }
  .cid-uwXLehfvYd .social-row {
    justify-content: center;
  }
}
.cid-uwXLehfvYd .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uwXLehfvYd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwXLehfvYd .list {
    margin-bottom: 0rem;
  }
}
.cid-uwXLehfvYd .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uwXLehfvYd .mbr-iconfont {
  color: black;
}
.cid-uwXLehfvYd H5 {
  color: #ffffff;
}
.cid-uwXLehfvYd .mbr-section-subtitle {
  text-align: left;
}
.cid-uwXLehz2vu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uwXLehz2vu .mbr-text {
  text-align: center;
}
.cid-uvYZizn0rE {
  z-index: 1000;
  width: 100%;
}
.cid-uvYZizn0rE nav.navbar {
  position: fixed;
}
.cid-uvYZizn0rE .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-uvYZizn0rE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uvYZizn0rE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uvYZizn0rE .dropdown-item:hover,
.cid-uvYZizn0rE .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uvYZizn0rE .dropdown-item:hover span {
  color: white;
}
.cid-uvYZizn0rE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uvYZizn0rE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uvYZizn0rE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uvYZizn0rE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uvYZizn0rE .nav-link {
  position: relative;
}
.cid-uvYZizn0rE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvYZizn0rE .container {
    flex-wrap: wrap;
  }
}
.cid-uvYZizn0rE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uvYZizn0rE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uvYZizn0rE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uvYZizn0rE .dropdown-menu,
.cid-uvYZizn0rE .navbar.opened {
  background: #000000 !important;
}
.cid-uvYZizn0rE .nav-item:focus,
.cid-uvYZizn0rE .nav-link:focus {
  outline: none;
}
.cid-uvYZizn0rE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uvYZizn0rE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uvYZizn0rE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uvYZizn0rE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uvYZizn0rE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uvYZizn0rE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uvYZizn0rE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uvYZizn0rE .navbar.opened {
  transition: all 0.3s;
}
.cid-uvYZizn0rE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uvYZizn0rE .navbar .navbar-logo img {
  width: auto;
}
.cid-uvYZizn0rE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uvYZizn0rE .navbar.collapsed {
  justify-content: center;
}
.cid-uvYZizn0rE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uvYZizn0rE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uvYZizn0rE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uvYZizn0rE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uvYZizn0rE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uvYZizn0rE .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-uvYZizn0rE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uvYZizn0rE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uvYZizn0rE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uvYZizn0rE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uvYZizn0rE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uvYZizn0rE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uvYZizn0rE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uvYZizn0rE .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-uvYZizn0rE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uvYZizn0rE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uvYZizn0rE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uvYZizn0rE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uvYZizn0rE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uvYZizn0rE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uvYZizn0rE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uvYZizn0rE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uvYZizn0rE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uvYZizn0rE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uvYZizn0rE .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-uvYZizn0rE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uvYZizn0rE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uvYZizn0rE .dropdown-item.active,
.cid-uvYZizn0rE .dropdown-item:active {
  background-color: transparent;
}
.cid-uvYZizn0rE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uvYZizn0rE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uvYZizn0rE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uvYZizn0rE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uvYZizn0rE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uvYZizn0rE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uvYZizn0rE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uvYZizn0rE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uvYZizn0rE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uvYZizn0rE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uvYZizn0rE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uvYZizn0rE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvYZizn0rE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uvYZizn0rE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uvYZizn0rE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvYZizn0rE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uvYZizn0rE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uvYZizn0rE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uvYZizn0rE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uvYZizn0rE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uvYZizn0rE .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-uvYZizn0rE .navbar {
    height: 70px;
  }
  .cid-uvYZizn0rE .navbar.opened {
    height: auto;
  }
  .cid-uvYZizn0rE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvYZizGgRv {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvYZizGgRv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvYZizGgRv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNkFFFvkF {
  background-color: #000000;
}
.cid-uzNkFFFvkF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzNkFFFvkF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzNkFFFvkF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uzNkFFFvkF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzNkFFFvkF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uzNkFFFvkF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uzNkFFFvkF .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzNkFFFvkF .mbr-section-title {
  color: #ffffff;
}
.cid-uzNkFFFvkF .mbr-text,
.cid-uzNkFFFvkF .mbr-section-btn {
  color: #ffffff;
}
.cid-uvYZizWpp3 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uvYZiAhMS7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-uvYZiAhMS7 .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.cid-uvYZiApZYT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-bianco-3-foglie-1920x1080px2-2000x1125.webp");
}
.cid-uvYZiApZYT .mbr-overlay {
  background-color: #232323;
  opacity: 0.8;
}
.cid-uvYZiApZYT form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uvYZiApZYT form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uvYZiApZYT form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uvYZiApZYT .mbr-section-title {
  text-align: center;
}
.cid-uvYZiAzzzj {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uvYZiAzzzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvYZiAzzzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvYZiAzzzj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uvYZiAzzzj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uvYZiAzzzj .row {
    text-align: center;
  }
  .cid-uvYZiAzzzj .social-row {
    justify-content: center;
  }
}
.cid-uvYZiAzzzj .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uvYZiAzzzj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uvYZiAzzzj .list {
    margin-bottom: 0rem;
  }
}
.cid-uvYZiAzzzj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uvYZiAzzzj .mbr-iconfont {
  color: black;
}
.cid-uvYZiAzzzj H5 {
  color: #ffffff;
}
.cid-uvYZiAzzzj .mbr-section-subtitle {
  text-align: left;
}
.cid-uGtJwaFUxE {
  z-index: 1000;
  width: 100%;
}
.cid-uGtJwaFUxE nav.navbar {
  position: fixed;
}
.cid-uGtJwaFUxE .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-uGtJwaFUxE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uGtJwaFUxE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uGtJwaFUxE .dropdown-item:hover,
.cid-uGtJwaFUxE .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uGtJwaFUxE .dropdown-item:hover span {
  color: white;
}
.cid-uGtJwaFUxE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uGtJwaFUxE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uGtJwaFUxE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uGtJwaFUxE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uGtJwaFUxE .nav-link {
  position: relative;
}
.cid-uGtJwaFUxE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGtJwaFUxE .container {
    flex-wrap: wrap;
  }
}
.cid-uGtJwaFUxE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uGtJwaFUxE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uGtJwaFUxE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGtJwaFUxE .dropdown-menu,
.cid-uGtJwaFUxE .navbar.opened {
  background: #000000 !important;
}
.cid-uGtJwaFUxE .nav-item:focus,
.cid-uGtJwaFUxE .nav-link:focus {
  outline: none;
}
.cid-uGtJwaFUxE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGtJwaFUxE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGtJwaFUxE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGtJwaFUxE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGtJwaFUxE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGtJwaFUxE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGtJwaFUxE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uGtJwaFUxE .navbar.opened {
  transition: all 0.3s;
}
.cid-uGtJwaFUxE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGtJwaFUxE .navbar .navbar-logo img {
  width: auto;
}
.cid-uGtJwaFUxE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uGtJwaFUxE .navbar.collapsed {
  justify-content: center;
}
.cid-uGtJwaFUxE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGtJwaFUxE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGtJwaFUxE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uGtJwaFUxE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGtJwaFUxE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGtJwaFUxE .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-uGtJwaFUxE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGtJwaFUxE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGtJwaFUxE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uGtJwaFUxE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGtJwaFUxE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGtJwaFUxE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGtJwaFUxE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGtJwaFUxE .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-uGtJwaFUxE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uGtJwaFUxE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uGtJwaFUxE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGtJwaFUxE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uGtJwaFUxE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGtJwaFUxE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uGtJwaFUxE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uGtJwaFUxE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uGtJwaFUxE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uGtJwaFUxE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uGtJwaFUxE .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-uGtJwaFUxE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGtJwaFUxE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGtJwaFUxE .dropdown-item.active,
.cid-uGtJwaFUxE .dropdown-item:active {
  background-color: transparent;
}
.cid-uGtJwaFUxE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGtJwaFUxE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGtJwaFUxE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGtJwaFUxE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uGtJwaFUxE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uGtJwaFUxE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uGtJwaFUxE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGtJwaFUxE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uGtJwaFUxE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGtJwaFUxE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uGtJwaFUxE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGtJwaFUxE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGtJwaFUxE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGtJwaFUxE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGtJwaFUxE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGtJwaFUxE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGtJwaFUxE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGtJwaFUxE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGtJwaFUxE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uGtJwaFUxE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGtJwaFUxE .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-uGtJwaFUxE .navbar {
    height: 70px;
  }
  .cid-uGtJwaFUxE .navbar.opened {
    height: auto;
  }
  .cid-uGtJwaFUxE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGtJwaZzfi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGtJwaZzfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGtJwaZzfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGtJwaZzfi .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uGtJwaZzfi .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGtJwaZzfi .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uGtJwaZzfi .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGtJwaZzfi .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uGtJwaZzfi .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uGtJwaZzfi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGtJwbct5s {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGtJwbct5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGtJwbct5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGtJwbct5s .item {
  padding-bottom: 2rem;
}
.cid-uGtJwbct5s .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uGtJwbct5s .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uGtJwbct5s .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uGtJwbct5s .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uGtJwbct5s .carousel-control,
.cid-uGtJwbct5s .close {
  background: #1b1b1b;
}
.cid-uGtJwbct5s .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uGtJwbct5s .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uGtJwbct5s .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uGtJwbct5s .carousel-control-next span {
  margin-left: 5px;
}
.cid-uGtJwbct5s .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uGtJwbct5s .close::before {
  content: '\e91a';
}
.cid-uGtJwbct5s .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uGtJwbct5s .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uGtJwbct5s .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uGtJwbct5s .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uGtJwbct5s .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uGtJwbct5s .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uGtJwbct5s .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uGtJwbct5s .carousel-indicators li.active,
.cid-uGtJwbct5s .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uGtJwbct5s .carousel-indicators li::after,
.cid-uGtJwbct5s .carousel-indicators li::before {
  content: none;
}
.cid-uGtJwbct5s .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uGtJwbct5s .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uGtJwbct5s .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uGtJwbct5s .carousel-indicators {
    display: none;
  }
}
.cid-uGtJwbct5s .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uGtJwbct5s .carousel-inner > .active {
  display: block;
}
.cid-uGtJwbct5s .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uGtJwbct5s .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uGtJwbct5s .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uGtJwbct5s .carousel-control,
  .cid-uGtJwbct5s .carousel-indicators,
  .cid-uGtJwbct5s .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uGtJwbct5s .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uGtJwbct5s .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uGtJwbct5s .carousel-indicators .active,
.cid-uGtJwbct5s .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uGtJwbct5s .carousel-indicators .active {
  background: #fff;
}
.cid-uGtJwbct5s .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uGtJwbct5s .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uGtJwbct5s .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uGtJwbct5s .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uGtJwbct5s .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uGtJwbct5s .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uGtJwbct5s .carousel {
  width: 100%;
}
.cid-uGtJwbct5s .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uGtJwbct5s .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uGtJwbct5s .modal.fade .modal-dialog,
.cid-uGtJwbct5s .modal.in .modal-dialog {
  transform: none;
}
.cid-uGtJwbct5s .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uGtJwbct5s H6 {
  text-align: center;
}
.cid-uGtJwbXAXE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-uGtJwbXAXE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uGtJwbXAXE form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uGtJwbXAXE form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uGtJwbXAXE form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uGtJwbXAXE .mbr-section-title {
  text-align: center;
}
.cid-uGtJwcd4Lz {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uGtJwcd4Lz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGtJwcd4Lz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGtJwcd4Lz .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uGtJwcd4Lz .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uGtJwcd4Lz .row {
    text-align: center;
  }
  .cid-uGtJwcd4Lz .social-row {
    justify-content: center;
  }
}
.cid-uGtJwcd4Lz .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uGtJwcd4Lz .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGtJwcd4Lz .list {
    margin-bottom: 0rem;
  }
}
.cid-uGtJwcd4Lz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uGtJwcd4Lz .mbr-iconfont {
  color: black;
}
.cid-uGtJwcd4Lz H5 {
  color: #ffffff;
}
.cid-uGtJwcd4Lz .mbr-section-subtitle {
  text-align: left;
}
.cid-uGtJwcu9s1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uGtJwcu9s1 .mbr-text {
  text-align: center;
}
.cid-uH8ssMEKzW {
  z-index: 1000;
  width: 100%;
}
.cid-uH8ssMEKzW nav.navbar {
  position: fixed;
}
.cid-uH8ssMEKzW .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-uH8ssMEKzW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uH8ssMEKzW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uH8ssMEKzW .dropdown-item:hover,
.cid-uH8ssMEKzW .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uH8ssMEKzW .dropdown-item:hover span {
  color: white;
}
.cid-uH8ssMEKzW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uH8ssMEKzW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uH8ssMEKzW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uH8ssMEKzW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uH8ssMEKzW .nav-link {
  position: relative;
}
.cid-uH8ssMEKzW .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uH8ssMEKzW .container {
    flex-wrap: wrap;
  }
}
.cid-uH8ssMEKzW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uH8ssMEKzW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uH8ssMEKzW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH8ssMEKzW .dropdown-menu,
.cid-uH8ssMEKzW .navbar.opened {
  background: #000000 !important;
}
.cid-uH8ssMEKzW .nav-item:focus,
.cid-uH8ssMEKzW .nav-link:focus {
  outline: none;
}
.cid-uH8ssMEKzW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH8ssMEKzW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH8ssMEKzW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH8ssMEKzW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH8ssMEKzW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH8ssMEKzW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH8ssMEKzW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uH8ssMEKzW .navbar.opened {
  transition: all 0.3s;
}
.cid-uH8ssMEKzW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH8ssMEKzW .navbar .navbar-logo img {
  width: auto;
}
.cid-uH8ssMEKzW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uH8ssMEKzW .navbar.collapsed {
  justify-content: center;
}
.cid-uH8ssMEKzW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH8ssMEKzW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH8ssMEKzW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uH8ssMEKzW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH8ssMEKzW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH8ssMEKzW .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-uH8ssMEKzW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH8ssMEKzW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH8ssMEKzW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uH8ssMEKzW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH8ssMEKzW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH8ssMEKzW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH8ssMEKzW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH8ssMEKzW .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-uH8ssMEKzW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uH8ssMEKzW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uH8ssMEKzW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH8ssMEKzW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uH8ssMEKzW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH8ssMEKzW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uH8ssMEKzW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uH8ssMEKzW .navbar.navbar-short {
  min-height: 60px;
}
.cid-uH8ssMEKzW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uH8ssMEKzW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uH8ssMEKzW .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-uH8ssMEKzW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH8ssMEKzW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH8ssMEKzW .dropdown-item.active,
.cid-uH8ssMEKzW .dropdown-item:active {
  background-color: transparent;
}
.cid-uH8ssMEKzW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH8ssMEKzW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH8ssMEKzW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH8ssMEKzW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uH8ssMEKzW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uH8ssMEKzW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uH8ssMEKzW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH8ssMEKzW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uH8ssMEKzW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH8ssMEKzW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uH8ssMEKzW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH8ssMEKzW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8ssMEKzW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH8ssMEKzW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH8ssMEKzW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8ssMEKzW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH8ssMEKzW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH8ssMEKzW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH8ssMEKzW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uH8ssMEKzW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH8ssMEKzW .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-uH8ssMEKzW .navbar {
    height: 70px;
  }
  .cid-uH8ssMEKzW .navbar.opened {
    height: auto;
  }
  .cid-uH8ssMEKzW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH8ssN5oaj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH8ssN5oaj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8ssN5oaj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8ssN5oaj .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uH8ssN5oaj .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8ssN5oaj .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uH8ssN5oaj .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8ssN5oaj .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uH8ssN5oaj .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uH8ssN5oaj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH8ssNldj5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH8ssNldj5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8ssNldj5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8ssNldj5 .item {
  padding-bottom: 2rem;
}
.cid-uH8ssNldj5 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uH8ssNldj5 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uH8ssNldj5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uH8ssNldj5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uH8ssNldj5 .carousel-control,
.cid-uH8ssNldj5 .close {
  background: #1b1b1b;
}
.cid-uH8ssNldj5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uH8ssNldj5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uH8ssNldj5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uH8ssNldj5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uH8ssNldj5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uH8ssNldj5 .close::before {
  content: '\e91a';
}
.cid-uH8ssNldj5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uH8ssNldj5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uH8ssNldj5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uH8ssNldj5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uH8ssNldj5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uH8ssNldj5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uH8ssNldj5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uH8ssNldj5 .carousel-indicators li.active,
.cid-uH8ssNldj5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uH8ssNldj5 .carousel-indicators li::after,
.cid-uH8ssNldj5 .carousel-indicators li::before {
  content: none;
}
.cid-uH8ssNldj5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uH8ssNldj5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uH8ssNldj5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uH8ssNldj5 .carousel-indicators {
    display: none;
  }
}
.cid-uH8ssNldj5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uH8ssNldj5 .carousel-inner > .active {
  display: block;
}
.cid-uH8ssNldj5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uH8ssNldj5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uH8ssNldj5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uH8ssNldj5 .carousel-control,
  .cid-uH8ssNldj5 .carousel-indicators,
  .cid-uH8ssNldj5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uH8ssNldj5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uH8ssNldj5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uH8ssNldj5 .carousel-indicators .active,
.cid-uH8ssNldj5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uH8ssNldj5 .carousel-indicators .active {
  background: #fff;
}
.cid-uH8ssNldj5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uH8ssNldj5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uH8ssNldj5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uH8ssNldj5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uH8ssNldj5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uH8ssNldj5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uH8ssNldj5 .carousel {
  width: 100%;
}
.cid-uH8ssNldj5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uH8ssNldj5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uH8ssNldj5 .modal.fade .modal-dialog,
.cid-uH8ssNldj5 .modal.in .modal-dialog {
  transform: none;
}
.cid-uH8ssNldj5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uH8ssNldj5 H6 {
  text-align: center;
}
.cid-uH8ssOkqoz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-uH8ssOkqoz .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.2;
}
.cid-uH8ssOkqoz form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uH8ssOkqoz form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uH8ssOkqoz form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uH8ssOkqoz .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uH8ssOkqoz .mbr-section-subtitle {
  color: #232323;
}
.cid-uH8ssOz7ui {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uH8ssOz7ui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH8ssOz7ui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH8ssOz7ui .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uH8ssOz7ui .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uH8ssOz7ui .row {
    text-align: center;
  }
  .cid-uH8ssOz7ui .social-row {
    justify-content: center;
  }
}
.cid-uH8ssOz7ui .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uH8ssOz7ui .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH8ssOz7ui .list {
    margin-bottom: 0rem;
  }
}
.cid-uH8ssOz7ui .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uH8ssOz7ui .mbr-iconfont {
  color: black;
}
.cid-uH8ssOz7ui H5 {
  color: #ffffff;
}
.cid-uH8ssOz7ui .mbr-section-subtitle {
  text-align: left;
}
.cid-uH8ssOWZ8o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uH8ssOWZ8o .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uzLdZFPC5M {
  z-index: 1000;
  width: 100%;
}
.cid-uzLdZFPC5M nav.navbar {
  position: fixed;
}
.cid-uzLdZFPC5M .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-uzLdZFPC5M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzLdZFPC5M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzLdZFPC5M .dropdown-item:hover,
.cid-uzLdZFPC5M .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uzLdZFPC5M .dropdown-item:hover span {
  color: white;
}
.cid-uzLdZFPC5M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzLdZFPC5M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzLdZFPC5M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzLdZFPC5M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzLdZFPC5M .nav-link {
  position: relative;
}
.cid-uzLdZFPC5M .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uzLdZFPC5M .container {
    flex-wrap: wrap;
  }
}
.cid-uzLdZFPC5M .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uzLdZFPC5M .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uzLdZFPC5M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzLdZFPC5M .dropdown-menu,
.cid-uzLdZFPC5M .navbar.opened {
  background: #000000 !important;
}
.cid-uzLdZFPC5M .nav-item:focus,
.cid-uzLdZFPC5M .nav-link:focus {
  outline: none;
}
.cid-uzLdZFPC5M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzLdZFPC5M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzLdZFPC5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzLdZFPC5M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzLdZFPC5M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzLdZFPC5M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzLdZFPC5M .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uzLdZFPC5M .navbar.opened {
  transition: all 0.3s;
}
.cid-uzLdZFPC5M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzLdZFPC5M .navbar .navbar-logo img {
  width: auto;
}
.cid-uzLdZFPC5M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzLdZFPC5M .navbar.collapsed {
  justify-content: center;
}
.cid-uzLdZFPC5M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzLdZFPC5M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzLdZFPC5M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uzLdZFPC5M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzLdZFPC5M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzLdZFPC5M .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-uzLdZFPC5M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzLdZFPC5M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzLdZFPC5M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzLdZFPC5M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzLdZFPC5M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzLdZFPC5M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzLdZFPC5M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzLdZFPC5M .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-uzLdZFPC5M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzLdZFPC5M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzLdZFPC5M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzLdZFPC5M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzLdZFPC5M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzLdZFPC5M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzLdZFPC5M .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzLdZFPC5M .navbar.navbar-short {
  min-height: 60px;
}
.cid-uzLdZFPC5M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzLdZFPC5M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzLdZFPC5M .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-uzLdZFPC5M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzLdZFPC5M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzLdZFPC5M .dropdown-item.active,
.cid-uzLdZFPC5M .dropdown-item:active {
  background-color: transparent;
}
.cid-uzLdZFPC5M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzLdZFPC5M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzLdZFPC5M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzLdZFPC5M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uzLdZFPC5M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzLdZFPC5M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzLdZFPC5M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzLdZFPC5M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzLdZFPC5M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzLdZFPC5M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uzLdZFPC5M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzLdZFPC5M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzLdZFPC5M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzLdZFPC5M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzLdZFPC5M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzLdZFPC5M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzLdZFPC5M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzLdZFPC5M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzLdZFPC5M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzLdZFPC5M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzLdZFPC5M .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-uzLdZFPC5M .navbar {
    height: 70px;
  }
  .cid-uzLdZFPC5M .navbar.opened {
    height: auto;
  }
  .cid-uzLdZFPC5M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzLdZG7Li9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzLdZG7Li9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzLdZG7Li9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzLdZG7Li9 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uzLdZG7Li9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzLdZG7Li9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uzLdZG7Li9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzLdZG7Li9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uzLdZG7Li9 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uzLdZG7Li9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uzLdZGjaAK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzLdZGjaAK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzLdZGjaAK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzLdZGjaAK .item {
  padding-bottom: 2rem;
}
.cid-uzLdZGjaAK .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uzLdZGjaAK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uzLdZGjaAK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uzLdZGjaAK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uzLdZGjaAK .carousel-control,
.cid-uzLdZGjaAK .close {
  background: #1b1b1b;
}
.cid-uzLdZGjaAK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uzLdZGjaAK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uzLdZGjaAK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uzLdZGjaAK .carousel-control-next span {
  margin-left: 5px;
}
.cid-uzLdZGjaAK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uzLdZGjaAK .close::before {
  content: '\e91a';
}
.cid-uzLdZGjaAK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uzLdZGjaAK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uzLdZGjaAK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzLdZGjaAK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzLdZGjaAK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uzLdZGjaAK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uzLdZGjaAK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uzLdZGjaAK .carousel-indicators li.active,
.cid-uzLdZGjaAK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uzLdZGjaAK .carousel-indicators li::after,
.cid-uzLdZGjaAK .carousel-indicators li::before {
  content: none;
}
.cid-uzLdZGjaAK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uzLdZGjaAK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uzLdZGjaAK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uzLdZGjaAK .carousel-indicators {
    display: none;
  }
}
.cid-uzLdZGjaAK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uzLdZGjaAK .carousel-inner > .active {
  display: block;
}
.cid-uzLdZGjaAK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uzLdZGjaAK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uzLdZGjaAK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uzLdZGjaAK .carousel-control,
  .cid-uzLdZGjaAK .carousel-indicators,
  .cid-uzLdZGjaAK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uzLdZGjaAK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uzLdZGjaAK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uzLdZGjaAK .carousel-indicators .active,
.cid-uzLdZGjaAK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uzLdZGjaAK .carousel-indicators .active {
  background: #fff;
}
.cid-uzLdZGjaAK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uzLdZGjaAK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uzLdZGjaAK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uzLdZGjaAK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uzLdZGjaAK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uzLdZGjaAK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uzLdZGjaAK .carousel {
  width: 100%;
}
.cid-uzLdZGjaAK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uzLdZGjaAK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uzLdZGjaAK .modal.fade .modal-dialog,
.cid-uzLdZGjaAK .modal.in .modal-dialog {
  transform: none;
}
.cid-uzLdZGjaAK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uzLdZGjaAK H6 {
  text-align: center;
}
.cid-uzLdZGUdTi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-grigio-chiaro-1980x1080px-2000x1125.webp");
}
.cid-uzLdZGUdTi .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uzLdZGUdTi form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uzLdZGUdTi form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uzLdZGUdTi form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uzLdZGUdTi .mbr-section-title {
  text-align: center;
}
.cid-uzLdZH5eBd {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uzLdZH5eBd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzLdZH5eBd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzLdZH5eBd .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uzLdZH5eBd .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uzLdZH5eBd .row {
    text-align: center;
  }
  .cid-uzLdZH5eBd .social-row {
    justify-content: center;
  }
}
.cid-uzLdZH5eBd .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uzLdZH5eBd .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uzLdZH5eBd .list {
    margin-bottom: 0rem;
  }
}
.cid-uzLdZH5eBd .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uzLdZH5eBd .mbr-iconfont {
  color: black;
}
.cid-uzLdZH5eBd H5 {
  color: #ffffff;
}
.cid-uzLdZH5eBd .mbr-section-subtitle {
  text-align: left;
}
.cid-uzLdZHlOyD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #93a3a4;
}
.cid-uzLdZHlOyD .mbr-text {
  text-align: center;
}
.cid-uKfg0If2Iu {
  z-index: 1000;
  width: 100%;
}
.cid-uKfg0If2Iu nav.navbar {
  position: fixed;
}
.cid-uKfg0If2Iu .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-uKfg0If2Iu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uKfg0If2Iu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uKfg0If2Iu .dropdown-item:hover,
.cid-uKfg0If2Iu .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uKfg0If2Iu .dropdown-item:hover span {
  color: white;
}
.cid-uKfg0If2Iu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uKfg0If2Iu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uKfg0If2Iu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uKfg0If2Iu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uKfg0If2Iu .nav-link {
  position: relative;
}
.cid-uKfg0If2Iu .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKfg0If2Iu .container {
    flex-wrap: wrap;
  }
}
.cid-uKfg0If2Iu .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKfg0If2Iu .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uKfg0If2Iu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKfg0If2Iu .dropdown-menu,
.cid-uKfg0If2Iu .navbar.opened {
  background: #000000 !important;
}
.cid-uKfg0If2Iu .nav-item:focus,
.cid-uKfg0If2Iu .nav-link:focus {
  outline: none;
}
.cid-uKfg0If2Iu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKfg0If2Iu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKfg0If2Iu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKfg0If2Iu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKfg0If2Iu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKfg0If2Iu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKfg0If2Iu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uKfg0If2Iu .navbar.opened {
  transition: all 0.3s;
}
.cid-uKfg0If2Iu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKfg0If2Iu .navbar .navbar-logo img {
  width: auto;
}
.cid-uKfg0If2Iu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uKfg0If2Iu .navbar.collapsed {
  justify-content: center;
}
.cid-uKfg0If2Iu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKfg0If2Iu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKfg0If2Iu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uKfg0If2Iu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKfg0If2Iu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKfg0If2Iu .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-uKfg0If2Iu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKfg0If2Iu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKfg0If2Iu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uKfg0If2Iu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKfg0If2Iu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKfg0If2Iu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKfg0If2Iu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKfg0If2Iu .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-uKfg0If2Iu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKfg0If2Iu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uKfg0If2Iu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKfg0If2Iu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uKfg0If2Iu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKfg0If2Iu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uKfg0If2Iu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uKfg0If2Iu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKfg0If2Iu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKfg0If2Iu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKfg0If2Iu .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-uKfg0If2Iu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKfg0If2Iu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKfg0If2Iu .dropdown-item.active,
.cid-uKfg0If2Iu .dropdown-item:active {
  background-color: transparent;
}
.cid-uKfg0If2Iu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKfg0If2Iu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKfg0If2Iu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKfg0If2Iu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uKfg0If2Iu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKfg0If2Iu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKfg0If2Iu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKfg0If2Iu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKfg0If2Iu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKfg0If2Iu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKfg0If2Iu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKfg0If2Iu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfg0If2Iu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKfg0If2Iu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKfg0If2Iu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfg0If2Iu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKfg0If2Iu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKfg0If2Iu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKfg0If2Iu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uKfg0If2Iu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKfg0If2Iu .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-uKfg0If2Iu .navbar {
    height: 70px;
  }
  .cid-uKfg0If2Iu .navbar.opened {
    height: auto;
  }
  .cid-uKfg0If2Iu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKfg0IDrve {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKfg0IDrve .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfg0IDrve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfg0IDrve .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uKfg0IDrve .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKfg0IDrve .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKfg0IDrve .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKfg0IDrve .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKfg0IDrve .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uKfg0IDrve .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKfg0IT2tb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKfg0IT2tb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfg0IT2tb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfg0IT2tb .item {
  padding-bottom: 2rem;
}
.cid-uKfg0IT2tb .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uKfg0IT2tb .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uKfg0IT2tb .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uKfg0IT2tb .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uKfg0IT2tb .carousel-control,
.cid-uKfg0IT2tb .close {
  background: #1b1b1b;
}
.cid-uKfg0IT2tb .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKfg0IT2tb .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKfg0IT2tb .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKfg0IT2tb .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKfg0IT2tb .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uKfg0IT2tb .close::before {
  content: '\e91a';
}
.cid-uKfg0IT2tb .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKfg0IT2tb .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uKfg0IT2tb .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKfg0IT2tb .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKfg0IT2tb .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKfg0IT2tb .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKfg0IT2tb .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uKfg0IT2tb .carousel-indicators li.active,
.cid-uKfg0IT2tb .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKfg0IT2tb .carousel-indicators li::after,
.cid-uKfg0IT2tb .carousel-indicators li::before {
  content: none;
}
.cid-uKfg0IT2tb .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKfg0IT2tb .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKfg0IT2tb .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKfg0IT2tb .carousel-indicators {
    display: none;
  }
}
.cid-uKfg0IT2tb .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKfg0IT2tb .carousel-inner > .active {
  display: block;
}
.cid-uKfg0IT2tb .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKfg0IT2tb .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKfg0IT2tb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKfg0IT2tb .carousel-control,
  .cid-uKfg0IT2tb .carousel-indicators,
  .cid-uKfg0IT2tb .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKfg0IT2tb .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKfg0IT2tb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKfg0IT2tb .carousel-indicators .active,
.cid-uKfg0IT2tb .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKfg0IT2tb .carousel-indicators .active {
  background: #fff;
}
.cid-uKfg0IT2tb .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKfg0IT2tb .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKfg0IT2tb .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKfg0IT2tb .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKfg0IT2tb .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKfg0IT2tb .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKfg0IT2tb .carousel {
  width: 100%;
}
.cid-uKfg0IT2tb .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKfg0IT2tb .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKfg0IT2tb .modal.fade .modal-dialog,
.cid-uKfg0IT2tb .modal.in .modal-dialog {
  transform: none;
}
.cid-uKfg0IT2tb .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKfg0IT2tb H6 {
  text-align: center;
}
.cid-uKfg0KbYv9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-uKfg0KbYv9 .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-uKfg0KbYv9 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uKfg0KbYv9 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uKfg0KbYv9 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uKfg0KbYv9 .mbr-section-title {
  text-align: center;
}
.cid-uKfg0KryEw {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uKfg0KryEw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKfg0KryEw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKfg0KryEw .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uKfg0KryEw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKfg0KryEw .row {
    text-align: center;
  }
  .cid-uKfg0KryEw .social-row {
    justify-content: center;
  }
}
.cid-uKfg0KryEw .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uKfg0KryEw .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKfg0KryEw .list {
    margin-bottom: 0rem;
  }
}
.cid-uKfg0KryEw .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uKfg0KryEw .mbr-iconfont {
  color: black;
}
.cid-uKfg0KryEw H5 {
  color: #ffffff;
}
.cid-uKfg0KryEw .mbr-section-subtitle {
  text-align: left;
}
.cid-uKfg0KQkqo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uKfg0KQkqo .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tWneU3NNA9 {
  z-index: 1000;
  width: 100%;
}
.cid-tWneU3NNA9 nav.navbar {
  position: fixed;
}
.cid-tWneU3NNA9 .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-tWneU3NNA9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tWneU3NNA9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tWneU3NNA9 .dropdown-item:hover,
.cid-tWneU3NNA9 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-tWneU3NNA9 .dropdown-item:hover span {
  color: white;
}
.cid-tWneU3NNA9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tWneU3NNA9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tWneU3NNA9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tWneU3NNA9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tWneU3NNA9 .nav-link {
  position: relative;
}
.cid-tWneU3NNA9 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWneU3NNA9 .container {
    flex-wrap: wrap;
  }
}
.cid-tWneU3NNA9 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tWneU3NNA9 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tWneU3NNA9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tWneU3NNA9 .dropdown-menu,
.cid-tWneU3NNA9 .navbar.opened {
  background: #000000 !important;
}
.cid-tWneU3NNA9 .nav-item:focus,
.cid-tWneU3NNA9 .nav-link:focus {
  outline: none;
}
.cid-tWneU3NNA9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tWneU3NNA9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tWneU3NNA9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tWneU3NNA9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tWneU3NNA9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tWneU3NNA9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tWneU3NNA9 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-tWneU3NNA9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tWneU3NNA9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tWneU3NNA9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tWneU3NNA9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tWneU3NNA9 .navbar.collapsed {
  justify-content: center;
}
.cid-tWneU3NNA9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tWneU3NNA9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tWneU3NNA9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-tWneU3NNA9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tWneU3NNA9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tWneU3NNA9 .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-tWneU3NNA9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tWneU3NNA9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tWneU3NNA9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tWneU3NNA9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tWneU3NNA9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tWneU3NNA9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tWneU3NNA9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tWneU3NNA9 .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-tWneU3NNA9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tWneU3NNA9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tWneU3NNA9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tWneU3NNA9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tWneU3NNA9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tWneU3NNA9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tWneU3NNA9 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tWneU3NNA9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tWneU3NNA9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tWneU3NNA9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tWneU3NNA9 .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-tWneU3NNA9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tWneU3NNA9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tWneU3NNA9 .dropdown-item.active,
.cid-tWneU3NNA9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tWneU3NNA9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tWneU3NNA9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tWneU3NNA9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tWneU3NNA9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tWneU3NNA9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tWneU3NNA9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tWneU3NNA9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tWneU3NNA9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tWneU3NNA9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tWneU3NNA9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tWneU3NNA9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tWneU3NNA9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWneU3NNA9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tWneU3NNA9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tWneU3NNA9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWneU3NNA9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tWneU3NNA9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tWneU3NNA9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tWneU3NNA9 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tWneU3NNA9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tWneU3NNA9 .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-tWneU3NNA9 .navbar {
    height: 70px;
  }
  .cid-tWneU3NNA9 .navbar.opened {
    height: auto;
  }
  .cid-tWneU3NNA9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tWneU3d3Fh {
  background-image: url("../../../assets/images/home-staging-vacancy-vuoto-allestimento-2000x1333.webp");
}
.cid-tWneU3d3Fh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneU3d3Fh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneU3d3Fh .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-tWneU3d3Fh .mbr-text,
.cid-tWneU3d3Fh .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uPSGuPCGNm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #93a3a4;
}
.cid-uPSGuPCGNm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPSGuPCGNm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPSGuPCGNm .item {
  padding-bottom: 2rem;
}
.cid-uPSGuPCGNm .item-wrapper {
  position: relative;
}
.cid-uPSGuPCGNm .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uPSGuPCGNm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uPSGuPCGNm .carousel-control,
.cid-uPSGuPCGNm .close {
  background: #1b1b1b;
}
.cid-uPSGuPCGNm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uPSGuPCGNm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uPSGuPCGNm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uPSGuPCGNm .carousel-control-next span {
  margin-left: 5px;
}
.cid-uPSGuPCGNm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uPSGuPCGNm .close::before {
  content: '\e91a';
}
.cid-uPSGuPCGNm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uPSGuPCGNm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uPSGuPCGNm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPSGuPCGNm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uPSGuPCGNm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uPSGuPCGNm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uPSGuPCGNm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uPSGuPCGNm .carousel-indicators li.active,
.cid-uPSGuPCGNm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uPSGuPCGNm .carousel-indicators li::after,
.cid-uPSGuPCGNm .carousel-indicators li::before {
  content: none;
}
.cid-uPSGuPCGNm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPSGuPCGNm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uPSGuPCGNm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uPSGuPCGNm .carousel-indicators {
    display: none;
  }
}
.cid-uPSGuPCGNm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uPSGuPCGNm .carousel-inner > .active {
  display: block;
}
.cid-uPSGuPCGNm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPSGuPCGNm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uPSGuPCGNm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uPSGuPCGNm .carousel-control,
  .cid-uPSGuPCGNm .carousel-indicators,
  .cid-uPSGuPCGNm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uPSGuPCGNm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uPSGuPCGNm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uPSGuPCGNm .carousel-indicators .active,
.cid-uPSGuPCGNm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uPSGuPCGNm .carousel-indicators .active {
  background: #fff;
}
.cid-uPSGuPCGNm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uPSGuPCGNm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uPSGuPCGNm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uPSGuPCGNm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uPSGuPCGNm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uPSGuPCGNm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uPSGuPCGNm .carousel {
  width: 100%;
}
.cid-uPSGuPCGNm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uPSGuPCGNm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uPSGuPCGNm .modal.fade .modal-dialog,
.cid-uPSGuPCGNm .modal.in .modal-dialog {
  transform: none;
}
.cid-uPSGuPCGNm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uPSGuPCGNm H6 {
  text-align: center;
}
.cid-tWneU7G7JQ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #c3cccd;
}
.cid-tWneU7G7JQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneU7G7JQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneU7G7JQ .nav-tabs .nav-item.open .nav-link:focus,
.cid-tWneU7G7JQ .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tWneU7G7JQ .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 767px) {
  .cid-tWneU7G7JQ .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-tWneU7G7JQ .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-tWneU7G7JQ .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-tWneU7G7JQ .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-tWneU7G7JQ .nav-link,
.cid-tWneU7G7JQ .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-tWneU7G7JQ .nav-tabs .nav-link.active {
  color: #ffffff;
  border-bottom: 3px solid #ffffff;
}
.cid-tWneU7G7JQ H4 {
  text-align: center;
}
.cid-tWneU7G7JQ H3 {
  text-align: center;
}
.cid-tWneU7ZFcz {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/milano-bicocca-luminoso-bilocale-21-2000x1333.webp");
}
.cid-tWneU7ZFcz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneU7ZFcz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneU7ZFcz .mbr-section-title,
.cid-tWneU7ZFcz .mbr-section-subtitle {
  text-align: center;
}
.cid-tWneU7ZFcz .cost {
  word-break: normal;
}
.cid-tWneU7ZFcz .card-wrapper {
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #93a3a4;
}
.cid-tWneU7ZFcz .card-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .cid-tWneU7ZFcz .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tWneU7ZFcz .card-wrapper {
    padding: 1rem;
  }
}
.cid-tWneU910bb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #d4dcdb;
}
.cid-tWneU910bb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneU910bb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneU910bb .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tWneU910bb .icon-box {
  background: #93a3a4;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWneU910bb .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWneU910bb .card {
    margin-bottom: 2rem;
  }
  .cid-tWneU910bb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tWneU9hj7q {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #d4dcdb;
}
.cid-tWneU9hj7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneU9hj7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneU9hj7q .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tWneU9hj7q .icon-box {
  background: #93a3a4;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWneU9hj7q .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tWneU9hj7q .card {
    margin-bottom: 2rem;
  }
  .cid-tWneU9hj7q .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tWrmmqhzTJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #d4dcdb;
}
.cid-tWrmmqhzTJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWrmmqhzTJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0YN7Yd9z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/sfondo-bianco-1920x1080px2-2000x1125.webp");
}
.cid-uR0YN7Yd9z .mbr-overlay {
  background-color: #93a3a4;
  opacity: 0.5;
}
.cid-uR0YN7Yd9z form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR0YN7Yd9z form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR0YN7Yd9z form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tWneUaEpuN {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-tWneUaEpuN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWneUaEpuN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWneUaEpuN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tWneUaEpuN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tWneUaEpuN .row {
    text-align: center;
  }
  .cid-tWneUaEpuN .social-row {
    justify-content: center;
  }
}
.cid-tWneUaEpuN .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tWneUaEpuN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tWneUaEpuN .list {
    margin-bottom: 0rem;
  }
}
.cid-tWneUaEpuN .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tWneUaEpuN .mbr-iconfont {
  color: black;
}
.cid-tWneUaEpuN H5 {
  color: #ffffff;
}
.cid-tWneUaEpuN .mbr-section-subtitle {
  text-align: left;
}
.cid-tWneUaYxx2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tWneUaYxx2 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uR112KlQv5 {
  z-index: 1000;
  width: 100%;
}
.cid-uR112KlQv5 nav.navbar {
  position: fixed;
}
.cid-uR112KlQv5 .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-uR112KlQv5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR112KlQv5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR112KlQv5 .dropdown-item:hover,
.cid-uR112KlQv5 .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uR112KlQv5 .dropdown-item:hover span {
  color: white;
}
.cid-uR112KlQv5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR112KlQv5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR112KlQv5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR112KlQv5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR112KlQv5 .nav-link {
  position: relative;
}
.cid-uR112KlQv5 .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR112KlQv5 .container {
    flex-wrap: wrap;
  }
}
.cid-uR112KlQv5 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR112KlQv5 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uR112KlQv5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR112KlQv5 .dropdown-menu,
.cid-uR112KlQv5 .navbar.opened {
  background: #000000 !important;
}
.cid-uR112KlQv5 .nav-item:focus,
.cid-uR112KlQv5 .nav-link:focus {
  outline: none;
}
.cid-uR112KlQv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR112KlQv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR112KlQv5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR112KlQv5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR112KlQv5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR112KlQv5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR112KlQv5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uR112KlQv5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uR112KlQv5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR112KlQv5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uR112KlQv5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR112KlQv5 .navbar.collapsed {
  justify-content: center;
}
.cid-uR112KlQv5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR112KlQv5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR112KlQv5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uR112KlQv5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR112KlQv5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR112KlQv5 .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-uR112KlQv5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR112KlQv5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR112KlQv5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR112KlQv5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR112KlQv5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR112KlQv5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR112KlQv5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR112KlQv5 .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-uR112KlQv5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR112KlQv5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR112KlQv5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR112KlQv5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR112KlQv5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR112KlQv5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uR112KlQv5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uR112KlQv5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR112KlQv5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR112KlQv5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR112KlQv5 .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-uR112KlQv5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR112KlQv5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR112KlQv5 .dropdown-item.active,
.cid-uR112KlQv5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uR112KlQv5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR112KlQv5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR112KlQv5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR112KlQv5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uR112KlQv5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR112KlQv5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR112KlQv5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR112KlQv5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR112KlQv5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR112KlQv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uR112KlQv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR112KlQv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR112KlQv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR112KlQv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR112KlQv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR112KlQv5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR112KlQv5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR112KlQv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR112KlQv5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uR112KlQv5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR112KlQv5 .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-uR112KlQv5 .navbar {
    height: 70px;
  }
  .cid-uR112KlQv5 .navbar.opened {
    height: auto;
  }
  .cid-uR112KlQv5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR112KEFWU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR112KEFWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR112KEFWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR112KEFWU .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR112KEFWU .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR112KEFWU .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR112KEFWU .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR112KEFWU .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uR112KEFWU .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uR112KEFWU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR112KO5wm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR112KO5wm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR112KO5wm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR112KO5wm .item {
  padding-bottom: 2rem;
}
.cid-uR112KO5wm .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uR112KO5wm .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uR112KO5wm .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uR112KO5wm .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uR112KO5wm .carousel-control,
.cid-uR112KO5wm .close {
  background: #1b1b1b;
}
.cid-uR112KO5wm .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uR112KO5wm .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uR112KO5wm .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uR112KO5wm .carousel-control-next span {
  margin-left: 5px;
}
.cid-uR112KO5wm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uR112KO5wm .close::before {
  content: '\e91a';
}
.cid-uR112KO5wm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uR112KO5wm .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uR112KO5wm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR112KO5wm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR112KO5wm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uR112KO5wm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uR112KO5wm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uR112KO5wm .carousel-indicators li.active,
.cid-uR112KO5wm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uR112KO5wm .carousel-indicators li::after,
.cid-uR112KO5wm .carousel-indicators li::before {
  content: none;
}
.cid-uR112KO5wm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uR112KO5wm .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uR112KO5wm .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uR112KO5wm .carousel-indicators {
    display: none;
  }
}
.cid-uR112KO5wm .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uR112KO5wm .carousel-inner > .active {
  display: block;
}
.cid-uR112KO5wm .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR112KO5wm .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uR112KO5wm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uR112KO5wm .carousel-control,
  .cid-uR112KO5wm .carousel-indicators,
  .cid-uR112KO5wm .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uR112KO5wm .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uR112KO5wm .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uR112KO5wm .carousel-indicators .active,
.cid-uR112KO5wm .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uR112KO5wm .carousel-indicators .active {
  background: #fff;
}
.cid-uR112KO5wm .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uR112KO5wm .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uR112KO5wm .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uR112KO5wm .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uR112KO5wm .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uR112KO5wm .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uR112KO5wm .carousel {
  width: 100%;
}
.cid-uR112KO5wm .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uR112KO5wm .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uR112KO5wm .modal.fade .modal-dialog,
.cid-uR112KO5wm .modal.in .modal-dialog {
  transform: none;
}
.cid-uR112KO5wm .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uR112KO5wm H6 {
  text-align: center;
}
.cid-uR112LxaKx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-bianco-3-foglie-1920x1080px2-2000x1125.webp");
}
.cid-uR112LxaKx .mbr-overlay {
  background-color: #232323;
  opacity: 0.2;
}
.cid-uR112LxaKx form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR112LxaKx form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR112LxaKx form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR112LxaKx .mbr-section-title {
  text-align: center;
}
.cid-uR112LJjR1 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uR112LJjR1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR112LJjR1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR112LJjR1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uR112LJjR1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR112LJjR1 .row {
    text-align: center;
  }
  .cid-uR112LJjR1 .social-row {
    justify-content: center;
  }
}
.cid-uR112LJjR1 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uR112LJjR1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR112LJjR1 .list {
    margin-bottom: 0rem;
  }
}
.cid-uR112LJjR1 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR112LJjR1 .mbr-iconfont {
  color: black;
}
.cid-uR112LJjR1 H5 {
  color: #ffffff;
}
.cid-uR112LJjR1 .mbr-section-subtitle {
  text-align: left;
}
.cid-uR112LZq9d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uR112LZq9d .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-uR10VucieE {
  z-index: 1000;
  width: 100%;
}
.cid-uR10VucieE nav.navbar {
  position: fixed;
}
.cid-uR10VucieE .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-uR10VucieE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR10VucieE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR10VucieE .dropdown-item:hover,
.cid-uR10VucieE .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uR10VucieE .dropdown-item:hover span {
  color: white;
}
.cid-uR10VucieE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR10VucieE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR10VucieE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR10VucieE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR10VucieE .nav-link {
  position: relative;
}
.cid-uR10VucieE .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR10VucieE .container {
    flex-wrap: wrap;
  }
}
.cid-uR10VucieE .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR10VucieE .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uR10VucieE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR10VucieE .dropdown-menu,
.cid-uR10VucieE .navbar.opened {
  background: #000000 !important;
}
.cid-uR10VucieE .nav-item:focus,
.cid-uR10VucieE .nav-link:focus {
  outline: none;
}
.cid-uR10VucieE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR10VucieE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR10VucieE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR10VucieE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR10VucieE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR10VucieE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR10VucieE .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uR10VucieE .navbar.opened {
  transition: all 0.3s;
}
.cid-uR10VucieE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR10VucieE .navbar .navbar-logo img {
  width: auto;
}
.cid-uR10VucieE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR10VucieE .navbar.collapsed {
  justify-content: center;
}
.cid-uR10VucieE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR10VucieE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR10VucieE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uR10VucieE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR10VucieE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR10VucieE .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-uR10VucieE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR10VucieE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR10VucieE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR10VucieE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR10VucieE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR10VucieE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR10VucieE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR10VucieE .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-uR10VucieE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR10VucieE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR10VucieE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR10VucieE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR10VucieE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR10VucieE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uR10VucieE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uR10VucieE .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR10VucieE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR10VucieE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR10VucieE .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-uR10VucieE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR10VucieE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR10VucieE .dropdown-item.active,
.cid-uR10VucieE .dropdown-item:active {
  background-color: transparent;
}
.cid-uR10VucieE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR10VucieE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR10VucieE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR10VucieE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uR10VucieE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR10VucieE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR10VucieE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR10VucieE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR10VucieE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR10VucieE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uR10VucieE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR10VucieE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR10VucieE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR10VucieE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR10VucieE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR10VucieE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR10VucieE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR10VucieE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR10VucieE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uR10VucieE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR10VucieE .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-uR10VucieE .navbar {
    height: 70px;
  }
  .cid-uR10VucieE .navbar.opened {
    height: auto;
  }
  .cid-uR10VucieE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR10Vuw4Bs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR10Vuw4Bs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR10Vuw4Bs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR10Vuw4Bs .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR10Vuw4Bs .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR10Vuw4Bs .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR10Vuw4Bs .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR10Vuw4Bs .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uR10Vuw4Bs .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uR10Vuw4Bs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR10VuJZ9Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR10VuJZ9Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR10VuJZ9Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR10VuJZ9Y .item {
  padding-bottom: 2rem;
}
.cid-uR10VuJZ9Y .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uR10VuJZ9Y .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uR10VuJZ9Y .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uR10VuJZ9Y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uR10VuJZ9Y .carousel-control,
.cid-uR10VuJZ9Y .close {
  background: #1b1b1b;
}
.cid-uR10VuJZ9Y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uR10VuJZ9Y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uR10VuJZ9Y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uR10VuJZ9Y .carousel-control-next span {
  margin-left: 5px;
}
.cid-uR10VuJZ9Y .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uR10VuJZ9Y .close::before {
  content: '\e91a';
}
.cid-uR10VuJZ9Y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uR10VuJZ9Y .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uR10VuJZ9Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR10VuJZ9Y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR10VuJZ9Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uR10VuJZ9Y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uR10VuJZ9Y .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uR10VuJZ9Y .carousel-indicators li.active,
.cid-uR10VuJZ9Y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uR10VuJZ9Y .carousel-indicators li::after,
.cid-uR10VuJZ9Y .carousel-indicators li::before {
  content: none;
}
.cid-uR10VuJZ9Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uR10VuJZ9Y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uR10VuJZ9Y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uR10VuJZ9Y .carousel-indicators {
    display: none;
  }
}
.cid-uR10VuJZ9Y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uR10VuJZ9Y .carousel-inner > .active {
  display: block;
}
.cid-uR10VuJZ9Y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR10VuJZ9Y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uR10VuJZ9Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uR10VuJZ9Y .carousel-control,
  .cid-uR10VuJZ9Y .carousel-indicators,
  .cid-uR10VuJZ9Y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uR10VuJZ9Y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uR10VuJZ9Y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uR10VuJZ9Y .carousel-indicators .active,
.cid-uR10VuJZ9Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uR10VuJZ9Y .carousel-indicators .active {
  background: #fff;
}
.cid-uR10VuJZ9Y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uR10VuJZ9Y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uR10VuJZ9Y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uR10VuJZ9Y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uR10VuJZ9Y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uR10VuJZ9Y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uR10VuJZ9Y .carousel {
  width: 100%;
}
.cid-uR10VuJZ9Y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uR10VuJZ9Y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uR10VuJZ9Y .modal.fade .modal-dialog,
.cid-uR10VuJZ9Y .modal.in .modal-dialog {
  transform: none;
}
.cid-uR10VuJZ9Y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uR10VuJZ9Y H6 {
  text-align: center;
}
.cid-uR10Vvz6gW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-uR10Vvz6gW .mbr-overlay {
  background-color: #232323;
  opacity: 0.8;
}
.cid-uR10Vvz6gW form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR10Vvz6gW form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR10Vvz6gW form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR10Vvz6gW .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uR10Vvz6gW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uR10VvLgou {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uR10VvLgou .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR10VvLgou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR10VvLgou .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uR10VvLgou .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR10VvLgou .row {
    text-align: center;
  }
  .cid-uR10VvLgou .social-row {
    justify-content: center;
  }
}
.cid-uR10VvLgou .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uR10VvLgou .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR10VvLgou .list {
    margin-bottom: 0rem;
  }
}
.cid-uR10VvLgou .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR10VvLgou .mbr-iconfont {
  color: black;
}
.cid-uR10VvLgou H5 {
  color: #ffffff;
}
.cid-uR10VvLgou .mbr-section-subtitle {
  text-align: left;
}
.cid-uR10Vw2CCk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uR10Vw2CCk .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-uR114NJlbw {
  z-index: 1000;
  width: 100%;
}
.cid-uR114NJlbw nav.navbar {
  position: fixed;
}
.cid-uR114NJlbw .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-uR114NJlbw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uR114NJlbw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uR114NJlbw .dropdown-item:hover,
.cid-uR114NJlbw .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-uR114NJlbw .dropdown-item:hover span {
  color: white;
}
.cid-uR114NJlbw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uR114NJlbw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uR114NJlbw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uR114NJlbw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uR114NJlbw .nav-link {
  position: relative;
}
.cid-uR114NJlbw .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR114NJlbw .container {
    flex-wrap: wrap;
  }
}
.cid-uR114NJlbw .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uR114NJlbw .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uR114NJlbw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR114NJlbw .dropdown-menu,
.cid-uR114NJlbw .navbar.opened {
  background: #000000 !important;
}
.cid-uR114NJlbw .nav-item:focus,
.cid-uR114NJlbw .nav-link:focus {
  outline: none;
}
.cid-uR114NJlbw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR114NJlbw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR114NJlbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR114NJlbw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR114NJlbw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR114NJlbw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR114NJlbw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-uR114NJlbw .navbar.opened {
  transition: all 0.3s;
}
.cid-uR114NJlbw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR114NJlbw .navbar .navbar-logo img {
  width: auto;
}
.cid-uR114NJlbw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR114NJlbw .navbar.collapsed {
  justify-content: center;
}
.cid-uR114NJlbw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR114NJlbw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR114NJlbw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-uR114NJlbw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR114NJlbw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR114NJlbw .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-uR114NJlbw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR114NJlbw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR114NJlbw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uR114NJlbw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR114NJlbw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR114NJlbw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR114NJlbw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR114NJlbw .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-uR114NJlbw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uR114NJlbw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR114NJlbw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR114NJlbw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uR114NJlbw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR114NJlbw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uR114NJlbw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uR114NJlbw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uR114NJlbw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uR114NJlbw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uR114NJlbw .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-uR114NJlbw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR114NJlbw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR114NJlbw .dropdown-item.active,
.cid-uR114NJlbw .dropdown-item:active {
  background-color: transparent;
}
.cid-uR114NJlbw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR114NJlbw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR114NJlbw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR114NJlbw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uR114NJlbw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR114NJlbw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR114NJlbw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR114NJlbw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uR114NJlbw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR114NJlbw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uR114NJlbw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR114NJlbw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR114NJlbw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR114NJlbw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR114NJlbw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR114NJlbw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR114NJlbw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR114NJlbw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR114NJlbw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uR114NJlbw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR114NJlbw .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-uR114NJlbw .navbar {
    height: 70px;
  }
  .cid-uR114NJlbw .navbar.opened {
    height: auto;
  }
  .cid-uR114NJlbw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR114O0Bta {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR114O0Bta .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR114O0Bta .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR114O0Bta .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uR114O0Bta .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR114O0Bta .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uR114O0Bta .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR114O0Bta .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uR114O0Bta .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uR114O0Bta .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uR114OcpYI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR114OcpYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR114OcpYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR114OcpYI .item {
  padding-bottom: 2rem;
}
.cid-uR114OcpYI .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uR114OcpYI .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uR114OcpYI .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uR114OcpYI .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uR114OcpYI .carousel-control,
.cid-uR114OcpYI .close {
  background: #1b1b1b;
}
.cid-uR114OcpYI .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uR114OcpYI .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uR114OcpYI .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uR114OcpYI .carousel-control-next span {
  margin-left: 5px;
}
.cid-uR114OcpYI .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uR114OcpYI .close::before {
  content: '\e91a';
}
.cid-uR114OcpYI .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uR114OcpYI .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uR114OcpYI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR114OcpYI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR114OcpYI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uR114OcpYI .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uR114OcpYI .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uR114OcpYI .carousel-indicators li.active,
.cid-uR114OcpYI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uR114OcpYI .carousel-indicators li::after,
.cid-uR114OcpYI .carousel-indicators li::before {
  content: none;
}
.cid-uR114OcpYI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uR114OcpYI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uR114OcpYI .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uR114OcpYI .carousel-indicators {
    display: none;
  }
}
.cid-uR114OcpYI .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uR114OcpYI .carousel-inner > .active {
  display: block;
}
.cid-uR114OcpYI .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR114OcpYI .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uR114OcpYI .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uR114OcpYI .carousel-control,
  .cid-uR114OcpYI .carousel-indicators,
  .cid-uR114OcpYI .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uR114OcpYI .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uR114OcpYI .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uR114OcpYI .carousel-indicators .active,
.cid-uR114OcpYI .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uR114OcpYI .carousel-indicators .active {
  background: #fff;
}
.cid-uR114OcpYI .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uR114OcpYI .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uR114OcpYI .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uR114OcpYI .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uR114OcpYI .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uR114OcpYI .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uR114OcpYI .carousel {
  width: 100%;
}
.cid-uR114OcpYI .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uR114OcpYI .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uR114OcpYI .modal.fade .modal-dialog,
.cid-uR114OcpYI .modal.in .modal-dialog {
  transform: none;
}
.cid-uR114OcpYI .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uR114OcpYI H6 {
  text-align: center;
}
.cid-uR114OWbb7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-bianco-3-foglie-1920x1080px2-2000x1125.webp");
}
.cid-uR114OWbb7 .mbr-overlay {
  background-color: #232323;
  opacity: 0.2;
}
.cid-uR114OWbb7 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uR114OWbb7 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uR114OWbb7 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uR114OWbb7 .mbr-section-title {
  text-align: center;
}
.cid-uR114P7FX9 {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-uR114P7FX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR114P7FX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR114P7FX9 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uR114P7FX9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR114P7FX9 .row {
    text-align: center;
  }
  .cid-uR114P7FX9 .social-row {
    justify-content: center;
  }
}
.cid-uR114P7FX9 .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uR114P7FX9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uR114P7FX9 .list {
    margin-bottom: 0rem;
  }
}
.cid-uR114P7FX9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-uR114P7FX9 .mbr-iconfont {
  color: black;
}
.cid-uR114P7FX9 H5 {
  color: #ffffff;
}
.cid-uR114P7FX9 .mbr-section-subtitle {
  text-align: left;
}
.cid-uR114Pn8QK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uR114Pn8QK .mbr-text {
  text-align: center;
}
.cid-v7OjC2mJtC {
  z-index: 1000;
  width: 100%;
}
.cid-v7OjC2mJtC nav.navbar {
  position: fixed;
}
.cid-v7OjC2mJtC .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-v7OjC2mJtC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v7OjC2mJtC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v7OjC2mJtC .dropdown-item:hover,
.cid-v7OjC2mJtC .dropdown-item:focus {
  background: #ffffff !important;
  color: white !important;
}
.cid-v7OjC2mJtC .dropdown-item:hover span {
  color: white;
}
.cid-v7OjC2mJtC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v7OjC2mJtC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v7OjC2mJtC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v7OjC2mJtC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7OjC2mJtC .nav-link {
  position: relative;
}
.cid-v7OjC2mJtC .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7OjC2mJtC .container {
    flex-wrap: wrap;
  }
}
.cid-v7OjC2mJtC .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v7OjC2mJtC .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-v7OjC2mJtC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v7OjC2mJtC .dropdown-menu,
.cid-v7OjC2mJtC .navbar.opened {
  background: #000000 !important;
}
.cid-v7OjC2mJtC .nav-item:focus,
.cid-v7OjC2mJtC .nav-link:focus {
  outline: none;
}
.cid-v7OjC2mJtC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7OjC2mJtC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7OjC2mJtC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7OjC2mJtC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7OjC2mJtC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7OjC2mJtC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7OjC2mJtC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #000000;
}
.cid-v7OjC2mJtC .navbar.opened {
  transition: all 0.3s;
}
.cid-v7OjC2mJtC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v7OjC2mJtC .navbar .navbar-logo img {
  width: auto;
}
.cid-v7OjC2mJtC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v7OjC2mJtC .navbar.collapsed {
  justify-content: center;
}
.cid-v7OjC2mJtC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7OjC2mJtC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v7OjC2mJtC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.4rem);
  }
}
.cid-v7OjC2mJtC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7OjC2mJtC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7OjC2mJtC .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-v7OjC2mJtC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7OjC2mJtC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v7OjC2mJtC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v7OjC2mJtC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7OjC2mJtC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7OjC2mJtC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7OjC2mJtC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7OjC2mJtC .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-v7OjC2mJtC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7OjC2mJtC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v7OjC2mJtC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v7OjC2mJtC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7OjC2mJtC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7OjC2mJtC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v7OjC2mJtC .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v7OjC2mJtC .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7OjC2mJtC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7OjC2mJtC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7OjC2mJtC .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-v7OjC2mJtC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7OjC2mJtC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7OjC2mJtC .dropdown-item.active,
.cid-v7OjC2mJtC .dropdown-item:active {
  background-color: transparent;
}
.cid-v7OjC2mJtC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7OjC2mJtC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7OjC2mJtC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7OjC2mJtC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-v7OjC2mJtC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v7OjC2mJtC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7OjC2mJtC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v7OjC2mJtC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7OjC2mJtC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v7OjC2mJtC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v7OjC2mJtC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7OjC2mJtC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7OjC2mJtC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7OjC2mJtC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7OjC2mJtC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7OjC2mJtC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7OjC2mJtC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7OjC2mJtC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7OjC2mJtC .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v7OjC2mJtC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v7OjC2mJtC .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-v7OjC2mJtC .navbar {
    height: 70px;
  }
  .cid-v7OjC2mJtC .navbar.opened {
    height: auto;
  }
  .cid-v7OjC2mJtC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7OjC2GCYs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7OjC2GCYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7OjC2GCYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7OjC2GCYs .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-v7OjC2GCYs .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v7OjC2GCYs .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-v7OjC2GCYs .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7OjC2GCYs .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-v7OjC2GCYs .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-v7OjC2GCYs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-v7OjC2RiJv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7OjC2RiJv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7OjC2RiJv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7OjC2RiJv .item {
  padding-bottom: 2rem;
}
.cid-v7OjC2RiJv .item-wrapper {
  position: relative;
}
.cid-v7OjC2RiJv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v7OjC2RiJv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v7OjC2RiJv .carousel-control,
.cid-v7OjC2RiJv .close {
  background: #1b1b1b;
}
.cid-v7OjC2RiJv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v7OjC2RiJv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v7OjC2RiJv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v7OjC2RiJv .carousel-control-next span {
  margin-left: 5px;
}
.cid-v7OjC2RiJv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v7OjC2RiJv .close::before {
  content: '\e91a';
}
.cid-v7OjC2RiJv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v7OjC2RiJv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v7OjC2RiJv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7OjC2RiJv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7OjC2RiJv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v7OjC2RiJv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v7OjC2RiJv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v7OjC2RiJv .carousel-indicators li.active,
.cid-v7OjC2RiJv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v7OjC2RiJv .carousel-indicators li::after,
.cid-v7OjC2RiJv .carousel-indicators li::before {
  content: none;
}
.cid-v7OjC2RiJv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v7OjC2RiJv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v7OjC2RiJv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v7OjC2RiJv .carousel-indicators {
    display: none;
  }
}
.cid-v7OjC2RiJv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v7OjC2RiJv .carousel-inner > .active {
  display: block;
}
.cid-v7OjC2RiJv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v7OjC2RiJv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v7OjC2RiJv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v7OjC2RiJv .carousel-control,
  .cid-v7OjC2RiJv .carousel-indicators,
  .cid-v7OjC2RiJv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v7OjC2RiJv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v7OjC2RiJv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v7OjC2RiJv .carousel-indicators .active,
.cid-v7OjC2RiJv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v7OjC2RiJv .carousel-indicators .active {
  background: #fff;
}
.cid-v7OjC2RiJv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v7OjC2RiJv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v7OjC2RiJv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v7OjC2RiJv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v7OjC2RiJv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v7OjC2RiJv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v7OjC2RiJv .carousel {
  width: 100%;
}
.cid-v7OjC2RiJv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v7OjC2RiJv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v7OjC2RiJv .modal.fade .modal-dialog,
.cid-v7OjC2RiJv .modal.in .modal-dialog {
  transform: none;
}
.cid-v7OjC2RiJv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v7OjC2RiJv H6 {
  text-align: center;
}
.cid-v7OjC3vyMR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sfondo-3-foglie-sfumate-1920x1080px2-2000x1125.webp");
}
.cid-v7OjC3vyMR .mbr-overlay {
  background-color: #bbbbbb;
  opacity: 0.4;
}
.cid-v7OjC3vyMR form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-v7OjC3vyMR form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-v7OjC3vyMR form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v7OjC3IKYv {
  padding-top: 1rem;
  padding-bottom: 10rem;
  background-color: #232323;
}
.cid-v7OjC3IKYv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7OjC3IKYv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7OjC3IKYv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-v7OjC3IKYv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v7OjC3IKYv .row {
    text-align: center;
  }
  .cid-v7OjC3IKYv .social-row {
    justify-content: center;
  }
}
.cid-v7OjC3IKYv .list {
  list-style: none;
  padding-left: 0;
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-v7OjC3IKYv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7OjC3IKYv .list {
    margin-bottom: 0rem;
  }
}
.cid-v7OjC3IKYv .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-v7OjC3IKYv .mbr-iconfont {
  color: black;
}
.cid-v7OjC3IKYv H5 {
  color: #ffffff;
}
.cid-v7OjC3IKYv .mbr-section-subtitle {
  text-align: left;
}
.cid-v7OjC42Xjc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-v7OjC42Xjc .mbr-text {
  text-align: center;
  color: #ffffff;
}
