@import url(https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
/* ---- 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: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #bab589 !important;
}
.bg-success {
  background-color: #cccccc !important;
}
.bg-info {
  background-color: #7c7d5b !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #bab589 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #bab589 !important;
  border-color: #bab589 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #9c955b !important;
  border-color: #9c955b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9c955b !important;
  border-color: #9c955b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #c2402c !important;
  border-color: #c2402c !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #842b1e !important;
  border-color: #842b1e !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #842b1e !important;
  border-color: #842b1e !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #7c7d5b !important;
  border-color: #7c7d5b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #50513b !important;
  border-color: #50513b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #50513b !important;
  border-color: #50513b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #cccccc !important;
  border-color: #cccccc !important;
  color: #4d4d4d !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4d4d4d !important;
  background-color: #a6a6a6 !important;
  border-color: #a6a6a6 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #505050 !important;
  border-color: #505050 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #bab589 !important;
  border-color: #bab589 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #9c955b !important;
  border-color: #9c955b !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #9c955b !important;
  border-color: #9c955b !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-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-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #8b8652;
  color: #8b8652 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #bab589;
  border-color: #bab589;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bab589 !important;
  border-color: #bab589 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #6f2519;
  color: #6f2519 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #c2402c;
  border-color: #c2402c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c2402c !important;
  border-color: #c2402c !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #414230;
  color: #414230 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #7c7d5b;
  border-color: #7c7d5b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7c7d5b !important;
  border-color: #7c7d5b !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #999999;
  color: #999999 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #4d4d4d !important;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #4d4d4d !important;
  background-color: #cccccc !important;
  border-color: #cccccc !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #434343;
  color: #434343 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #8b8652;
  color: #8b8652 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #bab589;
  border-color: #bab589;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bab589 !important;
  border-color: #bab589 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  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 !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #bab589 !important;
}
.text-secondary {
  color: #c2402c !important;
}
.text-success {
  color: #cccccc !important;
}
.text-info {
  color: #7c7d5b !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #bab589 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #8b8652 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #6f2519 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #999999 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #414230 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #434343 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #8b8652 !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: #cccccc;
}
.alert-info {
  background-color: #7c7d5b;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #bab589;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  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: #bab589;
  border-color: #bab589;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #bab589;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9e7d9;
}
.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: #b8b99f;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e9e7d9;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}
blockquote {
  border-color: #bab589;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.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;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bab589;
  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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #bab589;
  border-bottom-color: #bab589;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #bab589 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #c2402c !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='%23bab589' %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-rZwQLK6ulW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-rZwQLK6ulW .nav-item,
.cid-rZwQLK6ulW .nav-link,
.cid-rZwQLK6ulW .navbar-caption {
  font-weight: normal;
}
.cid-rZwQLK6ulW .nav-item:focus,
.cid-rZwQLK6ulW .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZwQLK6ulW .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item .soc-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-rZwQLK6ulW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZwQLK6ulW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZwQLK6ulW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-rZwQLK6ulW .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-rZwQLK6ulW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rZwQLK6ulW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rZwQLK6ulW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZwQLK6ulW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZwQLK6ulW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZwQLK6ulW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rZwQLK6ulW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZwQLK6ulW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZwQLK6ulW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZwQLK6ulW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZwQLK6ulW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rZwQLK6ulW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZwQLK6ulW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rZwQLK6ulW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZwQLK6ulW .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-rZwQLK6ulW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZwQLK6ulW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZwQLK6ulW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZwQLK6ulW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZwQLK6ulW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZwQLK6ulW .dropdown-item.active,
.cid-rZwQLK6ulW .dropdown-item:active {
  background-color: transparent;
}
.cid-rZwQLK6ulW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rZwQLK6ulW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZwQLK6ulW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZwQLK6ulW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-rZwQLK6ulW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZwQLK6ulW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZwQLK6ulW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZwQLK6ulW .navbar-buttons {
  text-align: center;
}
.cid-rZwQLK6ulW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZwQLK6ulW .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rZwQLK6ulW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZwQLK6ulW .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rZwQLK6ulW .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rZwQLK6ulW .soc-item {
  margin: .5rem .3rem;
}
.cid-rZwQLK6ulW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZwQLK6ulW a.nav-link,
.cid-rZwQLK6ulW a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rZwQLK6ulW a.nav-link .mbr-iconfont-btn,
.cid-rZwQLK6ulW a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rZwQLK6ulW a.nav-link:hover .mbr-iconfont-btn,
.cid-rZwQLK6ulW a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rZwQLK6ulW a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZwQLK6ulW .navbar {
    height: 77px;
  }
  .cid-rZwQLK6ulW .navbar.opened {
    height: auto;
  }
  .cid-rZwQLK6ulW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rzBfcbdf3b {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/531-2000x1333.jpg");
}
.cid-rzBfcbdf3b .mbr-overlay {
  background: #232323;
}
.cid-rzBfcbdf3b .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-rzBfcbdf3b .mbr-section-subtitle {
  color: #232323;
}
.cid-qIjLr2VMr0 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-qIjLr2VMr0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qIjLr2VMr0 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-qIjES4e5vV {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #e6e4d3;
}
.cid-qIjES4e5vV .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qIjES4e5vV .card .card-wrapper {
  background: #9e9970;
  height: 1%;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #ca4336;
}
.cid-qIjES4e5vV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qIjES4e5vV .card .card-wrapper .card-box {
  padding: 1.5rem;
}
.cid-qIjES4e5vV .mbr-card-text {
  color: #ffffff;
  margin: 0;
}
.cid-qIjES4e5vV .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qIjES4e5vV .img-text {
  color: #ffffff;
  text-align: center;
}
.cid-qIjES4e5vV .mbr-card-text,
.cid-qIjES4e5vV .mbr-section-btn {
  color: #e6e4d3;
  text-align: center;
}
.cid-qIjES4e5vV .mbr-section-title {
  text-align: center;
  color: #8b865f;
}
.cid-qIjES4e5vV .mbr-section-subtitle {
  text-align: center;
}
.cid-qIjES4e5vV .mbr-title {
  color: #ffffff;
  text-align: center;
}
.cid-qIjGVVeB7i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
  background: linear-gradient(45deg, #9e9970, #bab589);
}
.cid-qIjGVVeB7i .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qIjGVVeB7i .mbr-section-btn,
  .cid-qIjGVVeB7i .mbr-section-subtitle,
  .cid-qIjGVVeB7i .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qIjMDc36tP {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qIjMDc36tP .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qIjMDc36tP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qIjMDc36tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qIjMDc36tP .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qIjMDc36tP .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qIjMDc36tP .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-qIjMDc36tP .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qIjMDc36tP .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qIjMDc36tP .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qIjMDc36tP .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rZF0os2vre {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #bab589;
  background: linear-gradient(45deg, #bab589, #e6e4d3);
}
.cid-rZF0os2vre .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rZF0os2vre .mbr-section-btn,
  .cid-rZF0os2vre .mbr-section-subtitle,
  .cid-rZF0os2vre .mbr-section-title {
    text-align: center !important;
  }
}
.cid-rZF0os2vre .mbr-section-title {
  text-align: center;
  color: #c2402c;
}
.cid-rZFx6Ktb2f.popup-builder {
  background-color: #ffffff;
}
.cid-rZFx6Ktb2f.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-rZFx6Ktb2f.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-rZFx6Ktb2f .modal-content,
.cid-rZFx6Ktb2f .modal-dialog {
  height: auto;
}
.cid-rZFx6Ktb2f .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-rZFx6Ktb2f .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-rZFx6Ktb2f .form-wrapper .mbr-form .form-group,
  .cid-rZFx6Ktb2f .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-rZFx6Ktb2f .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-rZFx6Ktb2f .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZFx6Ktb2f .mbr-text {
  text-align: center;
}
.cid-rZFx6Ktb2f .pt-0 {
  padding-top: 0 !important;
}
.cid-rZFx6Ktb2f .pb-0 {
  padding-bottom: 0 !important;
}
.cid-rZFx6Ktb2f .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-rZFx6Ktb2f .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-rZFx6Ktb2f .modal-open {
  overflow: hidden;
}
.cid-rZFx6Ktb2f .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-rZFx6Ktb2f .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-rZFx6Ktb2f .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-rZFx6Ktb2f .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-rZFx6Ktb2f .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-rZFx6Ktb2f .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-rZFx6Ktb2f .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-rZFx6Ktb2f .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-rZFx6Ktb2f .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-rZFx6Ktb2f .modal-backdrop.fade {
  opacity: 0;
}
.cid-rZFx6Ktb2f .modal-backdrop.show {
  opacity: .5;
}
.cid-rZFx6Ktb2f .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-rZFx6Ktb2f .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-rZFx6Ktb2f .modal-header .close:hover {
  opacity: 1;
}
.cid-rZFx6Ktb2f .modal-header .close:focus {
  outline: none;
}
.cid-rZFx6Ktb2f .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #8b865f;
}
.cid-rZFx6Ktb2f .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-rZFx6Ktb2f .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-rZFx6Ktb2f .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-rZFx6Ktb2f .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-rZFx6Ktb2f .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-rZFx6Ktb2f .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-rZFx6Ktb2f .modal-sm {
    max-width: 300px;
  }
  .cid-rZFx6Ktb2f .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-rZFx6Ktb2f .modal-lg,
  .cid-rZFx6Ktb2f .modal-xl {
    max-width: 800px;
  }
  .cid-rZFx6Ktb2f .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-rZFx6Ktb2f .modal-xl {
    max-width: 1140px;
  }
  .cid-rZFx6Ktb2f .container {
    max-width: 1140px;
  }
}
.cid-rZFx6Ktb2f .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-rZFx6Ktb2f .container {
    max-width: 720px;
  }
}
.cid-rZFx6Ktb2f .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-rZFx6Ktb2f .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-rZFx6Ktb2f .form-group {
  margin-bottom: 1rem;
}
.cid-rZFx6Ktb2f .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-rZFx6Ktb2f .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rZFx6Ktb2f .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s00uZ7KvqW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-s00uZ7KvqW .nav-item,
.cid-s00uZ7KvqW .nav-link,
.cid-s00uZ7KvqW .navbar-caption {
  font-weight: normal;
}
.cid-s00uZ7KvqW .nav-item:focus,
.cid-s00uZ7KvqW .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s00uZ7KvqW .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s00uZ7KvqW .dropdown .dropdown-menu .dropdown-item .soc-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-s00uZ7KvqW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s00uZ7KvqW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s00uZ7KvqW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-s00uZ7KvqW .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-s00uZ7KvqW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s00uZ7KvqW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-s00uZ7KvqW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s00uZ7KvqW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s00uZ7KvqW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-s00uZ7KvqW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s00uZ7KvqW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s00uZ7KvqW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s00uZ7KvqW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s00uZ7KvqW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s00uZ7KvqW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s00uZ7KvqW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s00uZ7KvqW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s00uZ7KvqW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s00uZ7KvqW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s00uZ7KvqW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s00uZ7KvqW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s00uZ7KvqW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s00uZ7KvqW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s00uZ7KvqW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s00uZ7KvqW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s00uZ7KvqW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s00uZ7KvqW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s00uZ7KvqW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s00uZ7KvqW .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-s00uZ7KvqW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s00uZ7KvqW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s00uZ7KvqW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s00uZ7KvqW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s00uZ7KvqW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s00uZ7KvqW .dropdown-item.active,
.cid-s00uZ7KvqW .dropdown-item:active {
  background-color: transparent;
}
.cid-s00uZ7KvqW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s00uZ7KvqW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s00uZ7KvqW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s00uZ7KvqW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-s00uZ7KvqW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s00uZ7KvqW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s00uZ7KvqW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s00uZ7KvqW .navbar-buttons {
  text-align: center;
}
.cid-s00uZ7KvqW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s00uZ7KvqW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s00uZ7KvqW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s00uZ7KvqW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s00uZ7KvqW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s00uZ7KvqW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s00uZ7KvqW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s00uZ7KvqW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s00uZ7KvqW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s00uZ7KvqW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s00uZ7KvqW .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s00uZ7KvqW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s00uZ7KvqW .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s00uZ7KvqW .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s00uZ7KvqW .soc-item {
  margin: .5rem .3rem;
}
.cid-s00uZ7KvqW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s00uZ7KvqW a.nav-link,
.cid-s00uZ7KvqW a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-s00uZ7KvqW a.nav-link .mbr-iconfont-btn,
.cid-s00uZ7KvqW a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-s00uZ7KvqW a.nav-link:hover .mbr-iconfont-btn,
.cid-s00uZ7KvqW a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-s00uZ7KvqW a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s00uZ7KvqW .navbar {
    height: 77px;
  }
  .cid-s00uZ7KvqW .navbar.opened {
    height: auto;
  }
  .cid-s00uZ7KvqW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s00uZbzKKW {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/pane-di-caetani-cardapio-1920x1080.webp");
}
.cid-s00uZbzKKW .mbr-overlay {
  background: #232323;
}
.cid-s00uZbzKKW .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-s00uZbzKKW .mbr-section-subtitle {
  color: #232323;
}
.cid-s00uZdYhRM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-s00uZdYhRM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s00uZdYhRM .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s07PkSgCKJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6e4d3;
}
.cid-s07PkSgCKJ .header-text {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #232323;
}
.cid-s07PkSgCKJ .accordion-content {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
}
.cid-s07PkSgCKJ .mbr-section-subtitle {
  color: #767676;
}
.cid-s07PkSgCKJ .panel-group {
  width: 100%;
}
.cid-s07PkSgCKJ .panel-text {
  color: #232323;
}
.cid-s07PkSgCKJ .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-s07PkSgCKJ .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-s07PkSgCKJ .card .card-header a.panel-title {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  transition: all .3s;
  background-color: #bab589;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-s07PkSgCKJ .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-s07PkSgCKJ .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-s07PkSgCKJ .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-s07PkSgCKJ .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-s07PkSgCKJ .card .panel-body {
  background: #ffffff;
}
.cid-s07PkSgCKJ .sign {
  color: #232323;
}
.cid-s07PkSgCKJ .header-text,
.cid-s07PkSgCKJ .sign {
  text-align: left;
}
.cid-s00v07JrBJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
  background: linear-gradient(45deg, #9e9970, #bab589);
}
.cid-s00v07JrBJ .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s00v07JrBJ .mbr-section-btn,
  .cid-s00v07JrBJ .mbr-section-subtitle,
  .cid-s00v07JrBJ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-s00v0adwng {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s00v0adwng .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s00v0adwng .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s00v0adwng .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s00v0adwng .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s00v0adwng .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s00v0adwng .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-s00v0adwng .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s00v0adwng .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s00v0adwng .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s00v0adwng .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-rZwQLK6ulW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-rZwQLK6ulW .nav-item,
.cid-rZwQLK6ulW .nav-link,
.cid-rZwQLK6ulW .navbar-caption {
  font-weight: normal;
}
.cid-rZwQLK6ulW .nav-item:focus,
.cid-rZwQLK6ulW .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZwQLK6ulW .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZwQLK6ulW .dropdown .dropdown-menu .dropdown-item .soc-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-rZwQLK6ulW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZwQLK6ulW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZwQLK6ulW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-rZwQLK6ulW .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-rZwQLK6ulW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rZwQLK6ulW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-rZwQLK6ulW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZwQLK6ulW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZwQLK6ulW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZwQLK6ulW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZwQLK6ulW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rZwQLK6ulW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZwQLK6ulW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZwQLK6ulW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZwQLK6ulW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZwQLK6ulW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZwQLK6ulW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rZwQLK6ulW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZwQLK6ulW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rZwQLK6ulW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZwQLK6ulW .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-rZwQLK6ulW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZwQLK6ulW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZwQLK6ulW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZwQLK6ulW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZwQLK6ulW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZwQLK6ulW .dropdown-item.active,
.cid-rZwQLK6ulW .dropdown-item:active {
  background-color: transparent;
}
.cid-rZwQLK6ulW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rZwQLK6ulW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZwQLK6ulW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZwQLK6ulW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-rZwQLK6ulW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZwQLK6ulW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZwQLK6ulW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rZwQLK6ulW .navbar-buttons {
  text-align: center;
}
.cid-rZwQLK6ulW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZwQLK6ulW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZwQLK6ulW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZwQLK6ulW .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rZwQLK6ulW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZwQLK6ulW .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-rZwQLK6ulW .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rZwQLK6ulW .soc-item {
  margin: .5rem .3rem;
}
.cid-rZwQLK6ulW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rZwQLK6ulW a.nav-link,
.cid-rZwQLK6ulW a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-rZwQLK6ulW a.nav-link .mbr-iconfont-btn,
.cid-rZwQLK6ulW a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-rZwQLK6ulW a.nav-link:hover .mbr-iconfont-btn,
.cid-rZwQLK6ulW a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-rZwQLK6ulW a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZwQLK6ulW .navbar {
    height: 77px;
  }
  .cid-rZwQLK6ulW .navbar.opened {
    height: auto;
  }
  .cid-rZwQLK6ulW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rZGWjVLkXg {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/pane-di-caetani-padaria-1920x1080.webp");
}
.cid-rZGWjVLkXg .mbr-overlay {
  background: #232323;
}
.cid-rZGWjVLkXg .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-rZGWjVLkXg .mbr-section-subtitle {
  color: #232323;
}
.cid-rZGWlZVpS1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-rZGWlZVpS1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZGWlZVpS1 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s0010ncUEJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
@media (min-width: 992px) {
  .cid-s0010ncUEJ .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-s0010ncUEJ .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-s0010ncUEJ .mbr-text {
  color: #232323;
  text-align: left;
}
.cid-s0059ZA7kZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s0059ZA7kZ blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s0059ZA7kZ .mbr-text,
.cid-s0059ZA7kZ .blockquote-quote {
  color: #232323;
}
.cid-s0059ZA7kZ footer {
  font-style: normal;
}
.cid-s0059ZA7kZ footer SPAN {
  color: #8b865f;
}
.cid-s007uRlcM5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
}
.cid-s007uRlcM5 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-s009E8EXIE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s003XTNEJj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s003XTNEJj .mbr-section-title {
  text-align: left;
  color: #8b865f;
}
.cid-s003XTNEJj .mbr-section-subtitle {
  text-align: center;
}
.cid-s002Z04eYu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s005L5Ahh5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s005L5Ahh5 blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s005L5Ahh5 .mbr-text,
.cid-s005L5Ahh5 .blockquote-quote {
  color: #232323;
}
.cid-s005L5Ahh5 footer {
  font-style: normal;
}
.cid-s005L5Ahh5 footer SPAN {
  color: #8b865f;
}
.cid-s005Ug4t2a {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s00aiCn2zX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s004G4rHGg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s004G4rHGg .mbr-section-title {
  text-align: left;
  color: #8b865f;
}
.cid-s004G4rHGg .mbr-section-subtitle {
  text-align: center;
}
.cid-s004H4QSsL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s006b4uiNR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s006b4uiNR blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s006b4uiNR .mbr-text,
.cid-s006b4uiNR .blockquote-quote {
  color: #232323;
}
.cid-s006b4uiNR footer {
  font-style: normal;
}
.cid-s006b4uiNR footer SPAN {
  color: #8b865f;
}
.cid-s00arJJ2xC {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s004JjgyxF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s004JjgyxF .mbr-section-title {
  text-align: left;
  color: #8b865f;
}
.cid-s004JjgyxF .mbr-section-subtitle {
  text-align: center;
}
.cid-s004LMo1gn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s006FeHQL0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s006FeHQL0 blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s006FeHQL0 .mbr-text,
.cid-s006FeHQL0 .blockquote-quote {
  color: #232323;
}
.cid-s006FeHQL0 footer {
  font-style: normal;
}
.cid-s006FeHQL0 footer SPAN {
  color: #8b865f;
}
.cid-s006QUpx6M {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s006QUpx6M .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-s006RWfxd7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s006RWfxd7 blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s006RWfxd7 .mbr-text,
.cid-s006RWfxd7 .blockquote-quote {
  color: #232323;
}
.cid-s006RWfxd7 footer {
  font-style: normal;
}
.cid-s006RWfxd7 footer SPAN {
  color: #8b865f;
}
.cid-s006TU7PG9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s006TU7PG9 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-s006V9Dkfd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s006V9Dkfd blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s006V9Dkfd .mbr-text,
.cid-s006V9Dkfd .blockquote-quote {
  color: #232323;
}
.cid-s006V9Dkfd footer {
  font-style: normal;
}
.cid-s006V9Dkfd footer SPAN {
  color: #8b865f;
}
.cid-s00assDVUg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s008pJma7z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s008pJma7z .mbr-section-title {
  text-align: left;
  color: #8b865f;
}
.cid-s008pJma7z .mbr-section-subtitle {
  text-align: center;
}
.cid-s008sAkxH8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s008thRz4c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s008thRz4c blockquote {
  border-width: 1px;
  border-color: #8b865f;
  padding: 0 0 0 20px;
}
.cid-s008thRz4c .mbr-text,
.cid-s008thRz4c .blockquote-quote {
  color: #232323;
}
.cid-s008thRz4c footer {
  font-style: normal;
}
.cid-s008thRz4c footer SPAN {
  color: #8b865f;
}
.cid-s008Oy6po2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #e6e4d3;
}
.cid-s008Oy6po2 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-rZGWl7jnTO {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
  background: linear-gradient(45deg, #9e9970, #bab589);
}
.cid-rZGWl7jnTO .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rZGWl7jnTO .mbr-section-btn,
  .cid-rZGWl7jnTO .mbr-section-subtitle,
  .cid-rZGWl7jnTO .mbr-section-title {
    text-align: center !important;
  }
}
.cid-qIjMDc36tP {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qIjMDc36tP .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qIjMDc36tP .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qIjMDc36tP .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qIjMDc36tP .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qIjMDc36tP .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qIjMDc36tP .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-qIjMDc36tP .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qIjMDc36tP .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qIjMDc36tP .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qIjMDc36tP .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s08caklChz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-s08caklChz .nav-item,
.cid-s08caklChz .nav-link,
.cid-s08caklChz .navbar-caption {
  font-weight: normal;
}
.cid-s08caklChz .nav-item:focus,
.cid-s08caklChz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s08caklChz .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s08caklChz .dropdown .dropdown-menu .dropdown-item .soc-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-s08caklChz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s08caklChz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s08caklChz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-s08caklChz .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-s08caklChz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s08caklChz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-s08caklChz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s08caklChz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s08caklChz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-s08caklChz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s08caklChz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s08caklChz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s08caklChz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s08caklChz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s08caklChz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s08caklChz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s08caklChz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s08caklChz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s08caklChz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s08caklChz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s08caklChz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s08caklChz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s08caklChz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s08caklChz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s08caklChz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s08caklChz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s08caklChz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s08caklChz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s08caklChz .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-s08caklChz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s08caklChz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s08caklChz .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s08caklChz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s08caklChz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s08caklChz .dropdown-item.active,
.cid-s08caklChz .dropdown-item:active {
  background-color: transparent;
}
.cid-s08caklChz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s08caklChz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s08caklChz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s08caklChz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-s08caklChz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s08caklChz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s08caklChz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s08caklChz .navbar-buttons {
  text-align: center;
}
.cid-s08caklChz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s08caklChz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s08caklChz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s08caklChz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s08caklChz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s08caklChz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s08caklChz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s08caklChz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s08caklChz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s08caklChz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s08caklChz .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s08caklChz a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s08caklChz .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s08caklChz .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s08caklChz .soc-item {
  margin: .5rem .3rem;
}
.cid-s08caklChz .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s08caklChz a.nav-link,
.cid-s08caklChz a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-s08caklChz a.nav-link .mbr-iconfont-btn,
.cid-s08caklChz a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-s08caklChz a.nav-link:hover .mbr-iconfont-btn,
.cid-s08caklChz a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-s08caklChz a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s08caklChz .navbar {
    height: 77px;
  }
  .cid-s08caklChz .navbar.opened {
    height: auto;
  }
  .cid-s08caklChz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s08can22cS {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/balcao-pane-di-caetani.webp");
}
.cid-s08can22cS .mbr-overlay {
  background: #232323;
}
.cid-s08can22cS .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-s08can22cS .mbr-section-subtitle {
  color: #232323;
}
.cid-s08cap4pBo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-s08cap4pBo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s08cap4pBo .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s08cGxlNwc {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #e6e4d3;
}
.cid-s08cGxlNwc .mbr-section-subtitle {
  color: #767676;
}
.cid-s08cGxlNwc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-s08cGxlNwc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s08cGxlNwc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s08cGxlNwc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-s08cGxlNwc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #8b865f;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-s08cGxlNwc .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s08cGxlNwc .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s08cGxlNwc .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-s08cGxlNwc .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s08cGxlNwc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  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-s08cGxlNwc ul {
  font-size: 0;
}
.cid-s08cGxlNwc .mbr-gallery-filter ul {
  text-align: left;
}
.cid-s08cGxlNwc .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #8b865f !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-s08cGxlNwc .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-s08cGxlNwc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-s08cGxlNwc .mbr-gallery-filter ul li:first-child,
.cid-s08cGxlNwc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-s08cGxlNwc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-s08cGxlNwc .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-s08cGxlNwc .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-s08cGxlNwc .btn.active:after {
  animation: none;
}
.cid-s08cGxlNwc .btn:active {
  box-shadow: none !important;
}
.cid-s08cGxlNwc .btn:hover {
  background: transparent !important;
}
.cid-s08cGxlNwc .btn:hover:before {
  background: transparent !important;
}
.cid-s08cGxlNwc .btn:before {
  background-color: transparent !important;
}
.cid-s08cGxlNwc .btn:focus {
  box-shadow: none !important;
}
.cid-s08cb9TNZg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
  background: linear-gradient(45deg, #9e9970, #bab589);
}
.cid-s08cb9TNZg .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s08cb9TNZg .mbr-section-btn,
  .cid-s08cb9TNZg .mbr-section-subtitle,
  .cid-s08cb9TNZg .mbr-section-title {
    text-align: center !important;
  }
}
.cid-s08cbbVQZB {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s08cbbVQZB .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s08cbbVQZB .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s08cbbVQZB .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s08cbbVQZB .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s08cbbVQZB .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s08cbbVQZB .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-s08cbbVQZB .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s08cbbVQZB .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s08cbbVQZB .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s08cbbVQZB .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s0bZcW9drI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-s0bZcW9drI .nav-item,
.cid-s0bZcW9drI .nav-link,
.cid-s0bZcW9drI .navbar-caption {
  font-weight: normal;
}
.cid-s0bZcW9drI .nav-item:focus,
.cid-s0bZcW9drI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s0bZcW9drI .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0bZcW9drI .dropdown .dropdown-menu .dropdown-item .soc-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-s0bZcW9drI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0bZcW9drI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0bZcW9drI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-s0bZcW9drI .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-s0bZcW9drI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s0bZcW9drI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-s0bZcW9drI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s0bZcW9drI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s0bZcW9drI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-s0bZcW9drI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s0bZcW9drI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s0bZcW9drI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s0bZcW9drI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s0bZcW9drI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s0bZcW9drI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s0bZcW9drI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s0bZcW9drI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s0bZcW9drI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s0bZcW9drI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s0bZcW9drI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s0bZcW9drI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s0bZcW9drI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s0bZcW9drI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s0bZcW9drI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s0bZcW9drI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s0bZcW9drI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s0bZcW9drI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s0bZcW9drI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s0bZcW9drI .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-s0bZcW9drI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s0bZcW9drI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s0bZcW9drI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s0bZcW9drI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s0bZcW9drI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s0bZcW9drI .dropdown-item.active,
.cid-s0bZcW9drI .dropdown-item:active {
  background-color: transparent;
}
.cid-s0bZcW9drI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s0bZcW9drI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s0bZcW9drI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s0bZcW9drI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-s0bZcW9drI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s0bZcW9drI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0bZcW9drI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s0bZcW9drI .navbar-buttons {
  text-align: center;
}
.cid-s0bZcW9drI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0bZcW9drI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0bZcW9drI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s0bZcW9drI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s0bZcW9drI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s0bZcW9drI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s0bZcW9drI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0bZcW9drI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s0bZcW9drI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s0bZcW9drI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0bZcW9drI .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s0bZcW9drI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0bZcW9drI .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s0bZcW9drI .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s0bZcW9drI .soc-item {
  margin: .5rem .3rem;
}
.cid-s0bZcW9drI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0bZcW9drI a.nav-link,
.cid-s0bZcW9drI a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-s0bZcW9drI a.nav-link .mbr-iconfont-btn,
.cid-s0bZcW9drI a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-s0bZcW9drI a.nav-link:hover .mbr-iconfont-btn,
.cid-s0bZcW9drI a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-s0bZcW9drI a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0bZcW9drI .navbar {
    height: 77px;
  }
  .cid-s0bZcW9drI .navbar.opened {
    height: auto;
  }
  .cid-s0bZcW9drI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s0bZcXO1rD {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/balcao-pane-di-caetani.webp");
}
.cid-s0bZcXO1rD .mbr-overlay {
  background: #232323;
}
.cid-s0bZcXO1rD .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-s0bZcXO1rD .mbr-section-subtitle {
  color: #232323;
}
.cid-s0bZcZ7nxv {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-s0bZcZ7nxv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s0bZcZ7nxv .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s0RiC2HEPQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #e6e4d3;
}
.cid-s0Rc4RLnuB {
  padding-top: 20px;
  padding-bottom: 15px;
  background-color: #e6e4d3;
}
.cid-s0Rc4RLnuB .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-s0Rc4RLnuB .mbr-overlay {
  background: #ff7f00;
  background: linear-gradient(#ff7f00 -10%, #c66505 75%);
}
.cid-s0Rc4RLnuB .mbr-section-title {
  margin: 0;
}
.cid-s0Rc4RLnuB .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
#formulario1 div {
  background-color: #E6E5D3;
}
.cid-s0Rb7vMVbg {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #bab589;
}
.cid-s0Rb7vMVbg .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-s0Rb7vMVbg .mbr-overlay {
  background: #ff7f00;
  background: linear-gradient(#ff7f00 -10%, #c66505 75%);
}
.cid-s0Rb7vMVbg .mbr-section-title {
  margin: 0;
}
.cid-s0Rb7vMVbg .separator {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-s0Rbflo2Ca {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s0Rbflo2Ca .google-map {
  height: 25rem;
  position: relative;
}
.cid-s0Rbflo2Ca .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s0Rbflo2Ca .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s0Rbflo2Ca .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s0Rbflo2Ca .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s0Rbflo2Ca .container-fluid {
  padding: 0;
}
.cid-s0Rbflo2Ca .relative {
  position: relative;
  width: 100%;
}
.cid-s0Rbflo2Ca .mbr-section-title {
  color: #656565;
}
.cid-s0Rbflo2Ca .block {
  background: rgba(50, 50, 50, 0.8);
  position: absolute;
  padding: 2rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  width: 400px;
  height: 100%;
  top: 0;
  right: 0;
}
.cid-s0Rbflo2Ca .line {
  height: 3px;
  width: 60px;
  background: #ffffff;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.cid-s0Rbflo2Ca .title {
  text-align: center;
  color: #ffffff;
}
.cid-s0Rbflo2Ca .text {
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
}
@media (max-width: 576px) {
  .cid-s0Rbflo2Ca .block {
    position: relative;
    width: 100%;
    height: auto;
    padding: 6rem 2rem;
  }
}
.cid-s0bZd24iTQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9e9970;
  background: linear-gradient(45deg, #9e9970, #bab589);
}
.cid-s0bZd24iTQ .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-s0bZd24iTQ .mbr-section-btn,
  .cid-s0bZd24iTQ .mbr-section-subtitle,
  .cid-s0bZd24iTQ .mbr-section-title {
    text-align: center !important;
  }
}
.cid-s0bZd38o2r {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s0bZd38o2r .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s0bZd38o2r .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s0bZd38o2r .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s0bZd38o2r .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s0bZd38o2r .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s0bZd38o2r .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-s0bZd38o2r .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s0bZd38o2r .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s0bZd38o2r .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s0bZd38o2r .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-s0ScyqBhA3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 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-s0ScyqBhA3 .nav-item,
.cid-s0ScyqBhA3 .nav-link,
.cid-s0ScyqBhA3 .navbar-caption {
  font-weight: normal;
}
.cid-s0ScyqBhA3 .nav-item:focus,
.cid-s0ScyqBhA3 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s0ScyqBhA3 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item:hover .soc-item .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item .soc-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0ScyqBhA3 .dropdown .dropdown-menu .dropdown-item .soc-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-s0ScyqBhA3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0ScyqBhA3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0ScyqBhA3 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #bab589;
  background: none;
}
.cid-s0ScyqBhA3 .navbar.opened {
  transition: all .3s;
  background: #bab589 !important;
}
.cid-s0ScyqBhA3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-s0ScyqBhA3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
  -webkit-justify-content: flex-end;
}
.cid-s0ScyqBhA3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s0ScyqBhA3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s0ScyqBhA3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(99vh - 7.3rem);
  }
}
.cid-s0ScyqBhA3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s0ScyqBhA3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s0ScyqBhA3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s0ScyqBhA3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s0ScyqBhA3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s0ScyqBhA3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-s0ScyqBhA3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s0ScyqBhA3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s0ScyqBhA3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s0ScyqBhA3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s0ScyqBhA3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s0ScyqBhA3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s0ScyqBhA3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s0ScyqBhA3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s0ScyqBhA3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s0ScyqBhA3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-s0ScyqBhA3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s0ScyqBhA3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s0ScyqBhA3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s0ScyqBhA3 .navbar.navbar-short {
  background: #bab589 !important;
  min-height: 60px;
}
.cid-s0ScyqBhA3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s0ScyqBhA3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s0ScyqBhA3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s0ScyqBhA3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s0ScyqBhA3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s0ScyqBhA3 .dropdown-item.active,
.cid-s0ScyqBhA3 .dropdown-item:active {
  background-color: transparent;
}
.cid-s0ScyqBhA3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s0ScyqBhA3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s0ScyqBhA3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s0ScyqBhA3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #bab589;
}
.cid-s0ScyqBhA3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s0ScyqBhA3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0ScyqBhA3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s0ScyqBhA3 .navbar-buttons {
  text-align: center;
}
.cid-s0ScyqBhA3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0ScyqBhA3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0ScyqBhA3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s0ScyqBhA3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s0ScyqBhA3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s0ScyqBhA3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s0ScyqBhA3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0ScyqBhA3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s0ScyqBhA3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s0ScyqBhA3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s0ScyqBhA3 .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-s0ScyqBhA3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0ScyqBhA3 .soc-item .mbr-iconfont {
  font-size: 1rem;
  color: #66458e;
  display: inline-flex;
}
.cid-s0ScyqBhA3 .soc-item .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-s0ScyqBhA3 .soc-item {
  margin: .5rem .3rem;
}
.cid-s0ScyqBhA3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s0ScyqBhA3 a.nav-link,
.cid-s0ScyqBhA3 a.dropdown-item {
  display: flex;
  align-items: center;
}
.cid-s0ScyqBhA3 a.nav-link .mbr-iconfont-btn,
.cid-s0ScyqBhA3 a.dropdown-item .mbr-iconfont-btn {
  margin-right: 10px;
}
.cid-s0ScyqBhA3 a.nav-link:hover .mbr-iconfont-btn,
.cid-s0ScyqBhA3 a.dropdown-item:hover .mbr-iconfont-btn {
  opacity: 0;
  margin-left: -20px;
}
.cid-s0ScyqBhA3 a.dropdown-item .mbr-iconfont-btn {
  margin-top: -4px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0ScyqBhA3 .navbar {
    height: 77px;
  }
  .cid-s0ScyqBhA3 .navbar.opened {
    height: auto;
  }
  .cid-s0ScyqBhA3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s0Scys29dW {
  padding-top: 150px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/balcao-pane-di-caetani.webp");
}
.cid-s0Scys29dW .mbr-overlay {
  background: #232323;
}
.cid-s0Scys29dW .mbr-section-title {
  letter-spacing: -1px;
  color: #ffffff;
  text-align: center;
}
.cid-s0Scys29dW .mbr-section-subtitle {
  color: #232323;
}
.cid-s0Scyt9Psl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #9e9970;
}
.cid-s0Scyt9Psl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s0Scyt9Psl .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1ma9AqZJr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1ma9AqZJr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1ma9AqZJr .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s0SiJlBS7l {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s0SiJlBS7l .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s0SiJlBS7l .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s0SiJlBS7l .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s0SiJlBS7l .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s0SiJlBS7l .mbr-text,
.cid-s0SiJlBS7l .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s0SiJlBS7l .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s0SiJlBS7l .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s0SiJlBS7l .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s0SiJlBS7l .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s0SiJlBS7l .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s0SiJlBS7l .main-row {
    margin: 0;
  }
  .cid-s0SiJlBS7l .mbr-section-title,
  .cid-s0SiJlBS7l .mbr-text,
  .cid-s0SiJlBS7l .list,
  .cid-s0SiJlBS7l .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s0SiJlBS7l .text-content {
    padding: 0;
  }
}
.cid-s0SiJlBS7l .mbr-section-title {
  text-align: right;
}
.cid-s0SiJlBS7l .list UL {
  text-align: left;
}
.cid-s1maqPF5Wu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1maqPF5Wu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1maqPF5Wu .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1maryXic9 {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1maryXic9 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1maryXic9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1maryXic9 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1maryXic9 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1maryXic9 .mbr-text,
.cid-s1maryXic9 .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1maryXic9 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1maryXic9 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1maryXic9 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1maryXic9 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1maryXic9 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1maryXic9 .main-row {
    margin: 0;
  }
  .cid-s1maryXic9 .mbr-section-title,
  .cid-s1maryXic9 .mbr-text,
  .cid-s1maryXic9 .list,
  .cid-s1maryXic9 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1maryXic9 .text-content {
    padding: 0;
  }
}
.cid-s1maryXic9 .mbr-section-title {
  text-align: right;
}
.cid-s1maryXic9 .list UL {
  text-align: left;
}
.cid-s1mbOpqJ8F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mbOpqJ8F .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mbOpqJ8F .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mbOYbakr {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mbOYbakr .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mbOYbakr .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mbOYbakr .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mbOYbakr .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mbOYbakr .mbr-text,
.cid-s1mbOYbakr .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mbOYbakr .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mbOYbakr .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mbOYbakr .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mbOYbakr .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mbOYbakr .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mbOYbakr .main-row {
    margin: 0;
  }
  .cid-s1mbOYbakr .mbr-section-title,
  .cid-s1mbOYbakr .mbr-text,
  .cid-s1mbOYbakr .list,
  .cid-s1mbOYbakr .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mbOYbakr .text-content {
    padding: 0;
  }
}
.cid-s1mbOYbakr .mbr-section-title {
  text-align: right;
}
.cid-s1mbOYbakr .list UL {
  text-align: left;
}
.cid-s1mbPZddnq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mbPZddnq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mbPZddnq .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mbQtdU69 {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mbQtdU69 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mbQtdU69 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mbQtdU69 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mbQtdU69 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mbQtdU69 .mbr-text,
.cid-s1mbQtdU69 .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mbQtdU69 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mbQtdU69 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mbQtdU69 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mbQtdU69 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mbQtdU69 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mbQtdU69 .main-row {
    margin: 0;
  }
  .cid-s1mbQtdU69 .mbr-section-title,
  .cid-s1mbQtdU69 .mbr-text,
  .cid-s1mbQtdU69 .list,
  .cid-s1mbQtdU69 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mbQtdU69 .text-content {
    padding: 0;
  }
}
.cid-s1mbQtdU69 .mbr-section-title {
  text-align: right;
}
.cid-s1mbQtdU69 .list UL {
  text-align: left;
}
.cid-s1mbRsaIYH {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mbRsaIYH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mbRsaIYH .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mbRZrD9D {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mbRZrD9D .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mbRZrD9D .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mbRZrD9D .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mbRZrD9D .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mbRZrD9D .mbr-text,
.cid-s1mbRZrD9D .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mbRZrD9D .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mbRZrD9D .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mbRZrD9D .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mbRZrD9D .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mbRZrD9D .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mbRZrD9D .main-row {
    margin: 0;
  }
  .cid-s1mbRZrD9D .mbr-section-title,
  .cid-s1mbRZrD9D .mbr-text,
  .cid-s1mbRZrD9D .list,
  .cid-s1mbRZrD9D .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mbRZrD9D .text-content {
    padding: 0;
  }
}
.cid-s1mbRZrD9D .mbr-section-title {
  text-align: right;
}
.cid-s1mbRZrD9D .list UL {
  text-align: left;
}
.cid-s1mbYyktUO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mbYyktUO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mbYyktUO .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mbZ74g9R {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mbZ74g9R .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mbZ74g9R .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mbZ74g9R .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mbZ74g9R .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mbZ74g9R .mbr-text,
.cid-s1mbZ74g9R .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mbZ74g9R .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mbZ74g9R .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mbZ74g9R .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mbZ74g9R .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mbZ74g9R .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mbZ74g9R .main-row {
    margin: 0;
  }
  .cid-s1mbZ74g9R .mbr-section-title,
  .cid-s1mbZ74g9R .mbr-text,
  .cid-s1mbZ74g9R .list,
  .cid-s1mbZ74g9R .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mbZ74g9R .text-content {
    padding: 0;
  }
}
.cid-s1mbZ74g9R .mbr-section-title {
  text-align: right;
}
.cid-s1mbZ74g9R .list UL {
  text-align: left;
}
.cid-s1mbZSFKFv {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mbZSFKFv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mbZSFKFv .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mc0nVtjG {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mc0nVtjG .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mc0nVtjG .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mc0nVtjG .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mc0nVtjG .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mc0nVtjG .mbr-text,
.cid-s1mc0nVtjG .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mc0nVtjG .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mc0nVtjG .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mc0nVtjG .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mc0nVtjG .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mc0nVtjG .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mc0nVtjG .main-row {
    margin: 0;
  }
  .cid-s1mc0nVtjG .mbr-section-title,
  .cid-s1mc0nVtjG .mbr-text,
  .cid-s1mc0nVtjG .list,
  .cid-s1mc0nVtjG .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mc0nVtjG .text-content {
    padding: 0;
  }
}
.cid-s1mc0nVtjG .mbr-section-title {
  text-align: right;
}
.cid-s1mc0nVtjG .list UL {
  text-align: left;
}
.cid-s1mc1gW3Kr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mc1gW3Kr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mc1gW3Kr .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mc1OXuME {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mc1OXuME .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mc1OXuME .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mc1OXuME .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mc1OXuME .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mc1OXuME .mbr-text,
.cid-s1mc1OXuME .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mc1OXuME .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mc1OXuME .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mc1OXuME .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mc1OXuME .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mc1OXuME .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mc1OXuME .main-row {
    margin: 0;
  }
  .cid-s1mc1OXuME .mbr-section-title,
  .cid-s1mc1OXuME .mbr-text,
  .cid-s1mc1OXuME .list,
  .cid-s1mc1OXuME .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mc1OXuME .text-content {
    padding: 0;
  }
}
.cid-s1mc1OXuME .mbr-section-title {
  text-align: right;
}
.cid-s1mc1OXuME .list UL {
  text-align: left;
}
.cid-s1mgbEC9ut {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgbEC9ut .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgbEC9ut .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mgcP7FEs {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mgcP7FEs .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mgcP7FEs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mgcP7FEs .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mgcP7FEs .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mgcP7FEs .mbr-text,
.cid-s1mgcP7FEs .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mgcP7FEs .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mgcP7FEs .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mgcP7FEs .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mgcP7FEs .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mgcP7FEs .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mgcP7FEs .main-row {
    margin: 0;
  }
  .cid-s1mgcP7FEs .mbr-section-title,
  .cid-s1mgcP7FEs .mbr-text,
  .cid-s1mgcP7FEs .list,
  .cid-s1mgcP7FEs .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mgcP7FEs .text-content {
    padding: 0;
  }
}
.cid-s1mgcP7FEs .mbr-section-title {
  text-align: right;
}
.cid-s1mgcP7FEs .list UL {
  text-align: left;
}
.cid-s1mgdSseI0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgdSseI0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgdSseI0 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mgetDqqo {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mgetDqqo .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mgetDqqo .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mgetDqqo .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mgetDqqo .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mgetDqqo .mbr-text,
.cid-s1mgetDqqo .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mgetDqqo .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mgetDqqo .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mgetDqqo .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mgetDqqo .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mgetDqqo .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mgetDqqo .main-row {
    margin: 0;
  }
  .cid-s1mgetDqqo .mbr-section-title,
  .cid-s1mgetDqqo .mbr-text,
  .cid-s1mgetDqqo .list,
  .cid-s1mgetDqqo .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mgetDqqo .text-content {
    padding: 0;
  }
}
.cid-s1mgetDqqo .mbr-section-title {
  text-align: right;
}
.cid-s1mgetDqqo .list UL {
  text-align: left;
}
.cid-s1mgfq022l {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgfq022l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgfq022l .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mgg5urfp {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mgg5urfp .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mgg5urfp .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mgg5urfp .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mgg5urfp .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mgg5urfp .mbr-text,
.cid-s1mgg5urfp .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mgg5urfp .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mgg5urfp .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mgg5urfp .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mgg5urfp .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mgg5urfp .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mgg5urfp .main-row {
    margin: 0;
  }
  .cid-s1mgg5urfp .mbr-section-title,
  .cid-s1mgg5urfp .mbr-text,
  .cid-s1mgg5urfp .list,
  .cid-s1mgg5urfp .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mgg5urfp .text-content {
    padding: 0;
  }
}
.cid-s1mgg5urfp .mbr-section-title {
  text-align: right;
}
.cid-s1mgg5urfp .list UL {
  text-align: left;
}
.cid-s1mgh4vScN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgh4vScN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgh4vScN .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mghGHwF1 {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mghGHwF1 .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mghGHwF1 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mghGHwF1 .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mghGHwF1 .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mghGHwF1 .mbr-text,
.cid-s1mghGHwF1 .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mghGHwF1 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mghGHwF1 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mghGHwF1 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mghGHwF1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mghGHwF1 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mghGHwF1 .main-row {
    margin: 0;
  }
  .cid-s1mghGHwF1 .mbr-section-title,
  .cid-s1mghGHwF1 .mbr-text,
  .cid-s1mghGHwF1 .list,
  .cid-s1mghGHwF1 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mghGHwF1 .text-content {
    padding: 0;
  }
}
.cid-s1mghGHwF1 .mbr-section-title {
  text-align: right;
}
.cid-s1mghGHwF1 .list UL {
  text-align: left;
}
.cid-s1mgiEyzpK {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgiEyzpK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgiEyzpK .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mgjkQQch {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mgjkQQch .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mgjkQQch .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mgjkQQch .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mgjkQQch .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mgjkQQch .mbr-text,
.cid-s1mgjkQQch .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mgjkQQch .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mgjkQQch .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mgjkQQch .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mgjkQQch .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mgjkQQch .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mgjkQQch .main-row {
    margin: 0;
  }
  .cid-s1mgjkQQch .mbr-section-title,
  .cid-s1mgjkQQch .mbr-text,
  .cid-s1mgjkQQch .list,
  .cid-s1mgjkQQch .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mgjkQQch .text-content {
    padding: 0;
  }
}
.cid-s1mgjkQQch .mbr-section-title {
  text-align: right;
}
.cid-s1mgjkQQch .list UL {
  text-align: left;
}
.cid-s1mgkAJj9p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #d9d6bd;
}
.cid-s1mgkAJj9p .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s1mgkAJj9p .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-s1mglcNmCy {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #e6e4d3;
}
.cid-s1mglcNmCy .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-s1mglcNmCy .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-s1mglcNmCy .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-s1mglcNmCy .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-s1mglcNmCy .mbr-text,
.cid-s1mglcNmCy .mbr-section-btn {
  color: #8b865f;
  text-align: right;
}
.cid-s1mglcNmCy .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  box-shadow: 0px 0px 30px rgba(108, 108, 108, 0.3);
  border-radius: .25rem;
}
.cid-s1mglcNmCy .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-s1mglcNmCy .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-s1mglcNmCy .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-s1mglcNmCy .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #8b865f;
}
@media (max-width: 991px) {
  .cid-s1mglcNmCy .main-row {
    margin: 0;
  }
  .cid-s1mglcNmCy .mbr-section-title,
  .cid-s1mglcNmCy .mbr-text,
  .cid-s1mglcNmCy .list,
  .cid-s1mglcNmCy .mbr-section-btn {
    text-align: center !important;
  }
  .cid-s1mglcNmCy .text-content {
    padding: 0;
  }
}
.cid-s1mglcNmCy .mbr-section-title {
  text-align: right;
}
.cid-s1mglcNmCy .list UL {
  text-align: left;
}
.cid-s0Scyx2qJM {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-s0Scyx2qJM .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-s0Scyx2qJM .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-s0Scyx2qJM .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-s0Scyx2qJM .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-s0Scyx2qJM .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #bab589;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-s0Scyx2qJM .icon-transition span:hover {
  background-color: #8b865f;
}
.cid-s0Scyx2qJM .mbr-text {
  color: #767676;
}
@media (max-width: 991px) {
  .cid-s0Scyx2qJM .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-s0Scyx2qJM .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-s0Scyx2qJM .mbr-text {
    margin-bottom: 1.5rem;
  }
}
