body {
  font-family: Josefin Sans;
}
.display-1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.25rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.6rem;
}
.display-4 {
  font-family: 'Cormorant Upright', serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Cormorant Upright', serif;
  font-size: 1.8rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'Cormorant Upright', serif;
  font-size: 1.3rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #9f3942 !important;
}
.bg-success {
  background-color: #98e38d !important;
}
.bg-info {
  background-color: #69b9d0 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #9f3942 !important;
  border-color: #9f3942 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #67252b !important;
  border-color: #67252b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #67252b !important;
  border-color: #67252b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #f5aeb5 !important;
  border-color: #f5aeb5 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #ed6a77 !important;
  border-color: #ed6a77 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed6a77 !important;
  border-color: #ed6a77 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #69b9d0 !important;
  border-color: #69b9d0 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #3898b4 !important;
  border-color: #3898b4 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #3898b4 !important;
  border-color: #3898b4 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #98e38d !important;
  border-color: #98e38d !important;
  color: #1f5b16 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #1f5b16 !important;
  background-color: #61d450 !important;
  border-color: #61d450 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #1f5b16 !important;
  background-color: #61d450 !important;
  border-color: #61d450 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #541e23;
  color: #541e23;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #9f3942;
  border-color: #9f3942;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #9f3942 !important;
  border-color: #9f3942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #ea5362;
  color: #ea5362;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #f5aeb5;
  border-color: #f5aeb5;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f5aeb5 !important;
  border-color: #f5aeb5 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #3288a1;
  color: #3288a1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #69b9d0;
  border-color: #69b9d0;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #69b9d0 !important;
  border-color: #69b9d0 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #4ecf3b;
  color: #4ecf3b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #1f5b16;
  background-color: #98e38d;
  border-color: #98e38d;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #1f5b16 !important;
  background-color: #98e38d !important;
  border-color: #98e38d !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #111111;
  color: #111111;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #9f3942 !important;
}
.text-secondary {
  color: #f5aeb5 !important;
}
.text-success {
  color: #98e38d !important;
}
.text-info {
  color: #69b9d0 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #541e23 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ea5362 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #4ecf3b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #3288a1 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #98e38d;
}
.alert-info {
  background-color: #69b9d0;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #9f3942;
  border-color: #9f3942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #9f3942;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d3848b;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a {
  border: 2px solid #9f3942;
}
#scrollToTop a i:before {
  background: #9f3942;
}
#scrollToTop a i:after {
  border-top: 2px solid #9f3942;
  border-right: 2px solid #9f3942;
}
.mbr-arrow a i {
  color: #9f3942;
}
.form-control {
  font-family: 'Cormorant Upright', serif;
  font-size: 1.3rem;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #9f3942;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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;
}
.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: #9f3942;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 0;
  background-color: #efefef;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #9f3942;
  border-bottom-color: #9f3942;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #9f3942 !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: #f5aeb5 !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%;
}
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='%239f3942' %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;
}
.cid-tdsa4qn2Xe .nav-item:focus,
.cid-tdsa4qn2Xe .nav-link:focus {
  outline: none;
}
.cid-tdsa4qn2Xe .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tdsa4qn2Xe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdsa4qn2Xe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdsa4qn2Xe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tdsa4qn2Xe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tdsa4qn2Xe .collapsed {
  flex-direction: row!important;
}
.cid-tdsa4qn2Xe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tdsa4qn2Xe .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tdsa4qn2Xe .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tdsa4qn2Xe .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse.show,
.cid-tdsa4qn2Xe .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tdsa4qn2Xe .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tdsa4qn2Xe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tdsa4qn2Xe .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tdsa4qn2Xe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tdsa4qn2Xe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tdsa4qn2Xe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tdsa4qn2Xe .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tdsa4qn2Xe .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tdsa4qn2Xe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tdsa4qn2Xe .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tdsa4qn2Xe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tdsa4qn2Xe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tdsa4qn2Xe .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tdsa4qn2Xe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tdsa4qn2Xe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tdsa4qn2Xe .dropdown-item.active,
.cid-tdsa4qn2Xe .dropdown-item:active {
  background-color: transparent;
}
.cid-tdsa4qn2Xe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tdsa4qn2Xe .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tdsa4qn2Xe .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tdsa4qn2Xe .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tdsa4qn2Xe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tdsa4qn2Xe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tdsa4qn2Xe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdsa4qn2Xe ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tdsa4qn2Xe .navbar-buttons {
  text-align: inherit;
}
.cid-tdsa4qn2Xe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdsa4qn2Xe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tdsa4qn2Xe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tdsa4qn2Xe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdsa4qn2Xe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tdsa4qn2Xe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tdsa4qn2Xe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdsa4qn2Xe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tdsa4qn2Xe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tdsa4qn2Xe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tdsa4qn2Xe .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tdsa4qn2Xe .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tdsa4qn2Xe .icons-menu {
  text-align: inherit;
}
.cid-tdsa4qn2Xe .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tdsa4qn2Xe .nav-link:hover,
.cid-tdsa4qn2Xe .dropdown-item:hover,
.cid-tdsa4qn2Xe .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tdsa4qn2Xe .navbar {
    height: 77px;
  }
  .cid-tdsa4qn2Xe .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tdsa4qn2Xe .navbar-collapse .img-column {
    display: none;
  }
  .cid-tdsa4qn2Xe .icons-menu,
  .cid-tdsa4qn2Xe .navbar-buttons,
  .cid-tdsa4qn2Xe .contact-block,
  .cid-tdsa4qn2Xe .text-column {
    text-align: center !important;
  }
}
.cid-tdsXZeuj1s {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-interni-con-tv-2000x1283.jpg");
}
.cid-tdsXZeuj1s .mbr-overlay {
  background: #232323;
}
.cid-tdsXZeuj1s .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tdsXZeuj1s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdsXZeuj1s .mbr-text,
.cid-tdsXZeuj1s .mbr-section-btn {
  color: #ffffff;
}
.cid-tjjMioG8Ii {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjjMioG8Ii .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  writing-mode: vertical-rl;
}
.cid-tjjMioG8Ii .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjjMioG8Ii .box {
  width: 25%;
  height: 40%;
  background: #e2f7df;
  position: absolute;
  top: 4%;
}
.cid-tjjMioG8Ii .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tjjMioG8Ii .box {
  right: 20%;
}
.cid-tjjMioG8Ii .text-box {
  right: 0;
}
.cid-tjjMioG8Ii .mbr-section-title,
.cid-tjjMioG8Ii .mbr-section-text {
  margin-right: 31%;
  margin-right: 0;
}
@media (max-width: 991px) {
  .cid-tjjMioG8Ii .text-box {
    display: none;
  }
  .cid-tjjMioG8Ii .mbr-section-title,
  .cid-tjjMioG8Ii .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjjMioG8Ii .box {
    display: none;
  }
  .cid-tjjMioG8Ii .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjjMioG8Ii .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjjMioG8Ii .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjjMioG8Ii .mbr-section-title {
  color: #9f3942;
  text-align: center;
}
.cid-tjjMioG8Ii .mbr-section-text {
  color: #000000;
}
.cid-tjjKNK78iH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tdsa8J2YgZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-interni-ordinati-2000x1280.jpg");
}
.cid-tdsa8J2YgZ .text-block {
  z-index: 2;
}
.cid-tdsa8J2YgZ .content-panel {
  width: 110%;
  background: #ffffff;
  padding: 3rem;
}
.cid-tdsa8J2YgZ .menu-box {
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tdsa8J2YgZ .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: auto;
  word-break: break-word;
}
.cid-tdsa8J2YgZ .item-title {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tdsa8J2YgZ .text-block {
    padding-bottom: 2rem;
  }
  .cid-tdsa8J2YgZ .content-panel {
    width: 100%;
    padding: 1rem;
  }
}
.cid-tdsa8J2YgZ H3 {
  color: #9f3942;
}
.cid-tjjKZMLeOw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjjKZMLeOw .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjjKZMLeOw .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjjKZMLeOw .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjjKZMLeOw .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tjjKZMLeOw .box {
  right: 20%;
}
.cid-tjjKZMLeOw .text-box {
  right: 0;
}
.cid-tjjKZMLeOw .mbr-section-title,
.cid-tjjKZMLeOw .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-tjjKZMLeOw .text-box {
    display: none;
  }
  .cid-tjjKZMLeOw .mbr-section-title,
  .cid-tjjKZMLeOw .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjjKZMLeOw .box {
    display: none;
  }
  .cid-tjjKZMLeOw .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjjKZMLeOw .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjjKZMLeOw .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjjPpa12lk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uled5wIuNf .modal-body .close {
  background: #1b1b1b;
}
.cid-uled5wIuNf .modal-body .close span {
  font-style: normal;
}
.cid-uled5wIuNf .carousel-inner > .active,
.cid-uled5wIuNf .carousel-inner > .next,
.cid-uled5wIuNf .carousel-inner > .prev {
  display: flex;
}
.cid-uled5wIuNf .carousel-control .icon-next,
.cid-uled5wIuNf .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uled5wIuNf .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uled5wIuNf .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uled5wIuNf .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uled5wIuNf .boxed-slider > div {
  position: relative;
}
.cid-uled5wIuNf .container img {
  width: 100%;
}
.cid-uled5wIuNf .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uled5wIuNf .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uled5wIuNf .mbr-table-cell {
  padding: 0;
}
.cid-uled5wIuNf .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uled5wIuNf .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uled5wIuNf .mbr-overlay {
  z-index: 1;
}
.cid-uled5wIuNf .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uled5wIuNf .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-uled5wIuNf .carousel-item.active.right,
.cid-uled5wIuNf .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uled5wIuNf .carousel-item.active.left,
.cid-uled5wIuNf .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-uled5wIuNf .carousel-item.active,
.cid-uled5wIuNf .carousel-item.next.left,
.cid-uled5wIuNf .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-uled5wIuNf .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 11;
}
.cid-uled5wIuNf .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uled5wIuNf .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uled5wIuNf .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uled5wIuNf .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uled5wIuNf .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uled5wIuNf .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  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-uled5wIuNf .mbr-slider .carousel-indicators li.active,
.cid-uled5wIuNf .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uled5wIuNf .mbr-slider .carousel-indicators li::after,
.cid-uled5wIuNf .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uled5wIuNf .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uled5wIuNf .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uled5wIuNf .mbr-slider > .container img {
  width: 100%;
}
.cid-uled5wIuNf .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uled5wIuNf .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uled5wIuNf .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uled5wIuNf .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uled5wIuNf .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uled5wIuNf .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-uled5wIuNf .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uled5wIuNf .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-uled5wIuNf .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uled5wIuNf .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uled5wIuNf .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uled5wIuNf .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uled5wIuNf .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tdsadA7Ztd {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tdsadA7Ztd .content-block {
  text-align: center;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  background-color: #efefef;
  transition: all 0.4s ease-in-out;
}
.cid-tdsadA7Ztd .content-block .mbr-text {
  margin: 0;
}
.cid-tdsadA7Ztd .content-section {
  height: 100%;
  padding: 0 3rem;
  margin-bottom: 2rem;
}
.cid-tdsadA7Ztd .image-wrap:hover img {
  opacity: 1;
  -webkit-transform: translateY(-4%);
  transform: translateY(-4%);
}
.cid-tdsadA7Ztd .image-wrap:hover > .content-block {
  opacity: 0.6;
}
.cid-tdsadA7Ztd .image-wrap {
  width: 100%;
  height: 100%;
}
.cid-tdsadA7Ztd .image-wrap img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.cid-tdsadA7Ztd h4.mbr-text a {
  display: block;
  min-width: 100%;
}
.cid-tdsadA7Ztd .mbr-section-title {
  text-align: center;
}
.cid-tdsagxw1gF {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tdsagxw1gF .mbr-text {
  color: #444444;
}
.cid-tdsagxw1gF .card-title {
  color: #f9e2af;
}
.cid-tdsagxw1gF .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tdsagxw1gF .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tdsagxw1gF .card-title,
.cid-tdsagxw1gF .card-img {
  color: #9f3942;
}
.cid-tdsalc3jev {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tdsalc3jev .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tdsalc3jev .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdsalc3jev .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdsalc3jev .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tdsalc3jev .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #9f3942);
}
.cid-tdsalc3jev .icon-focus {
  display: none;
}
.cid-tdsalc3jev .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tdsalc3jev ul {
  font-size: 0;
}
.cid-tdsalc3jev .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tdsalc3jev .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tdsalc3jev .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9f3942, #f5aeb5);
}
.cid-tdsalc3jev .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tdsalc3jev .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tdsalc3jev .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tdsalc3jev .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tdsalc3jev .btn:hover {
  background: transparent !important;
}
.cid-tdsalc3jev .btn:hover:before {
  background: transparent !important;
}
.cid-tdsalc3jev .btn:before {
  background-color: transparent !important;
}
.cid-tdsalc3jev .btn:focus {
  box-shadow: none;
}
.cid-tdsalc3jev .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tdsapLstMP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #e2f7df;
}
.cid-tdsapLstMP .mbr-section-subtitle {
  color: #444444;
}
.cid-tdsapLstMP .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tdsapLstMP .mbr-text {
  color: #444444;
}
.cid-tdsapLstMP .mbr-author-desc {
  display: block;
  color: #444444;
}
.cid-tdsapLstMP .mbr-author-name {
  color: #444444;
}
.cid-tdsapLstMP .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-tdsapLstMP .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-tdsapLstMP .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tdsapLstMP .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tdsapLstMP .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-tdsapLstMP .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tdsaoKPt97 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdsaoKPt97 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tdsaoKPt97 .carousel-item.active,
.cid-tdsaoKPt97 .carousel-item-next,
.cid-tdsaoKPt97 .carousel-item-prev {
  display: flex;
}
.cid-tdsaoKPt97 .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 2rem;
}
.cid-tdsaoKPt97 .carousel-controls a span {
  position: absolute;
  top: 180px;
  padding: 10px;
  border-radius: 50%;
  color: #000000;
  background: #ffffff;
  opacity: 0.9;
}
.cid-tdsaoKPt97 .carousel-controls a:hover span {
  opacity: 1;
}
.cid-tdsaoKPt97 .user {
  padding: 3rem;
  background: transparent;
}
.cid-tdsaoKPt97 .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  margin: 0 auto 2rem auto;
  display: flex;
  -webkit-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -ms-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
  box-shadow: 0 7px 20px 5px rgba(0, 0, 0, 0.08);
}
.cid-tdsaoKPt97 .user_image .user_image_inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: auto;
}
.cid-tdsaoKPt97 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tdsaoKPt97 .user_text {
  color: #444444;
}
@media (max-width: 230px) {
  .cid-tdsaoKPt97 .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tdsatZJklv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdsatZJklv .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tdsatZJklv .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tdsatZJklv .links-block ul li {
  margin: 0 1rem;
}
.cid-tdsatZJklv .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tdsatZJklv .links-block ul,
.cid-tdsatZJklv .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tdsatZJklv .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-m {
  /* Type valid CSS here */
}
#custom-html-m div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-m p {
  font-size: 60px;
  color: #777;
}
.cid-tjnVOvp3AG .nav-item:focus,
.cid-tjnVOvp3AG .nav-link:focus {
  outline: none;
}
.cid-tjnVOvp3AG .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tjnVOvp3AG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjnVOvp3AG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjnVOvp3AG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjnVOvp3AG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjnVOvp3AG .collapsed {
  flex-direction: row!important;
}
.cid-tjnVOvp3AG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjnVOvp3AG .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tjnVOvp3AG .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tjnVOvp3AG .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tjnVOvp3AG .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tjnVOvp3AG .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tjnVOvp3AG .navbar .navbar-collapse.show,
.cid-tjnVOvp3AG .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tjnVOvp3AG .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tjnVOvp3AG .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tjnVOvp3AG .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tjnVOvp3AG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tjnVOvp3AG .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tjnVOvp3AG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjnVOvp3AG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjnVOvp3AG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tjnVOvp3AG .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tjnVOvp3AG .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tjnVOvp3AG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tjnVOvp3AG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tjnVOvp3AG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjnVOvp3AG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjnVOvp3AG .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjnVOvp3AG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjnVOvp3AG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjnVOvp3AG .dropdown-item.active,
.cid-tjnVOvp3AG .dropdown-item:active {
  background-color: transparent;
}
.cid-tjnVOvp3AG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjnVOvp3AG .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tjnVOvp3AG .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tjnVOvp3AG .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tjnVOvp3AG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjnVOvp3AG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjnVOvp3AG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjnVOvp3AG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjnVOvp3AG .navbar-buttons {
  text-align: inherit;
}
.cid-tjnVOvp3AG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tjnVOvp3AG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tjnVOvp3AG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjnVOvp3AG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjnVOvp3AG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjnVOvp3AG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjnVOvp3AG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjnVOvp3AG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjnVOvp3AG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjnVOvp3AG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjnVOvp3AG .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tjnVOvp3AG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjnVOvp3AG .icons-menu {
  text-align: inherit;
}
.cid-tjnVOvp3AG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tjnVOvp3AG .nav-link:hover,
.cid-tjnVOvp3AG .dropdown-item:hover,
.cid-tjnVOvp3AG .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjnVOvp3AG .navbar {
    height: 77px;
  }
  .cid-tjnVOvp3AG .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjnVOvp3AG .navbar-collapse .img-column {
    display: none;
  }
  .cid-tjnVOvp3AG .icons-menu,
  .cid-tjnVOvp3AG .navbar-buttons,
  .cid-tjnVOvp3AG .contact-block,
  .cid-tjnVOvp3AG .text-column {
    text-align: center !important;
  }
}
.cid-tjnVOwbSRU {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-esterno-con-menu-2000x1279.jpg");
}
.cid-tjnVOwbSRU .mbr-overlay {
  background: #232323;
}
.cid-tjnVOwbSRU .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tjnVOwbSRU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjnVOwbSRU .mbr-text,
.cid-tjnVOwbSRU .mbr-section-btn {
  color: #ffffff;
}
.cid-tjnWqp0qQJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjnWqp0qQJ .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjnWqp0qQJ .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjnWqp0qQJ .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjnWqp0qQJ .box {
  left: 20%;
}
.cid-tjnWqp0qQJ .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tjnWqp0qQJ .mbr-section-text,
.cid-tjnWqp0qQJ .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tjnWqp0qQJ .text-box {
    display: none;
  }
  .cid-tjnWqp0qQJ .mbr-section-title,
  .cid-tjnWqp0qQJ .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjnWqp0qQJ .box {
    display: none;
  }
  .cid-tjnWqp0qQJ .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjnWqp0qQJ .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjnWqp0qQJ .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjnVOwQlRW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjoVPyimFE {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-decorazione-2000x1125.jpg");
}
.cid-tjoWFLLHEp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjoWFLLHEp .mbr-text {
  position: relative;
}
.cid-tjoWFLLHEp .mbr-text:before {
  color: #333333;
  content: '\201C';
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-tjoWFLLHEp .mbr-text:after {
  color: #333333;
  content: '\201D';
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
.cid-tjoWFLLHEp .logo img {
  width: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-tjoWFLLHEp .mbr-text:after,
  .cid-tjoWFLLHEp .mbr-text:before {
    display: none;
  }
}
.cid-tjoWOL3zmr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjoWOL3zmr .mbr-text {
  position: relative;
}
.cid-tjoWOL3zmr .mbr-text:before {
  color: #333333;
  content: '\201C';
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-tjoWOL3zmr .mbr-text:after {
  color: #333333;
  content: '\201D';
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
.cid-tjoWOL3zmr .logo img {
  width: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-tjoWOL3zmr .mbr-text:after,
  .cid-tjoWOL3zmr .mbr-text:before {
    display: none;
  }
}
.cid-tjnVOx1XzB {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-interni-ordinati-2000x1280.jpg");
}
.cid-tjnVOx1XzB .text-block {
  z-index: 2;
}
.cid-tjnVOx1XzB .content-panel {
  width: 110%;
  background: #ffffff;
  padding: 3rem;
}
.cid-tjnVOx1XzB .menu-box {
  display: flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjnVOx1XzB .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-left: auto;
  word-break: break-word;
}
.cid-tjnVOx1XzB .item-title {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tjnVOx1XzB .text-block {
    padding-bottom: 2rem;
  }
  .cid-tjnVOx1XzB .content-panel {
    width: 100%;
    padding: 1rem;
  }
}
.cid-tjnVOx1XzB H3 {
  color: #9f3942;
}
.cid-tjnVOxp3yG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjnVOxp3yG .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjnVOxp3yG .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjnVOxp3yG .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjnVOxp3yG .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tjnVOxp3yG .box {
  right: 20%;
}
.cid-tjnVOxp3yG .text-box {
  right: 0;
}
.cid-tjnVOxp3yG .mbr-section-title,
.cid-tjnVOxp3yG .mbr-section-text {
  margin-right: 31%;
}
@media (max-width: 991px) {
  .cid-tjnVOxp3yG .text-box {
    display: none;
  }
  .cid-tjnVOxp3yG .mbr-section-title,
  .cid-tjnVOxp3yG .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjnVOxp3yG .box {
    display: none;
  }
  .cid-tjnVOxp3yG .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjnVOxp3yG .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjnVOxp3yG .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjnVOxPVHI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjnVOympzv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjnVOympzv .mbr-text {
  color: #444444;
}
.cid-tjnVOympzv .card-title {
  color: #f9e2af;
}
.cid-tjnVOympzv .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tjnVOympzv .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tjnVOympzv .card-title,
.cid-tjnVOympzv .card-img {
  color: #9f3942;
}
.cid-tjnVOyOWDg {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tjnVOyOWDg .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tjnVOyOWDg .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjnVOyOWDg .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjnVOyOWDg .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tjnVOyOWDg .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #9f3942);
}
.cid-tjnVOyOWDg .icon-focus {
  display: none;
}
.cid-tjnVOyOWDg .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tjnVOyOWDg ul {
  font-size: 0;
}
.cid-tjnVOyOWDg .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tjnVOyOWDg .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tjnVOyOWDg .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9f3942, #f5aeb5);
}
.cid-tjnVOyOWDg .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tjnVOyOWDg .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tjnVOyOWDg .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tjnVOyOWDg .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tjnVOyOWDg .btn:hover {
  background: transparent !important;
}
.cid-tjnVOyOWDg .btn:hover:before {
  background: transparent !important;
}
.cid-tjnVOyOWDg .btn:before {
  background-color: transparent !important;
}
.cid-tjnVOyOWDg .btn:focus {
  box-shadow: none;
}
.cid-tjnVOyOWDg .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tjnVOAmAPk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjnVOAmAPk .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tjnVOAmAPk .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tjnVOAmAPk .links-block ul li {
  margin: 0 1rem;
}
.cid-tjnVOAmAPk .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tjnVOAmAPk .links-block ul,
.cid-tjnVOAmAPk .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tjnVOAmAPk .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-11 {
  /* Type valid CSS here */
}
#custom-html-11 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-11 p {
  font-size: 60px;
  color: #777;
}
.cid-tjp4cBtVmI .nav-item:focus,
.cid-tjp4cBtVmI .nav-link:focus {
  outline: none;
}
.cid-tjp4cBtVmI .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tjp4cBtVmI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4cBtVmI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjp4cBtVmI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjp4cBtVmI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4cBtVmI .collapsed {
  flex-direction: row!important;
}
.cid-tjp4cBtVmI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjp4cBtVmI .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tjp4cBtVmI .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tjp4cBtVmI .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tjp4cBtVmI .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tjp4cBtVmI .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tjp4cBtVmI .navbar .navbar-collapse.show,
.cid-tjp4cBtVmI .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tjp4cBtVmI .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tjp4cBtVmI .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tjp4cBtVmI .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tjp4cBtVmI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tjp4cBtVmI .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tjp4cBtVmI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjp4cBtVmI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjp4cBtVmI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tjp4cBtVmI .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tjp4cBtVmI .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tjp4cBtVmI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tjp4cBtVmI .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tjp4cBtVmI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjp4cBtVmI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjp4cBtVmI .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjp4cBtVmI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjp4cBtVmI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjp4cBtVmI .dropdown-item.active,
.cid-tjp4cBtVmI .dropdown-item:active {
  background-color: transparent;
}
.cid-tjp4cBtVmI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjp4cBtVmI .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tjp4cBtVmI .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tjp4cBtVmI .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tjp4cBtVmI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjp4cBtVmI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjp4cBtVmI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjp4cBtVmI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjp4cBtVmI .navbar-buttons {
  text-align: inherit;
}
.cid-tjp4cBtVmI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tjp4cBtVmI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tjp4cBtVmI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjp4cBtVmI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4cBtVmI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4cBtVmI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjp4cBtVmI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4cBtVmI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjp4cBtVmI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjp4cBtVmI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4cBtVmI .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tjp4cBtVmI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjp4cBtVmI .icons-menu {
  text-align: inherit;
}
.cid-tjp4cBtVmI .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tjp4cBtVmI .nav-link:hover,
.cid-tjp4cBtVmI .dropdown-item:hover,
.cid-tjp4cBtVmI .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4cBtVmI .navbar {
    height: 77px;
  }
  .cid-tjp4cBtVmI .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4cBtVmI .navbar-collapse .img-column {
    display: none;
  }
  .cid-tjp4cBtVmI .icons-menu,
  .cid-tjp4cBtVmI .navbar-buttons,
  .cid-tjp4cBtVmI .contact-block,
  .cid-tjp4cBtVmI .text-column {
    text-align: center !important;
  }
}
.cid-tjp4cCfIeU {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-sala-2000x1276.jpg");
}
.cid-tjp4cCfIeU .mbr-overlay {
  background: #232323;
}
.cid-tjp4cCfIeU .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tjp4cCfIeU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjp4cCfIeU .mbr-text,
.cid-tjp4cCfIeU .mbr-section-btn {
  color: #ffffff;
}
.cid-tjp4cCHdu4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4cCHdu4 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjp4cCHdu4 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjp4cCHdu4 .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjp4cCHdu4 .box {
  left: 20%;
}
.cid-tjp4cCHdu4 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tjp4cCHdu4 .mbr-section-text,
.cid-tjp4cCHdu4 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tjp4cCHdu4 .text-box {
    display: none;
  }
  .cid-tjp4cCHdu4 .mbr-section-title,
  .cid-tjp4cCHdu4 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4cCHdu4 .box {
    display: none;
  }
  .cid-tjp4cCHdu4 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjp4cCHdu4 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4cCHdu4 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjp4cD25Et {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjplcvkJzQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjplcvkJzQ .mbr-text {
  position: relative;
}
.cid-tjplcvkJzQ .mbr-text:before {
  color: #333333;
  content: '\201C';
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-tjplcvkJzQ .mbr-text:after {
  color: #333333;
  content: '\201D';
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
.cid-tjplcvkJzQ .logo img {
  width: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-tjplcvkJzQ .mbr-text:after,
  .cid-tjplcvkJzQ .mbr-text:before {
    display: none;
  }
}
#custom-html-2v {
  /* Type valid CSS here */
}
#custom-html-2v div {
  padding: 80px 0;
  color: #777;
  text-align: center;
  margin: auto;
}
#custom-html-2v p {
  font-size: 1em;
  color: #777;
}
.cid-tjpiSzLN3R {
  background: #ffffff;
}
.cid-tjpiSzLN3R .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tjpiSzLN3R .image-block img {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tjpiSzLN3R .image-block {
    width: 100% !important;
  }
}
.cid-tjppN0KYWn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjp4cEO8sI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjp4cF2sjC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4cF2sjC .mbr-text {
  color: #444444;
}
.cid-tjp4cF2sjC .card-title {
  color: #f9e2af;
}
.cid-tjp4cF2sjC .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tjp4cF2sjC .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tjp4cF2sjC .card-title,
.cid-tjp4cF2sjC .card-img {
  color: #9f3942;
}
.cid-tjp4cGZX3s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjp4cGZX3s .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tjp4cGZX3s .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tjp4cGZX3s .links-block ul li {
  margin: 0 1rem;
}
.cid-tjp4cGZX3s .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tjp4cGZX3s .links-block ul,
.cid-tjp4cGZX3s .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tjp4cGZX3s .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-1k {
  /* Type valid CSS here */
}
#custom-html-1k div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1k p {
  font-size: 60px;
  color: #777;
}
.cid-tjp4xZmy53 .nav-item:focus,
.cid-tjp4xZmy53 .nav-link:focus {
  outline: none;
}
.cid-tjp4xZmy53 .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tjp4xZmy53 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4xZmy53 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjp4xZmy53 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjp4xZmy53 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4xZmy53 .collapsed {
  flex-direction: row!important;
}
.cid-tjp4xZmy53 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjp4xZmy53 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tjp4xZmy53 .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tjp4xZmy53 .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tjp4xZmy53 .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tjp4xZmy53 .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tjp4xZmy53 .navbar .navbar-collapse.show,
.cid-tjp4xZmy53 .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tjp4xZmy53 .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tjp4xZmy53 .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tjp4xZmy53 .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tjp4xZmy53 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tjp4xZmy53 .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tjp4xZmy53 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjp4xZmy53 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjp4xZmy53 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tjp4xZmy53 .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tjp4xZmy53 .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tjp4xZmy53 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tjp4xZmy53 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tjp4xZmy53 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjp4xZmy53 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjp4xZmy53 .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjp4xZmy53 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjp4xZmy53 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjp4xZmy53 .dropdown-item.active,
.cid-tjp4xZmy53 .dropdown-item:active {
  background-color: transparent;
}
.cid-tjp4xZmy53 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjp4xZmy53 .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tjp4xZmy53 .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tjp4xZmy53 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tjp4xZmy53 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjp4xZmy53 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjp4xZmy53 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjp4xZmy53 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjp4xZmy53 .navbar-buttons {
  text-align: inherit;
}
.cid-tjp4xZmy53 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tjp4xZmy53 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tjp4xZmy53 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjp4xZmy53 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4xZmy53 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4xZmy53 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjp4xZmy53 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4xZmy53 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjp4xZmy53 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjp4xZmy53 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4xZmy53 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tjp4xZmy53 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjp4xZmy53 .icons-menu {
  text-align: inherit;
}
.cid-tjp4xZmy53 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tjp4xZmy53 .nav-link:hover,
.cid-tjp4xZmy53 .dropdown-item:hover,
.cid-tjp4xZmy53 .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4xZmy53 .navbar {
    height: 77px;
  }
  .cid-tjp4xZmy53 .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4xZmy53 .navbar-collapse .img-column {
    display: none;
  }
  .cid-tjp4xZmy53 .icons-menu,
  .cid-tjp4xZmy53 .navbar-buttons,
  .cid-tjp4xZmy53 .contact-block,
  .cid-tjp4xZmy53 .text-column {
    text-align: center !important;
  }
}
.cid-tjp4xZPY5p {
  background-image: url("../../../assets/images/staff-ristorante-osteria-del-vettore-2000x1500.jpg");
}
.cid-tjp4xZPY5p .mbr-overlay {
  background: #232323;
}
.cid-tjp4xZPY5p .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tjp4xZPY5p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjp4xZPY5p .mbr-text,
.cid-tjp4xZPY5p .mbr-section-btn {
  color: #ffffff;
}
.cid-tjp4y05Dj2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4y05Dj2 .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjp4y05Dj2 .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjp4y05Dj2 .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjp4y05Dj2 .box {
  left: 20%;
}
.cid-tjp4y05Dj2 .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tjp4y05Dj2 .mbr-section-text,
.cid-tjp4y05Dj2 .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tjp4y05Dj2 .text-box {
    display: none;
  }
  .cid-tjp4y05Dj2 .mbr-section-title,
  .cid-tjp4y05Dj2 .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4y05Dj2 .box {
    display: none;
  }
  .cid-tjp4y05Dj2 .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjp4y05Dj2 .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4y05Dj2 .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjp4y0muOk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjp4y0xXO3 {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-sotto-vettore-2000x1500.jpg");
}
#custom-html-2x {
  /* Type valid CSS here */
}
#custom-html-2x div {
  padding: 80px 0;
  color: #777;
  text-align: center;
  margin: auto;
}
#custom-html-2x p {
  font-size: 1em;
  color: #777;
}
.cid-tjp4y1LkKP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjp4y1Wkmq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4y1Wkmq .mbr-text {
  color: #444444;
}
.cid-tjp4y1Wkmq .card-title {
  color: #f9e2af;
}
.cid-tjp4y1Wkmq .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tjp4y1Wkmq .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tjp4y1Wkmq .card-title,
.cid-tjp4y1Wkmq .card-img {
  color: #9f3942;
}
.cid-tjp4y2PbgA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjp4y2PbgA .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tjp4y2PbgA .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tjp4y2PbgA .links-block ul li {
  margin: 0 1rem;
}
.cid-tjp4y2PbgA .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tjp4y2PbgA .links-block ul,
.cid-tjp4y2PbgA .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tjp4y2PbgA .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-2t {
  /* Type valid CSS here */
}
#custom-html-2t div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2t p {
  font-size: 60px;
  color: #777;
}
.cid-tjp4tN2GVF .nav-item:focus,
.cid-tjp4tN2GVF .nav-link:focus {
  outline: none;
}
.cid-tjp4tN2GVF .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tjp4tN2GVF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4tN2GVF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjp4tN2GVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjp4tN2GVF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjp4tN2GVF .collapsed {
  flex-direction: row!important;
}
.cid-tjp4tN2GVF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjp4tN2GVF .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tjp4tN2GVF .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tjp4tN2GVF .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tjp4tN2GVF .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tjp4tN2GVF .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tjp4tN2GVF .navbar .navbar-collapse.show,
.cid-tjp4tN2GVF .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tjp4tN2GVF .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tjp4tN2GVF .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tjp4tN2GVF .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tjp4tN2GVF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tjp4tN2GVF .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tjp4tN2GVF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjp4tN2GVF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjp4tN2GVF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tjp4tN2GVF .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tjp4tN2GVF .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tjp4tN2GVF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tjp4tN2GVF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tjp4tN2GVF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjp4tN2GVF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjp4tN2GVF .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjp4tN2GVF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjp4tN2GVF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjp4tN2GVF .dropdown-item.active,
.cid-tjp4tN2GVF .dropdown-item:active {
  background-color: transparent;
}
.cid-tjp4tN2GVF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjp4tN2GVF .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tjp4tN2GVF .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tjp4tN2GVF .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tjp4tN2GVF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjp4tN2GVF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjp4tN2GVF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjp4tN2GVF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjp4tN2GVF .navbar-buttons {
  text-align: inherit;
}
.cid-tjp4tN2GVF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tjp4tN2GVF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tjp4tN2GVF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjp4tN2GVF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4tN2GVF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjp4tN2GVF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjp4tN2GVF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4tN2GVF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjp4tN2GVF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjp4tN2GVF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjp4tN2GVF .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tjp4tN2GVF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjp4tN2GVF .icons-menu {
  text-align: inherit;
}
.cid-tjp4tN2GVF .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tjp4tN2GVF .nav-link:hover,
.cid-tjp4tN2GVF .dropdown-item:hover,
.cid-tjp4tN2GVF .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4tN2GVF .navbar {
    height: 77px;
  }
  .cid-tjp4tN2GVF .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4tN2GVF .navbar-collapse .img-column {
    display: none;
  }
  .cid-tjp4tN2GVF .icons-menu,
  .cid-tjp4tN2GVF .navbar-buttons,
  .cid-tjp4tN2GVF .contact-block,
  .cid-tjp4tN2GVF .text-column {
    text-align: center !important;
  }
}
.cid-tjp4tNz4Bs {
  background-image: url("../../../assets/images/castelluccio-piangrande-con-neve-gelo-2000x1496.jpg");
}
.cid-tjp4tNz4Bs .mbr-overlay {
  background: #232323;
}
.cid-tjp4tNz4Bs .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tjp4tNz4Bs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjp4tNz4Bs .mbr-text,
.cid-tjp4tNz4Bs .mbr-section-btn {
  color: #ffffff;
}
.cid-tjp4tNT08h {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4tNT08h .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tjp4tNT08h .text-block {
  position: relative;
  z-index: 0;
}
.cid-tjp4tNT08h .box {
  width: 25%;
  height: 40%;
  background: #fac4c9;
  position: absolute;
  top: 4%;
}
.cid-tjp4tNT08h .box {
  left: 20%;
}
.cid-tjp4tNT08h .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tjp4tNT08h .mbr-section-text,
.cid-tjp4tNT08h .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tjp4tNT08h .text-box {
    display: none;
  }
  .cid-tjp4tNT08h .mbr-section-title,
  .cid-tjp4tNT08h .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjp4tNT08h .box {
    display: none;
  }
  .cid-tjp4tNT08h .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tjp4tNT08h .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjp4tNT08h .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tjp4tOaI12 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjp4tOoglM {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavolo-e-un-bicchier-di-vino-2000x1500.jpg");
}
.cid-tjp4tQ7Pau {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tjp4tQ7Pau .mbr-text {
  color: #444444;
}
.cid-tjp4tQ7Pau .card-title {
  color: #f9e2af;
}
.cid-tjp4tQ7Pau .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tjp4tQ7Pau .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tjp4tQ7Pau .card-title,
.cid-tjp4tQ7Pau .card-img {
  color: #9f3942;
}
.cid-tjp4tQBOnc {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-tjp4tQBOnc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tjp4tQBOnc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tjp4tQBOnc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tjp4tQBOnc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tjp4tQBOnc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #ffffff, #9f3942);
}
.cid-tjp4tQBOnc .icon-focus {
  display: none;
}
.cid-tjp4tQBOnc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  top: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-tjp4tQBOnc ul {
  font-size: 0;
}
.cid-tjp4tQBOnc .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-tjp4tQBOnc .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-tjp4tQBOnc .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9f3942, #f5aeb5);
}
.cid-tjp4tQBOnc .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-tjp4tQBOnc .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-tjp4tQBOnc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-tjp4tQBOnc .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-tjp4tQBOnc .btn:hover {
  background: transparent !important;
}
.cid-tjp4tQBOnc .btn:hover:before {
  background: transparent !important;
}
.cid-tjp4tQBOnc .btn:before {
  background-color: transparent !important;
}
.cid-tjp4tQBOnc .btn:focus {
  box-shadow: none;
}
.cid-tjp4tQBOnc .mbr-section-title {
  position: relative;
  z-index: 1;
}
.cid-tjp4tRbCeL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjp4tRbCeL .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tjp4tRbCeL .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tjp4tRbCeL .links-block ul li {
  margin: 0 1rem;
}
.cid-tjp4tRbCeL .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tjp4tRbCeL .links-block ul,
.cid-tjp4tRbCeL .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tjp4tRbCeL .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-2e {
  /* Type valid CSS here */
}
#custom-html-2e div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-2e p {
  font-size: 60px;
  color: #777;
}
.cid-tjptuQURXO .nav-item:focus,
.cid-tjptuQURXO .nav-link:focus {
  outline: none;
}
.cid-tjptuQURXO .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tjptuQURXO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjptuQURXO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tjptuQURXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tjptuQURXO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tjptuQURXO .collapsed {
  flex-direction: row!important;
}
.cid-tjptuQURXO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tjptuQURXO .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tjptuQURXO .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tjptuQURXO .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tjptuQURXO .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tjptuQURXO .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tjptuQURXO .navbar .navbar-collapse.show,
.cid-tjptuQURXO .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tjptuQURXO .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tjptuQURXO .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tjptuQURXO .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tjptuQURXO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tjptuQURXO .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tjptuQURXO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tjptuQURXO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tjptuQURXO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tjptuQURXO .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tjptuQURXO .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tjptuQURXO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tjptuQURXO .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tjptuQURXO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tjptuQURXO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tjptuQURXO .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tjptuQURXO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tjptuQURXO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tjptuQURXO .dropdown-item.active,
.cid-tjptuQURXO .dropdown-item:active {
  background-color: transparent;
}
.cid-tjptuQURXO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tjptuQURXO .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tjptuQURXO .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tjptuQURXO .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tjptuQURXO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tjptuQURXO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tjptuQURXO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tjptuQURXO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tjptuQURXO .navbar-buttons {
  text-align: inherit;
}
.cid-tjptuQURXO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tjptuQURXO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tjptuQURXO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tjptuQURXO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjptuQURXO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tjptuQURXO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tjptuQURXO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjptuQURXO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tjptuQURXO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tjptuQURXO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tjptuQURXO .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tjptuQURXO .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tjptuQURXO .icons-menu {
  text-align: inherit;
}
.cid-tjptuQURXO .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tjptuQURXO .nav-link:hover,
.cid-tjptuQURXO .dropdown-item:hover,
.cid-tjptuQURXO .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tjptuQURXO .navbar {
    height: 77px;
  }
  .cid-tjptuQURXO .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tjptuQURXO .navbar-collapse .img-column {
    display: none;
  }
  .cid-tjptuQURXO .icons-menu,
  .cid-tjptuQURXO .navbar-buttons,
  .cid-tjptuQURXO .contact-block,
  .cid-tjptuQURXO .text-column {
    text-align: center !important;
  }
}
.cid-tjptuRwhox {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tjptuRwhox .mbr-overlay {
  background: #232323;
}
.cid-tjptuRwhox .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #444444;
}
.cid-tjptuRwhox .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjptuRwhox .mbr-text,
.cid-tjptuRwhox .mbr-section-btn {
  color: #ffffff;
}
.cid-tjptuSa4vQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tjptuSa4vQ .mbr-text,
.cid-tjptuSa4vQ .ornament {
  text-align: left;
}
.cid-tjptuVKWGR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tjptuVKWGR .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tjptuVKWGR .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tjptuVKWGR .links-block ul li {
  margin: 0 1rem;
}
.cid-tjptuVKWGR .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tjptuVKWGR .links-block ul,
.cid-tjptuVKWGR .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tjptuVKWGR .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-3d {
  /* Type valid CSS here */
}
#custom-html-3d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3d p {
  font-size: 60px;
  color: #777;
}
.cid-tBMZiYAVLS .nav-item:focus,
.cid-tBMZiYAVLS .nav-link:focus {
  outline: none;
}
.cid-tBMZiYAVLS .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tBMZiYAVLS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tBMZiYAVLS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBMZiYAVLS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tBMZiYAVLS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tBMZiYAVLS .collapsed {
  flex-direction: row!important;
}
.cid-tBMZiYAVLS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tBMZiYAVLS .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tBMZiYAVLS .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tBMZiYAVLS .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tBMZiYAVLS .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tBMZiYAVLS .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tBMZiYAVLS .navbar .navbar-collapse.show,
.cid-tBMZiYAVLS .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tBMZiYAVLS .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tBMZiYAVLS .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tBMZiYAVLS .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tBMZiYAVLS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tBMZiYAVLS .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tBMZiYAVLS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBMZiYAVLS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tBMZiYAVLS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tBMZiYAVLS .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tBMZiYAVLS .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tBMZiYAVLS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tBMZiYAVLS .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tBMZiYAVLS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBMZiYAVLS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBMZiYAVLS .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBMZiYAVLS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tBMZiYAVLS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBMZiYAVLS .dropdown-item.active,
.cid-tBMZiYAVLS .dropdown-item:active {
  background-color: transparent;
}
.cid-tBMZiYAVLS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tBMZiYAVLS .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tBMZiYAVLS .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tBMZiYAVLS .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tBMZiYAVLS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBMZiYAVLS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tBMZiYAVLS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tBMZiYAVLS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tBMZiYAVLS .navbar-buttons {
  text-align: inherit;
}
.cid-tBMZiYAVLS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tBMZiYAVLS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tBMZiYAVLS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tBMZiYAVLS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBMZiYAVLS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tBMZiYAVLS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tBMZiYAVLS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBMZiYAVLS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tBMZiYAVLS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tBMZiYAVLS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tBMZiYAVLS .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tBMZiYAVLS .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tBMZiYAVLS .icons-menu {
  text-align: inherit;
}
.cid-tBMZiYAVLS .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tBMZiYAVLS .nav-link:hover,
.cid-tBMZiYAVLS .dropdown-item:hover,
.cid-tBMZiYAVLS .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBMZiYAVLS .navbar {
    height: 77px;
  }
  .cid-tBMZiYAVLS .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tBMZiYAVLS .navbar-collapse .img-column {
    display: none;
  }
  .cid-tBMZiYAVLS .icons-menu,
  .cid-tBMZiYAVLS .navbar-buttons,
  .cid-tBMZiYAVLS .contact-block,
  .cid-tBMZiYAVLS .text-column {
    text-align: center !important;
  }
}
.cid-tBMZiZ2BBY {
  background-image: url("../../../assets/images/piatti-tortelli-tartufo-castelluccio-osteria-del-vettore-da-sopra-2000x1500-800x600.jpg");
}
.cid-tBMZiZ2BBY .mbr-overlay {
  background: #232323;
}
.cid-tBMZiZ2BBY .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tBMZiZ2BBY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBMZiZ2BBY .mbr-text,
.cid-tBMZiZ2BBY .mbr-section-btn {
  color: #ffffff;
}
.cid-tBMZiZkB8k {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tBMZiZkB8k .text-box {
  position: absolute;
  top: 0px;
  min-height: 100%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.cid-tBMZiZkB8k .text-block {
  position: relative;
  z-index: 0;
}
.cid-tBMZiZkB8k .box {
  width: 25%;
  height: 40%;
  background: #efefef;
  position: absolute;
  top: 4%;
}
.cid-tBMZiZkB8k .box {
  left: 20%;
}
.cid-tBMZiZkB8k .text-box {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cid-tBMZiZkB8k .mbr-section-text,
.cid-tBMZiZkB8k .mbr-section-title {
  margin-left: 31%;
}
@media (max-width: 991px) {
  .cid-tBMZiZkB8k .text-box {
    display: none;
  }
  .cid-tBMZiZkB8k .mbr-section-title,
  .cid-tBMZiZkB8k .mbr-section-text {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-tBMZiZkB8k .box {
    display: none;
  }
  .cid-tBMZiZkB8k .row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tBMZiZkB8k .img-block {
    margin-bottom: 1rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBMZiZkB8k .text-box {
    writing-mode: bt-rl;
  }
}
.cid-tBMZiZCeFJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tBMZiZNRF4 {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-sotto-vettore-2000x1500.jpg");
}
.cid-tBN5wqiY3T {
  background-image: url("../../../assets/images/pasta-alla-norcina-con-tartufo-2000x1500.jpg");
}
.cid-tBN5wqiY3T H3 {
  color: #ffffff;
}
.cid-tBN5wqiY3T .mbr-section-title,
.cid-tBN5wqiY3T .ornament {
  color: #ffffff;
}
.cid-tBN5wqiY3T .mbr-text,
.cid-tBN5wqiY3T .mbr-section-btn {
  color: #ffffff;
}
#custom-html-3j {
  /* Type valid CSS here */
}
#custom-html-3j div {
  padding: 80px 0;
  color: #777;
  text-align: center;
  margin: auto;
}
#custom-html-3j p {
  font-size: 1em;
  color: #777;
}
.cid-tBMZj0aZqt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tBMZj0lfwP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tBMZj0lfwP .mbr-text {
  color: #444444;
}
.cid-tBMZj0lfwP .card-title {
  color: #f9e2af;
}
.cid-tBMZj0lfwP .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tBMZj0lfwP .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tBMZj0lfwP .card-title,
.cid-tBMZj0lfwP .card-img {
  color: #9f3942;
}
.cid-tBMZj0PnZb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tBMZj0PnZb .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tBMZj0PnZb .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tBMZj0PnZb .links-block ul li {
  margin: 0 1rem;
}
.cid-tBMZj0PnZb .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tBMZj0PnZb .links-block ul,
.cid-tBMZj0PnZb .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tBMZj0PnZb .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-3o {
  /* Type valid CSS here */
}
#custom-html-3o div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3o p {
  font-size: 60px;
  color: #777;
}
.cid-tC5d0mVYeT .nav-item:focus,
.cid-tC5d0mVYeT .nav-link:focus {
  outline: none;
}
.cid-tC5d0mVYeT .nav-dropdown .dropdown-menu {
  padding-top: 0;
}
.cid-tC5d0mVYeT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tC5d0mVYeT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tC5d0mVYeT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tC5d0mVYeT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tC5d0mVYeT .collapsed {
  flex-direction: row!important;
}
.cid-tC5d0mVYeT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0em 4.5rem !important;
  transition: none;
  margin: 0 !important;
}
.cid-tC5d0mVYeT .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #ffffff;
}
.cid-tC5d0mVYeT .navbar.opened {
  transition: all 0.3s;
  background: #ffffff !important;
}
.cid-tC5d0mVYeT .navbar .dropdown-item {
  padding: 0.235rem 1.5rem;
}
.cid-tC5d0mVYeT .navbar .navbar-collapse {
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: calc(100vh - 61px);
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 1;
}
.cid-tC5d0mVYeT .navbar .navbar-collapse > .container {
  height: 100%;
}
.cid-tC5d0mVYeT .navbar .navbar-collapse.show,
.cid-tC5d0mVYeT .navbar .navbar-collapse.collapsing {
  display: -webkit-flex;
}
.cid-tC5d0mVYeT .navbar .navbar-collapse .img-column img {
  width: 100%;
}
.cid-tC5d0mVYeT .navbar .navbar-collapse .text-column {
  overflow: auto;
  max-height: calc(100vh - 7rem);
}
.cid-tC5d0mVYeT .navbar .navbar-collapse .contact-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cid-tC5d0mVYeT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tC5d0mVYeT .navbar.collapsed .dropdown-menu {
  text-align: inherit;
  background: transparent !important;
}
.cid-tC5d0mVYeT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tC5d0mVYeT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tC5d0mVYeT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tC5d0mVYeT .navbar.collapsed ul.navbar-nav {
  word-break: break-word;
}
.cid-tC5d0mVYeT .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: inherit;
}
.cid-tC5d0mVYeT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-tC5d0mVYeT .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tC5d0mVYeT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tC5d0mVYeT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tC5d0mVYeT .navbar-brand {
  min-height: 61px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tC5d0mVYeT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tC5d0mVYeT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tC5d0mVYeT .dropdown-item.active,
.cid-tC5d0mVYeT .dropdown-item:active {
  background-color: transparent;
}
.cid-tC5d0mVYeT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tC5d0mVYeT .nav-dropdown .link {
  margin: 0.2em 0em;
}
.cid-tC5d0mVYeT .nav-dropdown .link.dropdown-toggle {
  margin: 0;
}
.cid-tC5d0mVYeT .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin: 0em 0em;
  padding: 0.2em 0em;
}
.cid-tC5d0mVYeT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tC5d0mVYeT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tC5d0mVYeT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tC5d0mVYeT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tC5d0mVYeT .navbar-buttons {
  text-align: inherit;
}
.cid-tC5d0mVYeT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tC5d0mVYeT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tC5d0mVYeT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tC5d0mVYeT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC5d0mVYeT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tC5d0mVYeT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tC5d0mVYeT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC5d0mVYeT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tC5d0mVYeT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tC5d0mVYeT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tC5d0mVYeT .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tC5d0mVYeT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tC5d0mVYeT .icons-menu {
  text-align: inherit;
}
.cid-tC5d0mVYeT .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-tC5d0mVYeT .nav-link:hover,
.cid-tC5d0mVYeT .dropdown-item:hover,
.cid-tC5d0mVYeT .icons-menu .mbr-iconfont:hover {
  color: #cccccc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tC5d0mVYeT .navbar {
    height: 77px;
  }
  .cid-tC5d0mVYeT .navbar.opened {
    height: auto;
  }
}
@media (max-width: 767px) {
  .cid-tC5d0mVYeT .navbar-collapse .img-column {
    display: none;
  }
  .cid-tC5d0mVYeT .icons-menu,
  .cid-tC5d0mVYeT .navbar-buttons,
  .cid-tC5d0mVYeT .contact-block,
  .cid-tC5d0mVYeT .text-column {
    text-align: center !important;
  }
}
.cid-tC5d0nwuUd {
  background-image: url("../../../assets/images/osteria-del-vettore-ristorante-castelluccio-di-norcia-tavoli-sotto-vettore-2000x1500.jpg");
}
.cid-tC5d0nwuUd .mbr-overlay {
  background: #232323;
}
.cid-tC5d0nwuUd .mbr-section-title {
  letter-spacing: 0.5rem;
  color: #ffffff;
}
.cid-tC5d0nwuUd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tC5d0nwuUd .mbr-text,
.cid-tC5d0nwuUd .mbr-section-btn {
  color: #ffffff;
}
.cid-tC5d0olDvu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tC5d0pBOPS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tC5d0pBOPS .mbr-text {
  color: #444444;
}
.cid-tC5d0pBOPS .card-title {
  color: #f9e2af;
}
.cid-tC5d0pBOPS .card .card-img span {
  color: #000000;
  font-size: 60px;
}
@media (max-width: 767px) {
  .cid-tC5d0pBOPS .card {
    padding-bottom: 2rem !important;
  }
}
.cid-tC5d0pBOPS .card-title,
.cid-tC5d0pBOPS .card-img {
  color: #9f3942;
}
.cid-tC5d0qjcgS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tC5d0qjcgS .icons-block .mbr-iconfont {
  font-size: 1.5rem;
  color: #000000;
  opacity: 0.5;
}
.cid-tC5d0qjcgS .icons-block .mbr-iconfont:hover {
  opacity: 1;
}
.cid-tC5d0qjcgS .links-block ul li {
  margin: 0 1rem;
}
.cid-tC5d0qjcgS .icons-block ul li {
  margin: 0 0.5rem;
}
.cid-tC5d0qjcgS .links-block ul,
.cid-tC5d0qjcgS .icons-block ul {
  margin-bottom: 1.5rem;
}
.cid-tC5d0qjcgS .logo-section img {
  width: auto;
  display: inline-block;
}
#custom-html-40 {
  /* Type valid CSS here */
}
#custom-html-40 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-40 p {
  font-size: 60px;
  color: #777;
}
