body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'TitanOne-Regular';
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'TitanOne-Regular';
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Lato-Black';
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ee3738 !important;
}
.bg-success {
  background-color: #d81400 !important;
}
.bg-info {
  background-color: #ee2524 !important;
}
.bg-warning {
  background-color: #ffc000 !important;
}
.bg-danger {
  background-color: #ee3738 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ee3738 !important;
  border-color: #ee3738 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #be1011 !important;
  border-color: #be1011 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #be1011 !important;
  border-color: #be1011 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #8d2326 !important;
  border-color: #8d2326 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #481213 !important;
  border-color: #481213 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #481213 !important;
  border-color: #481213 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ee2524 !important;
  border-color: #ee2524 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #ae0e0d !important;
  border-color: #ae0e0d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ae0e0d !important;
  border-color: #ae0e0d !important;
}
.btn-success,
.btn-success:active {
  background-color: #d81400 !important;
  border-color: #d81400 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #810c00 !important;
  border-color: #810c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #810c00 !important;
  border-color: #810c00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffc000 !important;
  border-color: #ffc000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #a87f00 !important;
  border-color: #a87f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a87f00 !important;
  border-color: #a87f00 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ee3738 !important;
  border-color: #ee3738 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #be1011 !important;
  border-color: #be1011 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #be1011 !important;
  border-color: #be1011 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee3738;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #be1011 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ee3738 !important;
  border-color: #ee3738 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8d2326;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #481213 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #8d2326 !important;
  border-color: #8d2326 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee2524;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ae0e0d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ee2524 !important;
  border-color: #ee2524 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d81400;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #810c00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #d81400 !important;
  border-color: #d81400 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffc000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a87f00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffc000 !important;
  border-color: #ffc000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ee3738;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #be1011 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ee3738 !important;
  border-color: #ee3738 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ee3738 !important;
}
.text-secondary {
  color: #8d2326 !important;
}
.text-success {
  color: #d81400 !important;
}
.text-info {
  color: #ee2524 !important;
}
.text-warning {
  color: #ffc000 !important;
}
.text-danger {
  color: #ee3738 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b00f10 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3b0f10 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #720b00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #a00d0c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #997300 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b00f10 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ee3738;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ee2524;
}
.alert-warning {
  background-color: #ffc000;
}
.alert-danger {
  background-color: #ee3738;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ee3738;
  border-color: #ee3738;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ee3738;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef3f3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffada5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fde1e1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff2cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef3f3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ee3738 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ee3738;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ee3738;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ee3738;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ee3738;
  border-bottom-color: #ee3738;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ee3738 !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: #8d2326 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ee3738' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-ttB3rZZyjl {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttB3rZZyjl nav.navbar {
  position: fixed;
}
.cid-ttB3rZZyjl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttB3rZZyjl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttB3rZZyjl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttB3rZZyjl .dropdown-item:hover,
.cid-ttB3rZZyjl .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-ttB3rZZyjl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttB3rZZyjl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttB3rZZyjl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttB3rZZyjl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttB3rZZyjl .nav-link {
  position: relative;
}
.cid-ttB3rZZyjl .container {
  display: flex;
  margin: auto;
}
.cid-ttB3rZZyjl .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttB3rZZyjl .dropdown-menu,
.cid-ttB3rZZyjl .navbar.opened {
  background: #ee2524 !important;
}
.cid-ttB3rZZyjl .nav-item:focus,
.cid-ttB3rZZyjl .nav-link:focus {
  outline: none;
}
.cid-ttB3rZZyjl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttB3rZZyjl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttB3rZZyjl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-ttB3rZZyjl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttB3rZZyjl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttB3rZZyjl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttB3rZZyjl .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-ttB3rZZyjl .navbar.opened {
  transition: all .3s;
}
.cid-ttB3rZZyjl .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttB3rZZyjl .navbar .navbar-logo img {
  width: auto;
}
.cid-ttB3rZZyjl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttB3rZZyjl .navbar.collapsed {
  justify-content: center;
}
.cid-ttB3rZZyjl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttB3rZZyjl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttB3rZZyjl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttB3rZZyjl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttB3rZZyjl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttB3rZZyjl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttB3rZZyjl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttB3rZZyjl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttB3rZZyjl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttB3rZZyjl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttB3rZZyjl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttB3rZZyjl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttB3rZZyjl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttB3rZZyjl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttB3rZZyjl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttB3rZZyjl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttB3rZZyjl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttB3rZZyjl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttB3rZZyjl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttB3rZZyjl .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttB3rZZyjl .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttB3rZZyjl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttB3rZZyjl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttB3rZZyjl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttB3rZZyjl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttB3rZZyjl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttB3rZZyjl .dropdown-item.active,
.cid-ttB3rZZyjl .dropdown-item:active {
  background-color: transparent;
}
.cid-ttB3rZZyjl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttB3rZZyjl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttB3rZZyjl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttB3rZZyjl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-ttB3rZZyjl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttB3rZZyjl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttB3rZZyjl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttB3rZZyjl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttB3rZZyjl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttB3rZZyjl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-ttB3rZZyjl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttB3rZZyjl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttB3rZZyjl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttB3rZZyjl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttB3rZZyjl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttB3rZZyjl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttB3rZZyjl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttB3rZZyjl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttB3rZZyjl .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttB3rZZyjl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttB3rZZyjl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttB3rZZyjl .navbar {
    height: 70px;
  }
  .cid-ttB3rZZyjl .navbar.opened {
    height: auto;
  }
  .cid-ttB3rZZyjl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAqLl9BE8H {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #fafafa;
}
.cid-uAqLl9BE8H .carousel {
  width: 100%;
}
.cid-uAqLl9BE8H .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uAqLl9BE8H .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uAqLl9BE8H .carousel-caption {
  bottom: 40px;
}
.cid-uAqLl9BE8H .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uAqLl9BE8H .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uAqLl9BE8H .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uAqLl9BE8H .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uAqLl9BE8H .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uAqLl9BE8H .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uAqLl9BE8H .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uAqLl9BE8H .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uAqLl9BE8H .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAqLl9BE8H .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uAqLl9BE8H .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uAqLl9BE8H .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uAqLl9BE8H .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uAqLl9BE8H .carousel-indicators li.active,
.cid-uAqLl9BE8H .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uAqLl9BE8H .carousel-indicators li::after,
.cid-uAqLl9BE8H .carousel-indicators li::before {
  content: none;
}
.cid-uAqLl9BE8H .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uAqLl9BE8H .carousel-indicators {
    display: none !important;
  }
}
.cid-uAqLl9BE8H H5 {
  text-align: left;
  color: #ffffff;
}
.cid-uAqLl9BE8H P {
  text-align: left;
  color: #ffffff;
}
.cid-ttB3AwoLIE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ttB3AwoLIE .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ttB3AwoLIE .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ttB3AwoLIE .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttB3AwoLIE .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttB3AwoLIE .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttB3AwoLIE .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ttB3AwoLIE .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ttB3AwoLIE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttB3AwoLIE .card-title {
  color: #ee3738;
}
.cid-ttB3AwoLIE .mbr-text,
.cid-ttB3AwoLIE .mbr-section-btn {
  color: #6c0a00;
}
.cid-ttB3DNa3JH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ttB3DNa3JH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttB3DNa3JH .row {
  flex-direction: row-reverse;
}
.cid-ttB3DNa3JH img {
  width: 100%;
}
.cid-ttB3y9yr21 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ttB3y9yr21 .item:focus,
.cid-ttB3y9yr21 span:focus {
  outline: none;
}
.cid-ttB3y9yr21 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ttB3y9yr21 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttB3y9yr21 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ttB3y9yr21 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttB3y9yr21 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ttB3y9yr21 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ttB3y9yr21 .mbr-section-btn {
  margin-top: auto !important;
  padding: 0.4rem 0.4rem;
  border-radius: 4px;
}
.cid-ttB3y9yr21 .mbr-section-title {
  color: #d81400;
}
.cid-ttB3y9yr21 .mbr-text,
.cid-ttB3y9yr21 .mbr-section-btn {
  text-align: left;
  color: #6c0a00;
}
.cid-ttB3y9yr21 .item-title {
  text-align: center;
  color: #d81400;
}
.cid-ttB3y9yr21 .item-subtitle {
  text-align: left;
}
.cid-tu9iGItilD {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/bolinha-queijo2-2000x1333.jpg");
}
.cid-tu9iGItilD .mbr-section-title {
  text-align: center;
}
.cid-ttBNCxa6aM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b10000;
}
.cid-ttBNCxa6aM .media-container-row {
  justify-content: space-between;
}
.cid-ttBNCxa6aM .text-content {
  max-width: 50%;
}
.cid-ttBNCxa6aM .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffef00;
  border: 2px solid #ffef00;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-ttBNCxa6aM .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-ttBNCxa6aM .mbr-iconfont-social:hover {
  background-color: #ffef00;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-ttBNCxa6aM .icons {
    justify-content: center !important;
  }
  .cid-ttBNCxa6aM .text-content * {
    text-align: center;
  }
}
.cid-ttBNCxa6aM .mbr-section-title {
  color: #ffef00;
}
.cid-ttBNCxa6aM P {
  color: #ffef00;
}
.cid-twO4ue3mw4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO4ue3mw4 [class^="socicon-"]:before,
.cid-twO4ue3mw4 [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO4ue3mw4 .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO4ue3mw4 .btn-social:hover {
  background: #e6c63b;
}
.cid-twO4ue3mw4 .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO4ue3mw4 .mbr-section-title,
.cid-twO4ue3mw4 .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO4ue3mw4 .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO4ue3mw4 P {
  text-align: right;
}
.cid-twO4uHYCwZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-twO4uHYCwZ .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-ttBFvVzAnM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttBFvVzAnM nav.navbar {
  position: fixed;
}
.cid-ttBFvVzAnM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBFvVzAnM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttBFvVzAnM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttBFvVzAnM .dropdown-item:hover,
.cid-ttBFvVzAnM .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-ttBFvVzAnM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttBFvVzAnM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttBFvVzAnM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttBFvVzAnM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttBFvVzAnM .nav-link {
  position: relative;
}
.cid-ttBFvVzAnM .container {
  display: flex;
  margin: auto;
}
.cid-ttBFvVzAnM .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttBFvVzAnM .dropdown-menu,
.cid-ttBFvVzAnM .navbar.opened {
  background: #ee2524 !important;
}
.cid-ttBFvVzAnM .nav-item:focus,
.cid-ttBFvVzAnM .nav-link:focus {
  outline: none;
}
.cid-ttBFvVzAnM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttBFvVzAnM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttBFvVzAnM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-ttBFvVzAnM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBFvVzAnM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttBFvVzAnM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttBFvVzAnM .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-ttBFvVzAnM .navbar.opened {
  transition: all .3s;
}
.cid-ttBFvVzAnM .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttBFvVzAnM .navbar .navbar-logo img {
  width: auto;
}
.cid-ttBFvVzAnM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttBFvVzAnM .navbar.collapsed {
  justify-content: center;
}
.cid-ttBFvVzAnM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttBFvVzAnM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttBFvVzAnM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttBFvVzAnM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttBFvVzAnM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttBFvVzAnM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttBFvVzAnM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttBFvVzAnM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttBFvVzAnM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttBFvVzAnM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttBFvVzAnM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttBFvVzAnM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttBFvVzAnM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttBFvVzAnM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttBFvVzAnM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttBFvVzAnM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttBFvVzAnM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttBFvVzAnM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttBFvVzAnM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttBFvVzAnM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttBFvVzAnM .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttBFvVzAnM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttBFvVzAnM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttBFvVzAnM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttBFvVzAnM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttBFvVzAnM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttBFvVzAnM .dropdown-item.active,
.cid-ttBFvVzAnM .dropdown-item:active {
  background-color: transparent;
}
.cid-ttBFvVzAnM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttBFvVzAnM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttBFvVzAnM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttBFvVzAnM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-ttBFvVzAnM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttBFvVzAnM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttBFvVzAnM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttBFvVzAnM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttBFvVzAnM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttBFvVzAnM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-ttBFvVzAnM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttBFvVzAnM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBFvVzAnM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBFvVzAnM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttBFvVzAnM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBFvVzAnM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttBFvVzAnM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttBFvVzAnM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBFvVzAnM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttBFvVzAnM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttBFvVzAnM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttBFvVzAnM .navbar {
    height: 70px;
  }
  .cid-ttBFvVzAnM .navbar.opened {
    height: auto;
  }
  .cid-ttBFvVzAnM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu9VWrkX1Z {
  background-image: url("../../../assets/images/banner-marielo-massa-2000x1333.jpg");
}
.cid-tu9VWrkX1Z .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-tu9VWrkX1Z .mbr-text,
.cid-tu9VWrkX1Z .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ttBFvYnCFQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttBFvYnCFQ .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ttBFvYnCFQ .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ttBFvYnCFQ .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttBFvYnCFQ .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttBFvYnCFQ .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttBFvYnCFQ .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ttBFvYnCFQ .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ttBFvYnCFQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttBFvYnCFQ .card-title {
  color: #d81400;
}
.cid-ttBFvYnCFQ .mbr-text,
.cid-ttBFvYnCFQ .mbr-section-btn {
  color: #6c0a00;
}
.cid-uA4ll7OaSf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-uA4ll7OaSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uA4ll7OaSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uA4ll7OaSf .nav-tabs .nav-item.open .nav-link:focus,
.cid-uA4ll7OaSf .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uA4ll7OaSf .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #ffc000;
}
@media (max-width: 767px) {
  .cid-uA4ll7OaSf .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uA4ll7OaSf .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-uA4ll7OaSf .nav-tabs .nav-link:not(.active) {
  color: #6c0a00;
}
.cid-uA4ll7OaSf .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-uA4ll7OaSf .nav-link,
.cid-uA4ll7OaSf .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uA4ll7OaSf .nav-tabs .nav-link.active {
  color: #ffc000;
  border-bottom: 3px solid #ffc000;
}
.cid-uA4ll7OaSf H4 {
  text-align: center;
}
.cid-uA4ll7OaSf H3 {
  text-align: center;
  color: #d81400;
}
.cid-uA4ll7OaSf P {
  color: #6c0a00;
}
.cid-tuqGbV7v0F {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/salgados-marielo-tatui-sp-1-1080x595.jpg");
}
@media (max-width: 991px) {
  .cid-tuqGbV7v0F .mbr-section-title,
  .cid-tuqGbV7v0F .mbr-section-subtitle,
  .cid-tuqGbV7v0F .mbr-section-btn,
  .cid-tuqGbV7v0F .mbr-text {
    text-align: center;
  }
}
.cid-tuss23IDXe {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuss23IDXe .carousel-item {
  justify-content: center;
}
.cid-tuss23IDXe .carousel-item.active,
.cid-tuss23IDXe .carousel-item-next,
.cid-tuss23IDXe .carousel-item-prev {
  display: flex;
}
.cid-tuss23IDXe .carousel-controls a {
  transition: opacity .5s;
  font-size: 12px;
  font-weight: 800;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 30px;
  width: 30px;
  padding: 10px;
  border-radius: 50%;
  color: #000000;
  background: #ffc107;
}
.cid-tuss23IDXe .carousel-control-next span {
  padding-left: 5px;
}
.cid-tuss23IDXe .carousel-control-prev span {
  padding-right: 5px;
}
.cid-tuss23IDXe .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-tuss23IDXe .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-tuss23IDXe .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-tuss23IDXe .user_text {
  color: #000000;
}
.cid-tuss23IDXe H3 {
  color: #d81400;
}
.cid-tuqIBnYL7h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tuqIBnYL7h .card-wrapper {
  background: #6c0a00;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tuqIBnYL7h .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tuqIBnYL7h .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tuqIBnYL7h .card-wrapper {
    padding: 4rem;
  }
}
.cid-tuqIBnYL7h .mbr-text,
.cid-tuqIBnYL7h .mbr-section-btn {
  color: #ffffff;
}
.cid-tuqIBnYL7h .card-title,
.cid-tuqIBnYL7h .card-box {
  text-align: left;
}
.cid-tur3bDEyrQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tur3bDEyrQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tur3bDEyrQ .row {
  flex-direction: row-reverse;
}
.cid-tur3bDEyrQ img {
  width: 100%;
}
.cid-twO4xMdPCu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO4xMdPCu [class^="socicon-"]:before,
.cid-twO4xMdPCu [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO4xMdPCu .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO4xMdPCu .btn-social:hover {
  background: #e6c63b;
}
.cid-twO4xMdPCu .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO4xMdPCu .mbr-section-title,
.cid-twO4xMdPCu .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO4xMdPCu .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO4xMdPCu P {
  text-align: right;
}
.cid-twO4y3nBGO {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-twO4y3nBGO .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-ttBGsTyyjj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttBGsTyyjj nav.navbar {
  position: fixed;
}
.cid-ttBGsTyyjj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBGsTyyjj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttBGsTyyjj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttBGsTyyjj .dropdown-item:hover,
.cid-ttBGsTyyjj .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-ttBGsTyyjj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttBGsTyyjj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttBGsTyyjj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttBGsTyyjj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttBGsTyyjj .nav-link {
  position: relative;
}
.cid-ttBGsTyyjj .container {
  display: flex;
  margin: auto;
}
.cid-ttBGsTyyjj .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttBGsTyyjj .dropdown-menu,
.cid-ttBGsTyyjj .navbar.opened {
  background: #ee2524 !important;
}
.cid-ttBGsTyyjj .nav-item:focus,
.cid-ttBGsTyyjj .nav-link:focus {
  outline: none;
}
.cid-ttBGsTyyjj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttBGsTyyjj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttBGsTyyjj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-ttBGsTyyjj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBGsTyyjj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttBGsTyyjj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttBGsTyyjj .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-ttBGsTyyjj .navbar.opened {
  transition: all .3s;
}
.cid-ttBGsTyyjj .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttBGsTyyjj .navbar .navbar-logo img {
  width: auto;
}
.cid-ttBGsTyyjj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttBGsTyyjj .navbar.collapsed {
  justify-content: center;
}
.cid-ttBGsTyyjj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttBGsTyyjj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttBGsTyyjj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttBGsTyyjj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttBGsTyyjj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttBGsTyyjj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttBGsTyyjj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttBGsTyyjj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttBGsTyyjj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttBGsTyyjj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttBGsTyyjj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttBGsTyyjj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttBGsTyyjj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttBGsTyyjj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttBGsTyyjj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttBGsTyyjj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttBGsTyyjj .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttBGsTyyjj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttBGsTyyjj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttBGsTyyjj .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttBGsTyyjj .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttBGsTyyjj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttBGsTyyjj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttBGsTyyjj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttBGsTyyjj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttBGsTyyjj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttBGsTyyjj .dropdown-item.active,
.cid-ttBGsTyyjj .dropdown-item:active {
  background-color: transparent;
}
.cid-ttBGsTyyjj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttBGsTyyjj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttBGsTyyjj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttBGsTyyjj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-ttBGsTyyjj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttBGsTyyjj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttBGsTyyjj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttBGsTyyjj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttBGsTyyjj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttBGsTyyjj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-ttBGsTyyjj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttBGsTyyjj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBGsTyyjj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBGsTyyjj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttBGsTyyjj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBGsTyyjj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttBGsTyyjj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttBGsTyyjj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBGsTyyjj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttBGsTyyjj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttBGsTyyjj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttBGsTyyjj .navbar {
    height: 70px;
  }
  .cid-ttBGsTyyjj .navbar.opened {
    height: auto;
  }
  .cid-ttBGsTyyjj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvhIID6NpF {
  background-image: url("../../../assets/images/pastelzinho-coxinha-1-1080x1080.jpeg");
}
.cid-tvhIID6NpF .mbr-section-title {
  color: #ffffff;
}
.cid-tvhIID6NpF .mbr-text,
.cid-tvhIID6NpF .mbr-section-btn {
  color: #ffffff;
}
.cid-ttBGsW4vn9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/croquete2-2000x1333.jpg");
}
.cid-ttBGsW4vn9 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ttBGsW4vn9 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ttBGsW4vn9 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ttBGsW4vn9 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttBGsW4vn9 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttBGsW4vn9 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ttBGsW4vn9 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ttBGsW4vn9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttBGsW4vn9 .card-title {
  color: #d81400;
}
.cid-ttBGsW4vn9 .mbr-text,
.cid-ttBGsW4vn9 .mbr-section-btn {
  color: #000000;
}
.cid-tusgL3eTU3 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tusgL3eTU3 .mbr-section-title {
  color: #d81400;
}
.cid-tusgL3eTU3 .mbr-section-subtitle {
  color: #6c0a00;
}
.cid-turh0IoO1q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turh0IoO1q .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turh0IoO1q .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-turh0IoO1q .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turh0IoO1q .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turh0IoO1q .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turh0IoO1q .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turh0IoO1q .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-turh0IoO1q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turh0IoO1q .card-title {
  color: #d81400;
}
.cid-turh0IoO1q .mbr-text,
.cid-turh0IoO1q .mbr-section-btn {
  color: #6c0a00;
}
.cid-turh19b5Tl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turh19b5Tl .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turh19b5Tl .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turh19b5Tl .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turh19b5Tl .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turh19b5Tl .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turh19b5Tl .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-turh19b5Tl .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turh19b5Tl .card-title {
  color: #ffc000;
}
.cid-turh19b5Tl .mbr-text,
.cid-turh19b5Tl .mbr-section-btn {
  color: #6c0a00;
}
.cid-turj2oObdv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turj2oObdv .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turj2oObdv .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-turj2oObdv .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turj2oObdv .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turj2oObdv .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turj2oObdv .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turj2oObdv .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-turj2oObdv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turj2oObdv .card-title {
  color: #d81400;
}
.cid-turj2oObdv .mbr-text,
.cid-turj2oObdv .mbr-section-btn {
  color: #6c0a00;
}
.cid-turj35YPE8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turj35YPE8 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turj35YPE8 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turj35YPE8 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turj35YPE8 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turj35YPE8 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turj35YPE8 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-turj35YPE8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turj35YPE8 .card-title {
  color: #ffc000;
}
.cid-turj35YPE8 .mbr-text,
.cid-turj35YPE8 .mbr-section-btn {
  color: #6c0a00;
}
.cid-turjysyGyr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turjysyGyr .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turjysyGyr .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-turjysyGyr .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turjysyGyr .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turjysyGyr .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turjysyGyr .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turjysyGyr .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-turjysyGyr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  font-weight: 300;
}
.cid-turjysyGyr .card-title {
  color: #d81400;
}
.cid-turjysyGyr .mbr-text,
.cid-turjysyGyr .mbr-section-btn {
  color: #6c0a00;
}
.cid-turjz62APt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turjz62APt .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turjz62APt .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turjz62APt .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turjz62APt .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turjz62APt .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turjz62APt .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-turjz62APt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turjz62APt .card-title {
  color: #ffc000;
}
.cid-turjz62APt .mbr-text,
.cid-turjz62APt .mbr-section-btn {
  color: #6c0a00;
}
.cid-turjXQnVIH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turjXQnVIH .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turjXQnVIH .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-turjXQnVIH .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turjXQnVIH .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turjXQnVIH .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turjXQnVIH .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turjXQnVIH .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-turjXQnVIH .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turjXQnVIH .card-title {
  color: #d81400;
}
.cid-turjXQnVIH .mbr-text,
.cid-turjXQnVIH .mbr-section-btn {
  color: #6c0a00;
}
.cid-turjYlKgfS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turjYlKgfS .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turjYlKgfS .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turjYlKgfS .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turjYlKgfS .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turjYlKgfS .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turjYlKgfS .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-turjYlKgfS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turjYlKgfS .card-title {
  color: #ffc000;
}
.cid-turjYlKgfS .mbr-text,
.cid-turjYlKgfS .mbr-section-btn {
  color: #6c0a00;
}
.cid-turjZ5milY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-turjZ5milY .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-turjZ5milY .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-turjZ5milY .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turjZ5milY .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-turjZ5milY .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-turjZ5milY .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-turjZ5milY .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-turjZ5milY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-turjZ5milY .card-title {
  color: #d81400;
}
.cid-turjZ5milY .mbr-text,
.cid-turjZ5milY .mbr-section-btn {
  color: #6c0a00;
}
.cid-tusv7hflFs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tusv7hflFs .card-wrapper {
  background: #6c0a00;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tusv7hflFs .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tusv7hflFs .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tusv7hflFs .card-wrapper {
    padding: 4rem;
  }
}
.cid-tusv7hflFs .mbr-text,
.cid-tusv7hflFs .mbr-section-btn {
  color: #ffffff;
}
.cid-tusv7hflFs .card-title,
.cid-tusv7hflFs .card-box {
  text-align: left;
}
.cid-twO4AR1ELr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6c0a00;
}
.cid-twO4AR1ELr [class^="socicon-"]:before,
.cid-twO4AR1ELr [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO4AR1ELr .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO4AR1ELr .btn-social:hover {
  background: #e6c63b;
}
.cid-twO4AR1ELr .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO4AR1ELr .mbr-section-title,
.cid-twO4AR1ELr .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO4AR1ELr .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO4AR1ELr P {
  text-align: right;
}
.cid-twO4B4eNiz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #6c0a00;
}
.cid-twO4B4eNiz .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-ttBHiTlTUS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ttBHiTlTUS nav.navbar {
  position: fixed;
}
.cid-ttBHiTlTUS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBHiTlTUS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttBHiTlTUS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ttBHiTlTUS .dropdown-item:hover,
.cid-ttBHiTlTUS .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-ttBHiTlTUS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ttBHiTlTUS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ttBHiTlTUS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-ttBHiTlTUS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttBHiTlTUS .nav-link {
  position: relative;
}
.cid-ttBHiTlTUS .container {
  display: flex;
  margin: auto;
}
.cid-ttBHiTlTUS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ttBHiTlTUS .dropdown-menu,
.cid-ttBHiTlTUS .navbar.opened {
  background: #ee2524 !important;
}
.cid-ttBHiTlTUS .nav-item:focus,
.cid-ttBHiTlTUS .nav-link:focus {
  outline: none;
}
.cid-ttBHiTlTUS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttBHiTlTUS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttBHiTlTUS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-ttBHiTlTUS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttBHiTlTUS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttBHiTlTUS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttBHiTlTUS .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-ttBHiTlTUS .navbar.opened {
  transition: all .3s;
}
.cid-ttBHiTlTUS .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-ttBHiTlTUS .navbar .navbar-logo img {
  width: auto;
}
.cid-ttBHiTlTUS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttBHiTlTUS .navbar.collapsed {
  justify-content: center;
}
.cid-ttBHiTlTUS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttBHiTlTUS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttBHiTlTUS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttBHiTlTUS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttBHiTlTUS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttBHiTlTUS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ttBHiTlTUS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttBHiTlTUS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ttBHiTlTUS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ttBHiTlTUS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttBHiTlTUS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttBHiTlTUS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttBHiTlTUS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttBHiTlTUS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ttBHiTlTUS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttBHiTlTUS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttBHiTlTUS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttBHiTlTUS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttBHiTlTUS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttBHiTlTUS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ttBHiTlTUS .navbar.navbar-short {
  min-height: 60px;
}
.cid-ttBHiTlTUS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ttBHiTlTUS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ttBHiTlTUS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttBHiTlTUS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttBHiTlTUS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttBHiTlTUS .dropdown-item.active,
.cid-ttBHiTlTUS .dropdown-item:active {
  background-color: transparent;
}
.cid-ttBHiTlTUS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttBHiTlTUS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttBHiTlTUS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttBHiTlTUS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-ttBHiTlTUS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttBHiTlTUS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttBHiTlTUS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttBHiTlTUS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ttBHiTlTUS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-ttBHiTlTUS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-ttBHiTlTUS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ttBHiTlTUS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBHiTlTUS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ttBHiTlTUS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ttBHiTlTUS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBHiTlTUS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ttBHiTlTUS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ttBHiTlTUS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ttBHiTlTUS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttBHiTlTUS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttBHiTlTUS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttBHiTlTUS .navbar {
    height: 70px;
  }
  .cid-ttBHiTlTUS .navbar.opened {
    height: auto;
  }
  .cid-ttBHiTlTUS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvhM5ftEMo {
  background-image: url("../../../assets/images/as-coxinhas-marielo-2000x1333.jpg");
}
.cid-tvhM5ftEMo .mbr-section-title {
  color: #6c0a00;
}
.cid-tvhMClDM1R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvhMClDM1R .row {
    flex-direction: column-reverse;
  }
  .cid-tvhMClDM1R .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tvhMClDM1R .google-map {
  height: 100%;
  position: relative;
}
.cid-tvhMClDM1R .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvhMClDM1R .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tvhMClDM1R .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvhMClDM1R .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvhMClDM1R .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tvhMClDM1R .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-tvhMClDM1R .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-tvhMClDM1R .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvhMClDM1R .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tvhMClDM1R .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #ee3738;
}
.cid-tvhMClDM1R .card-title {
  color: #ffc000;
}
.cid-tvhMClDM1R .mbr-section-title {
  color: #d81400;
}
.cid-tvhMLCXkfs {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvhMLCXkfs .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tvhMLCXkfs form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tvhMLCXkfs form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-tvhMLCXkfs form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tvhMLCXkfs .mbr-section-subtitle {
  color: #005605;
}
.cid-tvhMLCXkfs .mbr-section-title {
  color: #d81400;
}
.cid-twO2iJZwKP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO2iJZwKP [class^="socicon-"]:before,
.cid-twO2iJZwKP [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO2iJZwKP .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO2iJZwKP .btn-social:hover {
  background: #e6c63b;
}
.cid-twO2iJZwKP .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO2iJZwKP .mbr-section-title,
.cid-twO2iJZwKP .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO2iJZwKP .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO2iJZwKP P {
  text-align: right;
}
.cid-twO25VD6vm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO25VD6vm [class^="socicon-"]:before,
.cid-twO25VD6vm [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO25VD6vm .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO25VD6vm .btn-social:hover {
  background: #e6c63b;
}
.cid-twO25VD6vm .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO25VD6vm .mbr-section-title,
.cid-twO25VD6vm .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO25VD6vm .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO25VD6vm P {
  text-align: right;
}
.cid-twO3fSGzjV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-twO3fSGzjV .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-tusvYggK8i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tusvYggK8i nav.navbar {
  position: fixed;
}
.cid-tusvYggK8i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tusvYggK8i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tusvYggK8i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tusvYggK8i .dropdown-item:hover,
.cid-tusvYggK8i .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-tusvYggK8i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tusvYggK8i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tusvYggK8i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tusvYggK8i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tusvYggK8i .nav-link {
  position: relative;
}
.cid-tusvYggK8i .container {
  display: flex;
  margin: auto;
}
.cid-tusvYggK8i .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tusvYggK8i .dropdown-menu,
.cid-tusvYggK8i .navbar.opened {
  background: #ee2524 !important;
}
.cid-tusvYggK8i .nav-item:focus,
.cid-tusvYggK8i .nav-link:focus {
  outline: none;
}
.cid-tusvYggK8i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tusvYggK8i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tusvYggK8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tusvYggK8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tusvYggK8i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tusvYggK8i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tusvYggK8i .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-tusvYggK8i .navbar.opened {
  transition: all .3s;
}
.cid-tusvYggK8i .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tusvYggK8i .navbar .navbar-logo img {
  width: auto;
}
.cid-tusvYggK8i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tusvYggK8i .navbar.collapsed {
  justify-content: center;
}
.cid-tusvYggK8i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tusvYggK8i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tusvYggK8i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tusvYggK8i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tusvYggK8i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tusvYggK8i .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tusvYggK8i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tusvYggK8i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tusvYggK8i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tusvYggK8i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tusvYggK8i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tusvYggK8i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tusvYggK8i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tusvYggK8i .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tusvYggK8i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tusvYggK8i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tusvYggK8i .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tusvYggK8i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tusvYggK8i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tusvYggK8i .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tusvYggK8i .navbar.navbar-short {
  min-height: 60px;
}
.cid-tusvYggK8i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tusvYggK8i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tusvYggK8i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tusvYggK8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tusvYggK8i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tusvYggK8i .dropdown-item.active,
.cid-tusvYggK8i .dropdown-item:active {
  background-color: transparent;
}
.cid-tusvYggK8i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tusvYggK8i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tusvYggK8i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tusvYggK8i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-tusvYggK8i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tusvYggK8i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tusvYggK8i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tusvYggK8i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tusvYggK8i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tusvYggK8i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-tusvYggK8i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tusvYggK8i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tusvYggK8i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tusvYggK8i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tusvYggK8i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tusvYggK8i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tusvYggK8i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tusvYggK8i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tusvYggK8i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tusvYggK8i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tusvYggK8i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tusvYggK8i .navbar {
    height: 70px;
  }
  .cid-tusvYggK8i .navbar.opened {
    height: auto;
  }
  .cid-tusvYggK8i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tusyBSL7cH {
  background-image: url("../../../assets/images/pastel-marielo-alimentos-1920x1280.jpg");
}
.cid-tusyBSL7cH .mbr-section-title {
  color: #ffffff;
}
.cid-tusyBSL7cH .mbr-text,
.cid-tusyBSL7cH .mbr-section-btn {
  color: #ffffff;
}
.cid-tvi6utISlw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvi6utISlw .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvi6utISlw .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-tvi6utISlw .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvi6utISlw .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvi6utISlw .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvi6utISlw .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tvi6utISlw .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tvi6utISlw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvi6utISlw .card-title {
  color: #d81400;
}
.cid-tvi6utISlw .mbr-text,
.cid-tvi6utISlw .mbr-section-btn {
  color: #6c0a00;
}
.cid-tvi6bvOo69 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvi6bvOo69 .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-tvi6bvOo69 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvi6bvOo69 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvi6bvOo69 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvi6bvOo69 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-tvi6bvOo69 .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-tvi6bvOo69 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvi6bvOo69 .mbr-text,
.cid-tvi6bvOo69 .mbr-section-btn {
  color: #6c0a00;
}
.cid-tvi6bvOo69 .card-title {
  color: #d81400;
}
.cid-tw2XjqRClK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw2XjqRClK .item {
  padding-bottom: 2rem;
}
.cid-tw2XjqRClK .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tw2XjqRClK .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tw2XjqRClK .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 40px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tw2XjqRClK .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tw2XjqRClK .carousel-control,
.cid-tw2XjqRClK .close {
  background: #1b1b1b;
}
.cid-tw2XjqRClK .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tw2XjqRClK .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tw2XjqRClK .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tw2XjqRClK .carousel-control-next span {
  margin-left: 5px;
}
.cid-tw2XjqRClK .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tw2XjqRClK .close::before {
  content: '\e91a';
}
.cid-tw2XjqRClK .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tw2XjqRClK .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tw2XjqRClK .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw2XjqRClK .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tw2XjqRClK .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tw2XjqRClK .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tw2XjqRClK .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tw2XjqRClK .carousel-indicators li.active,
.cid-tw2XjqRClK .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tw2XjqRClK .carousel-indicators li::after,
.cid-tw2XjqRClK .carousel-indicators li::before {
  content: none;
}
.cid-tw2XjqRClK .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tw2XjqRClK .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tw2XjqRClK .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tw2XjqRClK .carousel-indicators {
    display: none;
  }
}
.cid-tw2XjqRClK .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tw2XjqRClK .carousel-inner > .active {
  display: block;
}
.cid-tw2XjqRClK .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tw2XjqRClK .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tw2XjqRClK .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tw2XjqRClK .carousel-control,
  .cid-tw2XjqRClK .carousel-indicators,
  .cid-tw2XjqRClK .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tw2XjqRClK .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tw2XjqRClK .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tw2XjqRClK .carousel-indicators .active,
.cid-tw2XjqRClK .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tw2XjqRClK .carousel-indicators .active {
  background: #fff;
}
.cid-tw2XjqRClK .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tw2XjqRClK .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tw2XjqRClK .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tw2XjqRClK .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tw2XjqRClK .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tw2XjqRClK .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tw2XjqRClK .carousel {
  width: 100%;
}
.cid-tw2XjqRClK .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tw2XjqRClK .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tw2XjqRClK .modal.fade .modal-dialog,
.cid-tw2XjqRClK .modal.in .modal-dialog {
  transform: none;
}
.cid-tw2XjqRClK .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tw2XjqRClK H6 {
  text-align: center;
}
.cid-tw2XjqRClK H3 {
  color: #d81400;
}
.cid-tusvYpeym9 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tusvYpeym9 .card-wrapper {
  background: #6c0a00;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tusvYpeym9 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tusvYpeym9 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tusvYpeym9 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tusvYpeym9 .mbr-text,
.cid-tusvYpeym9 .mbr-section-btn {
  color: #ffffff;
}
.cid-tusvYpeym9 .card-title,
.cid-tusvYpeym9 .card-box {
  text-align: left;
}
.cid-twO4DxXMVT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO4DxXMVT [class^="socicon-"]:before,
.cid-twO4DxXMVT [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO4DxXMVT .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO4DxXMVT .btn-social:hover {
  background: #e6c63b;
}
.cid-twO4DxXMVT .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO4DxXMVT .mbr-section-title,
.cid-twO4DxXMVT .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO4DxXMVT .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO4DxXMVT P {
  text-align: right;
}
.cid-twO4Esgxnn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-twO4Esgxnn .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-tvXffYvazR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tvXffYvazR nav.navbar {
  position: fixed;
}
.cid-tvXffYvazR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvXffYvazR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvXffYvazR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvXffYvazR .dropdown-item:hover,
.cid-tvXffYvazR .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-tvXffYvazR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvXffYvazR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvXffYvazR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-tvXffYvazR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvXffYvazR .nav-link {
  position: relative;
}
.cid-tvXffYvazR .container {
  display: flex;
  margin: auto;
}
.cid-tvXffYvazR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tvXffYvazR .dropdown-menu,
.cid-tvXffYvazR .navbar.opened {
  background: #ee2524 !important;
}
.cid-tvXffYvazR .nav-item:focus,
.cid-tvXffYvazR .nav-link:focus {
  outline: none;
}
.cid-tvXffYvazR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvXffYvazR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvXffYvazR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-tvXffYvazR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvXffYvazR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvXffYvazR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvXffYvazR .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-tvXffYvazR .navbar.opened {
  transition: all .3s;
}
.cid-tvXffYvazR .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-tvXffYvazR .navbar .navbar-logo img {
  width: auto;
}
.cid-tvXffYvazR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvXffYvazR .navbar.collapsed {
  justify-content: center;
}
.cid-tvXffYvazR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvXffYvazR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvXffYvazR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tvXffYvazR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvXffYvazR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvXffYvazR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tvXffYvazR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvXffYvazR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tvXffYvazR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tvXffYvazR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvXffYvazR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvXffYvazR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvXffYvazR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvXffYvazR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tvXffYvazR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvXffYvazR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvXffYvazR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvXffYvazR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvXffYvazR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvXffYvazR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tvXffYvazR .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvXffYvazR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvXffYvazR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvXffYvazR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvXffYvazR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvXffYvazR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvXffYvazR .dropdown-item.active,
.cid-tvXffYvazR .dropdown-item:active {
  background-color: transparent;
}
.cid-tvXffYvazR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvXffYvazR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvXffYvazR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvXffYvazR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-tvXffYvazR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvXffYvazR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvXffYvazR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvXffYvazR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvXffYvazR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tvXffYvazR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-tvXffYvazR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tvXffYvazR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tvXffYvazR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tvXffYvazR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tvXffYvazR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvXffYvazR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tvXffYvazR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tvXffYvazR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvXffYvazR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tvXffYvazR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvXffYvazR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvXffYvazR .navbar {
    height: 70px;
  }
  .cid-tvXffYvazR .navbar.opened {
    height: auto;
  }
  .cid-tvXffYvazR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvXY0DZqlx {
  display: flex;
  background-image: url("../../../assets/images/faa-sua-festa-com-a-marielo-1076x807.jpg");
}
.cid-tvXY0DZqlx .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-tvXY0DZqlx .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tvXY0DZqlx {
    align-items: flex-end;
  }
  .cid-tvXY0DZqlx .row {
    justify-content: flex-start;
  }
  .cid-tvXY0DZqlx .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tvXY0DZqlx .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tvXY0DZqlx {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tvXY0DZqlx .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tvXY0DZqlx .content-wrap {
    width: 100%;
  }
}
.cid-tvXEwEf6bm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvXEwEf6bm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvXEwEf6bm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvXEwEf6bm .text-wrapper {
    padding: 2rem;
  }
}
.cid-tvXEwEf6bm .mbr-section-title {
  color: #b10000;
}
.cid-tvXEwEf6bm .mbr-text {
  color: #6c0a00;
}
.cid-tvXEwEf6bm P {
  color: #6c0a00;
}
.cid-tvXEwEf6bm .btn {
  font-size: 11px;
}
.cid-tvXWFZpaKY {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/coma-a-vontade-buffet-marielo-1600x1200.jpg");
}
.cid-tvXWFZpaKY .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-tvXWFZpaKY .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-tvXWFZpaKY {
    align-items: flex-end;
  }
  .cid-tvXWFZpaKY .row {
    justify-content: flex-start;
  }
  .cid-tvXWFZpaKY .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tvXWFZpaKY .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tvXWFZpaKY {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-tvXWFZpaKY .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tvXWFZpaKY .content-wrap {
    width: 100%;
  }
}
.cid-tvXIwvQNzM {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvXIwvQNzM .item {
  padding-bottom: 2rem;
}
.cid-tvXIwvQNzM .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tvXIwvQNzM .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tvXIwvQNzM .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 40px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tvXIwvQNzM .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tvXIwvQNzM .carousel-control,
.cid-tvXIwvQNzM .close {
  background: #1b1b1b;
}
.cid-tvXIwvQNzM .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tvXIwvQNzM .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tvXIwvQNzM .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tvXIwvQNzM .carousel-control-next span {
  margin-left: 5px;
}
.cid-tvXIwvQNzM .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tvXIwvQNzM .close::before {
  content: '\e91a';
}
.cid-tvXIwvQNzM .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tvXIwvQNzM .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tvXIwvQNzM .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvXIwvQNzM .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tvXIwvQNzM .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tvXIwvQNzM .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tvXIwvQNzM .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tvXIwvQNzM .carousel-indicators li.active,
.cid-tvXIwvQNzM .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tvXIwvQNzM .carousel-indicators li::after,
.cid-tvXIwvQNzM .carousel-indicators li::before {
  content: none;
}
.cid-tvXIwvQNzM .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tvXIwvQNzM .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tvXIwvQNzM .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tvXIwvQNzM .carousel-indicators {
    display: none;
  }
}
.cid-tvXIwvQNzM .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tvXIwvQNzM .carousel-inner > .active {
  display: block;
}
.cid-tvXIwvQNzM .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tvXIwvQNzM .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tvXIwvQNzM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tvXIwvQNzM .carousel-control,
  .cid-tvXIwvQNzM .carousel-indicators,
  .cid-tvXIwvQNzM .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tvXIwvQNzM .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tvXIwvQNzM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tvXIwvQNzM .carousel-indicators .active,
.cid-tvXIwvQNzM .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tvXIwvQNzM .carousel-indicators .active {
  background: #fff;
}
.cid-tvXIwvQNzM .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tvXIwvQNzM .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tvXIwvQNzM .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvXIwvQNzM .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tvXIwvQNzM .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tvXIwvQNzM .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tvXIwvQNzM .carousel {
  width: 100%;
}
.cid-tvXIwvQNzM .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tvXIwvQNzM .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tvXIwvQNzM .modal.fade .modal-dialog,
.cid-tvXIwvQNzM .modal.in .modal-dialog {
  transform: none;
}
.cid-tvXIwvQNzM .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tvXIwvQNzM H6 {
  text-align: center;
}
.cid-tvXIwvQNzM H3 {
  color: #d81400;
  text-align: left;
}
.cid-tvXIwvQNzM H4 {
  color: #6c0a00;
  text-align: left;
}
.cid-tvXfg3VDCr {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tvXfg3VDCr .card-wrapper {
  background: #6c0a00;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvXfg3VDCr .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvXfg3VDCr .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvXfg3VDCr .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvXfg3VDCr .mbr-text,
.cid-tvXfg3VDCr .mbr-section-btn {
  color: #ffffff;
}
.cid-tvXfg3VDCr .card-title,
.cid-tvXfg3VDCr .card-box {
  text-align: left;
}
.cid-twO4HQHYPZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-twO4HQHYPZ [class^="socicon-"]:before,
.cid-twO4HQHYPZ [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-twO4HQHYPZ .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-twO4HQHYPZ .btn-social:hover {
  background: #e6c63b;
}
.cid-twO4HQHYPZ .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-twO4HQHYPZ .mbr-section-title,
.cid-twO4HQHYPZ .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-twO4HQHYPZ .media-container-row .mbr-text {
  text-align: center;
}
.cid-twO4HQHYPZ P {
  text-align: right;
}
.cid-twO4I7nqHC {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-twO4I7nqHC .mbr-text {
  text-align: right;
  color: #ffffff;
}
.cid-uygr5O1bbR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uygr5O1bbR nav.navbar {
  position: fixed;
}
.cid-uygr5O1bbR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uygr5O1bbR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uygr5O1bbR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uygr5O1bbR .dropdown-item:hover,
.cid-uygr5O1bbR .dropdown-item:focus {
  background: #ee3738 !important;
  color: white !important;
}
.cid-uygr5O1bbR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uygr5O1bbR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uygr5O1bbR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: .667em 1em !important;
}
.cid-uygr5O1bbR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uygr5O1bbR .nav-link {
  position: relative;
}
.cid-uygr5O1bbR .container {
  display: flex;
  margin: auto;
}
.cid-uygr5O1bbR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uygr5O1bbR .dropdown-menu,
.cid-uygr5O1bbR .navbar.opened {
  background: #ee2524 !important;
}
.cid-uygr5O1bbR .nav-item:focus,
.cid-uygr5O1bbR .nav-link:focus {
  outline: none;
}
.cid-uygr5O1bbR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uygr5O1bbR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uygr5O1bbR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: .5rem;
  vertical-align: sub;
}
.cid-uygr5O1bbR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uygr5O1bbR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uygr5O1bbR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uygr5O1bbR .navbar {
  min-height: 70px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ee2524;
}
.cid-uygr5O1bbR .navbar.opened {
  transition: all .3s;
}
.cid-uygr5O1bbR .navbar .dropdown-item {
  padding: .5rem 1.8rem;
}
.cid-uygr5O1bbR .navbar .navbar-logo img {
  width: auto;
}
.cid-uygr5O1bbR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uygr5O1bbR .navbar.collapsed {
  justify-content: center;
}
.cid-uygr5O1bbR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uygr5O1bbR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uygr5O1bbR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uygr5O1bbR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uygr5O1bbR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uygr5O1bbR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uygr5O1bbR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uygr5O1bbR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uygr5O1bbR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uygr5O1bbR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uygr5O1bbR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uygr5O1bbR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uygr5O1bbR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uygr5O1bbR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uygr5O1bbR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uygr5O1bbR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uygr5O1bbR .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uygr5O1bbR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uygr5O1bbR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uygr5O1bbR .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uygr5O1bbR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uygr5O1bbR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uygr5O1bbR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uygr5O1bbR .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uygr5O1bbR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uygr5O1bbR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uygr5O1bbR .dropdown-item.active,
.cid-uygr5O1bbR .dropdown-item:active {
  background-color: transparent;
}
.cid-uygr5O1bbR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uygr5O1bbR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uygr5O1bbR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uygr5O1bbR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ee2524;
}
.cid-uygr5O1bbR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uygr5O1bbR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uygr5O1bbR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uygr5O1bbR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uygr5O1bbR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uygr5O1bbR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #fea52c;
}
.cid-uygr5O1bbR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uygr5O1bbR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uygr5O1bbR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uygr5O1bbR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uygr5O1bbR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uygr5O1bbR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uygr5O1bbR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uygr5O1bbR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uygr5O1bbR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uygr5O1bbR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uygr5O1bbR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uygr5O1bbR .navbar {
    height: 70px;
  }
  .cid-uygr5O1bbR .navbar.opened {
    height: auto;
  }
  .cid-uygr5O1bbR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uygr5POeFz {
  display: flex;
  background-image: url("../../../assets/images/faa-sua-festa-com-a-marielo-1076x807.jpg");
}
.cid-uygr5POeFz .mbr-overlay {
  background-color: #000000;
  opacity: 0.5;
}
.cid-uygr5POeFz .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uygr5POeFz {
    align-items: flex-end;
  }
  .cid-uygr5POeFz .row {
    justify-content: flex-start;
  }
  .cid-uygr5POeFz .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uygr5POeFz .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uygr5POeFz {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uygr5POeFz .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uygr5POeFz .content-wrap {
    width: 100%;
  }
}
.cid-uygr5Qs24d {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uygr5Qs24d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uygr5Qs24d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uygr5Qs24d .text-wrapper {
    padding: 2rem;
  }
}
.cid-uygr5Qs24d .mbr-section-title {
  color: #b10000;
}
.cid-uygr5Qs24d .mbr-text {
  color: #6c0a00;
}
.cid-uygr5Qs24d P {
  color: #6c0a00;
}
.cid-uygr5Qs24d .btn {
  font-size: 11px;
}
.cid-uygr5R91q0 {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/coma-a-vontade-buffet-marielo-1600x1200.jpg");
}
.cid-uygr5R91q0 .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uygr5R91q0 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-uygr5R91q0 {
    align-items: flex-end;
  }
  .cid-uygr5R91q0 .row {
    justify-content: flex-start;
  }
  .cid-uygr5R91q0 .content-wrap {
    width: 40%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uygr5R91q0 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uygr5R91q0 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uygr5R91q0 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uygr5R91q0 .content-wrap {
    width: 100%;
  }
}
.cid-uygr5RDw69 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uygr5RDw69 .item {
  padding-bottom: 2rem;
}
.cid-uygr5RDw69 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uygr5RDw69 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uygr5RDw69 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 80px;
  height: 80px;
  font-size: 40px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uygr5RDw69 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uygr5RDw69 .carousel-control,
.cid-uygr5RDw69 .close {
  background: #1b1b1b;
}
.cid-uygr5RDw69 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uygr5RDw69 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uygr5RDw69 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uygr5RDw69 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uygr5RDw69 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uygr5RDw69 .close::before {
  content: '\e91a';
}
.cid-uygr5RDw69 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uygr5RDw69 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uygr5RDw69 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uygr5RDw69 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uygr5RDw69 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uygr5RDw69 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uygr5RDw69 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uygr5RDw69 .carousel-indicators li.active,
.cid-uygr5RDw69 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uygr5RDw69 .carousel-indicators li::after,
.cid-uygr5RDw69 .carousel-indicators li::before {
  content: none;
}
.cid-uygr5RDw69 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uygr5RDw69 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uygr5RDw69 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uygr5RDw69 .carousel-indicators {
    display: none;
  }
}
.cid-uygr5RDw69 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uygr5RDw69 .carousel-inner > .active {
  display: block;
}
.cid-uygr5RDw69 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uygr5RDw69 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uygr5RDw69 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uygr5RDw69 .carousel-control,
  .cid-uygr5RDw69 .carousel-indicators,
  .cid-uygr5RDw69 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uygr5RDw69 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uygr5RDw69 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uygr5RDw69 .carousel-indicators .active,
.cid-uygr5RDw69 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uygr5RDw69 .carousel-indicators .active {
  background: #fff;
}
.cid-uygr5RDw69 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uygr5RDw69 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uygr5RDw69 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uygr5RDw69 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uygr5RDw69 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uygr5RDw69 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uygr5RDw69 .carousel {
  width: 100%;
}
.cid-uygr5RDw69 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uygr5RDw69 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uygr5RDw69 .modal.fade .modal-dialog,
.cid-uygr5RDw69 .modal.in .modal-dialog {
  transform: none;
}
.cid-uygr5RDw69 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uygr5RDw69 H6 {
  text-align: center;
}
.cid-uygr5RDw69 H3 {
  color: #2f0400;
}
.cid-uygr5RDw69 H4 {
  color: #000000;
}
.cid-uygr5SMTCm {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uygr5SMTCm .card-wrapper {
  background: #6c0a00;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uygr5SMTCm .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uygr5SMTCm .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uygr5SMTCm .card-wrapper {
    padding: 4rem;
  }
}
.cid-uygr5SMTCm .mbr-text,
.cid-uygr5SMTCm .mbr-section-btn {
  color: #ffffff;
}
.cid-uygr5SMTCm .card-title,
.cid-uygr5SMTCm .card-box {
  text-align: left;
}
.cid-uygr5Te1FC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uygr5Te1FC [class^="socicon-"]:before,
.cid-uygr5Te1FC [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-uygr5Te1FC .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #e6c63b;
  border-width: 2px;
  transition: all .3s;
  border-color: #e6c63b;
}
.cid-uygr5Te1FC .btn-social:hover {
  background: #e6c63b;
}
.cid-uygr5Te1FC .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-uygr5Te1FC .mbr-section-title,
.cid-uygr5Te1FC .mbr-social-likes {
  color: #ffef00;
  text-align: center;
}
.cid-uygr5Te1FC .media-container-row .mbr-text {
  text-align: center;
}
.cid-uygr5Te1FC P {
  text-align: right;
}
.cid-uygr5TFlAs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uygr5TFlAs .mbr-text {
  text-align: right;
  color: #ffffff;
}
