body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffcc00 !important;
}
.bg-success {
  background-color: #63ff01 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffcc00 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #000000 !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: #a88700 !important;
  border-color: #a88700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #a88700 !important;
  border-color: #a88700 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #63ff01 !important;
  border-color: #63ff01 !important;
  color: #000100 !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: #41a900 !important;
  border-color: #41a900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000100 !important;
  background-color: #41a900 !important;
  border-color: #41a900 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
  color: #000000 !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: #a88700 !important;
  border-color: #a88700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #a88700 !important;
  border-color: #a88700 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcc00;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a88700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #63ff01;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #41a900 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000100 !important;
  background-color: #63ff01 !important;
  border-color: #63ff01 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcc00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a88700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  border-color: #ffcc00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: 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: #ffcc00 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #63ff01 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffcc00 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #997a00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3b9a00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #997a00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #ffcc00;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffcc00;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffcc00;
  border-color: #ffcc00;
  color: #191400;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffcc00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e0ffcd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff5cc;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffcc00 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffcc00;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffcc00;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffcc00;
}
.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: #ffcc00;
  border-bottom-color: #ffcc00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffcc00 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23ffcc00' %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-uSFzXULZci {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSFzXULZci nav.navbar {
  position: fixed;
}
.cid-uSFzXULZci .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-uSFzXULZci .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSFzXULZci .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSFzXULZci .dropdown-item:hover,
.cid-uSFzXULZci .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSFzXULZci .dropdown-item:hover span {
  color: white;
}
.cid-uSFzXULZci .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSFzXULZci .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSFzXULZci .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSFzXULZci .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSFzXULZci .nav-link {
  position: relative;
}
.cid-uSFzXULZci .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSFzXULZci .container {
    flex-wrap: nowrap;
  }
}
.cid-uSFzXULZci .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSFzXULZci .dropdown-menu,
.cid-uSFzXULZci .navbar.opened {
  background: #000000 !important;
}
.cid-uSFzXULZci .nav-item:focus,
.cid-uSFzXULZci .nav-link:focus {
  outline: none;
}
.cid-uSFzXULZci .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSFzXULZci .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSFzXULZci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSFzXULZci .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSFzXULZci .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSFzXULZci .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSFzXULZci .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSFzXULZci .navbar.opened {
  transition: all 0.3s;
}
.cid-uSFzXULZci .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSFzXULZci .navbar .navbar-logo img {
  width: auto;
}
.cid-uSFzXULZci .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSFzXULZci .navbar.collapsed {
  justify-content: center;
}
.cid-uSFzXULZci .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSFzXULZci .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSFzXULZci .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSFzXULZci .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSFzXULZci .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSFzXULZci .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-uSFzXULZci .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSFzXULZci .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSFzXULZci .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSFzXULZci .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSFzXULZci .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSFzXULZci .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSFzXULZci .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSFzXULZci .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-uSFzXULZci .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSFzXULZci .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSFzXULZci .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSFzXULZci .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSFzXULZci .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSFzXULZci .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSFzXULZci .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSFzXULZci .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSFzXULZci .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSFzXULZci .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSFzXULZci .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSFzXULZci .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSFzXULZci .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSFzXULZci .dropdown-item.active,
.cid-uSFzXULZci .dropdown-item:active {
  background-color: transparent;
}
.cid-uSFzXULZci .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSFzXULZci .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSFzXULZci .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSFzXULZci .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSFzXULZci .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSFzXULZci .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSFzXULZci ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSFzXULZci .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSFzXULZci button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSFzXULZci button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSFzXULZci button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSFzXULZci button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSFzXULZci button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSFzXULZci button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSFzXULZci nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSFzXULZci nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSFzXULZci nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSFzXULZci nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSFzXULZci .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSFzXULZci a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSFzXULZci .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-uSFzXULZci .navbar {
    height: 70px;
  }
  .cid-uSFzXULZci .navbar.opened {
    height: auto;
  }
  .cid-uSFzXULZci .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSFJjxgvIy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-base-1.jpg");
}
.cid-uSFJjxgvIy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFJjxgvIy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFJjxgvIy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSFFrvdhkU {
  background-image: url("../../../assets/images/fundo-box-caf-1.jpg");
}
.cid-uSFFrvdhkU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFFrvdhkU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFFrvdhkU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFFrvdhkU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFFrvdhkU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFFrvdhkU .mbr-text,
.cid-uSFFrvdhkU .mbr-section-btn {
  color: #ffffff;
}
.cid-uSFHj40Zbc {
  background-image: url("../../../assets/images/fundo-box-cerveja-premium-1.jpg");
}
.cid-uSFHj40Zbc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFHj40Zbc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFHj40Zbc .row {
  flex-direction: row-reverse;
}
.cid-uSFHj40Zbc .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFHj40Zbc .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFHj40Zbc .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFHj40Zbc .mbr-text,
.cid-uSFHj40Zbc .mbr-section-btn {
  color: #ffffff;
}
.cid-uSFI6AbzBe {
  background-image: url("../../../assets/images/fundo-box-whisky-1.jpg");
}
.cid-uSFI6AbzBe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFI6AbzBe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFI6AbzBe .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFI6AbzBe .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFI6AbzBe .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFI6AbzBe .mbr-text,
.cid-uSFI6AbzBe .mbr-section-btn {
  color: #ffffff;
}
.cid-uSFI7sm6ac {
  background-image: url("../../../assets/images/fundo-box-gin-1.jpg");
}
.cid-uSFI7sm6ac .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFI7sm6ac .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFI7sm6ac .row {
  flex-direction: row-reverse;
}
.cid-uSFI7sm6ac .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFI7sm6ac .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFI7sm6ac .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFI7sm6ac .mbr-text,
.cid-uSFI7sm6ac .mbr-section-btn {
  color: #ffffff;
}
.cid-uSFLOWoPT3 {
  background-image: url("../../../assets/images/fundo-box-vinho-1.jpg");
}
.cid-uSFLOWoPT3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFLOWoPT3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFLOWoPT3 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFLOWoPT3 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFLOWoPT3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFJ0b2URu {
  background-image: url("../../../assets/images/fundo-balde-cerveja-1.jpg");
}
.cid-uSFJ0b2URu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFJ0b2URu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFJ0b2URu .row {
  flex-direction: row-reverse;
}
.cid-uSFJ0b2URu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uSFJ0b2URu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFJ0b2URu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSFJ0b2URu .mbr-text,
.cid-uSFJ0b2URu .mbr-section-btn {
  color: #ffffff;
}
.cid-uSFNbL6oDm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSFNbL6oDm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFNbL6oDm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFNbL6oDm .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSFNbL6oDm .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSFNbL6oDm .row {
    text-align: center;
  }
  .cid-uSFNbL6oDm .row > div {
    margin: auto;
  }
  .cid-uSFNbL6oDm .social-row {
    justify-content: center;
  }
}
.cid-uSFNbL6oDm .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSFNbL6oDm .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSFNbL6oDm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFNbL6oDm .list {
    margin-bottom: 0rem;
  }
}
.cid-uSFNbL6oDm .mbr-text {
  color: #bbbbbb;
}
.cid-uSFNbL6oDm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSFNbL6oDm .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSFNbL6oDm div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSFNbL6oDm .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSFPURC3ij {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSFPURC3ij nav.navbar {
  position: fixed;
}
.cid-uSFPURC3ij .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-uSFPURC3ij .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSFPURC3ij .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSFPURC3ij .dropdown-item:hover,
.cid-uSFPURC3ij .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSFPURC3ij .dropdown-item:hover span {
  color: white;
}
.cid-uSFPURC3ij .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSFPURC3ij .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSFPURC3ij .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSFPURC3ij .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSFPURC3ij .nav-link {
  position: relative;
}
.cid-uSFPURC3ij .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSFPURC3ij .container {
    flex-wrap: nowrap;
  }
}
.cid-uSFPURC3ij .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSFPURC3ij .dropdown-menu,
.cid-uSFPURC3ij .navbar.opened {
  background: #000000 !important;
}
.cid-uSFPURC3ij .nav-item:focus,
.cid-uSFPURC3ij .nav-link:focus {
  outline: none;
}
.cid-uSFPURC3ij .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSFPURC3ij .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSFPURC3ij .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSFPURC3ij .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSFPURC3ij .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSFPURC3ij .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSFPURC3ij .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSFPURC3ij .navbar.opened {
  transition: all 0.3s;
}
.cid-uSFPURC3ij .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSFPURC3ij .navbar .navbar-logo img {
  width: auto;
}
.cid-uSFPURC3ij .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSFPURC3ij .navbar.collapsed {
  justify-content: center;
}
.cid-uSFPURC3ij .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSFPURC3ij .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSFPURC3ij .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSFPURC3ij .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSFPURC3ij .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSFPURC3ij .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-uSFPURC3ij .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSFPURC3ij .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSFPURC3ij .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSFPURC3ij .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSFPURC3ij .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSFPURC3ij .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSFPURC3ij .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSFPURC3ij .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-uSFPURC3ij .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSFPURC3ij .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSFPURC3ij .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSFPURC3ij .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSFPURC3ij .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSFPURC3ij .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSFPURC3ij .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSFPURC3ij .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSFPURC3ij .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSFPURC3ij .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSFPURC3ij .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSFPURC3ij .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSFPURC3ij .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSFPURC3ij .dropdown-item.active,
.cid-uSFPURC3ij .dropdown-item:active {
  background-color: transparent;
}
.cid-uSFPURC3ij .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSFPURC3ij .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSFPURC3ij .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSFPURC3ij .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSFPURC3ij .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSFPURC3ij .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSFPURC3ij ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSFPURC3ij .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSFPURC3ij button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSFPURC3ij button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSFPURC3ij button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSFPURC3ij button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSFPURC3ij button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSFPURC3ij button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSFPURC3ij nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSFPURC3ij nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSFPURC3ij nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSFPURC3ij nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSFPURC3ij .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSFPURC3ij a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSFPURC3ij .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-uSFPURC3ij .navbar {
    height: 70px;
  }
  .cid-uSFPURC3ij .navbar.opened {
    height: auto;
  }
  .cid-uSFPURC3ij .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSFRHJby3N {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-caf-1.jpg");
}
.cid-uSFRHJby3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFRHJby3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFRHJby3N .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSFRHJby3N .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIf4RX2OZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #1b0c05;
}
.cid-uSIf4RX2OZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIf4RX2OZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIf4RX2OZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIf4RX2OZ .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSFSjuNJey {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSFSjuNJey img,
.cid-uSFSjuNJey .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSFSjuNJey .item:focus,
.cid-uSFSjuNJey span:focus {
  outline: none;
}
.cid-uSFSjuNJey .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSFSjuNJey .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSFSjuNJey .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSFSjuNJey .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSFSjuNJey .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSFSjuNJey .mbr-section-title {
  color: #232323;
}
.cid-uSFVsTlMsH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-box-caf-1.jpg");
}
.cid-uSFVsTlMsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFVsTlMsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFVsTlMsH ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSFVsTlMsH li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSFVsTlMsH ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSFVsTlMsH H3 {
  color: #ffffff;
}
.cid-uSFVsTlMsH .list {
  color: #ffffff;
}
.cid-uSFYO7Cpr8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #1b0c05;
}
.cid-uSFYO7Cpr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFYO7Cpr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFYO7Cpr8 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSFYO7Cpr8 .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSFXdXp5al {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #1b0c05;
}
.cid-uSIilPiMB1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIilPiMB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIilPiMB1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIilPiMB1 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIilPiMB1 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIilPiMB1 .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIilPiMB1 .mbr-text,
.cid-uSIilPiMB1 .mbr-section-btn {
  text-align: left;
}
.cid-uSIrSrljTN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1b0c05;
}
.cid-uSIrSrljTN .line {
  background-color: #1b0c05;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIrSrljTN .mbr-text {
  color: #ffffff;
}
.cid-uSFPUXE1P4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSFPUXE1P4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSFPUXE1P4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSFPUXE1P4 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSFPUXE1P4 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSFPUXE1P4 .row {
    text-align: center;
  }
  .cid-uSFPUXE1P4 .row > div {
    margin: auto;
  }
  .cid-uSFPUXE1P4 .social-row {
    justify-content: center;
  }
}
.cid-uSFPUXE1P4 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSFPUXE1P4 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSFPUXE1P4 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSFPUXE1P4 .list {
    margin-bottom: 0rem;
  }
}
.cid-uSFPUXE1P4 .mbr-text {
  color: #bbbbbb;
}
.cid-uSFPUXE1P4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSFPUXE1P4 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSFPUXE1P4 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSFPUXE1P4 .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSIu8oB0uw {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIu8oB0uw nav.navbar {
  position: fixed;
}
.cid-uSIu8oB0uw .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-uSIu8oB0uw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIu8oB0uw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIu8oB0uw .dropdown-item:hover,
.cid-uSIu8oB0uw .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSIu8oB0uw .dropdown-item:hover span {
  color: white;
}
.cid-uSIu8oB0uw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIu8oB0uw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIu8oB0uw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIu8oB0uw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIu8oB0uw .nav-link {
  position: relative;
}
.cid-uSIu8oB0uw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIu8oB0uw .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIu8oB0uw .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIu8oB0uw .dropdown-menu,
.cid-uSIu8oB0uw .navbar.opened {
  background: #000000 !important;
}
.cid-uSIu8oB0uw .nav-item:focus,
.cid-uSIu8oB0uw .nav-link:focus {
  outline: none;
}
.cid-uSIu8oB0uw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIu8oB0uw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIu8oB0uw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIu8oB0uw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIu8oB0uw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIu8oB0uw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIu8oB0uw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSIu8oB0uw .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIu8oB0uw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIu8oB0uw .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIu8oB0uw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIu8oB0uw .navbar.collapsed {
  justify-content: center;
}
.cid-uSIu8oB0uw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIu8oB0uw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIu8oB0uw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSIu8oB0uw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIu8oB0uw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIu8oB0uw .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-uSIu8oB0uw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIu8oB0uw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIu8oB0uw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIu8oB0uw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIu8oB0uw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIu8oB0uw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIu8oB0uw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIu8oB0uw .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-uSIu8oB0uw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIu8oB0uw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIu8oB0uw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIu8oB0uw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIu8oB0uw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIu8oB0uw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSIu8oB0uw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSIu8oB0uw .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIu8oB0uw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIu8oB0uw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIu8oB0uw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIu8oB0uw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIu8oB0uw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIu8oB0uw .dropdown-item.active,
.cid-uSIu8oB0uw .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIu8oB0uw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIu8oB0uw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIu8oB0uw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIu8oB0uw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSIu8oB0uw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIu8oB0uw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIu8oB0uw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIu8oB0uw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIu8oB0uw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIu8oB0uw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSIu8oB0uw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIu8oB0uw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIu8oB0uw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIu8oB0uw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIu8oB0uw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIu8oB0uw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIu8oB0uw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIu8oB0uw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIu8oB0uw .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIu8oB0uw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIu8oB0uw .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-uSIu8oB0uw .navbar {
    height: 70px;
  }
  .cid-uSIu8oB0uw .navbar.opened {
    height: auto;
  }
  .cid-uSIu8oB0uw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIu8pDP6v {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-cerveja-premium-1.jpg");
}
.cid-uSIu8pDP6v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8pDP6v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8pDP6v .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIu8pDP6v .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIu8qmE4i {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #270e03;
}
.cid-uSIu8qmE4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8qmE4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8qmE4i .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIu8qmE4i .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIu8qZu4I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSIu8qZu4I img,
.cid-uSIu8qZu4I .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSIu8qZu4I .item:focus,
.cid-uSIu8qZu4I span:focus {
  outline: none;
}
.cid-uSIu8qZu4I .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSIu8qZu4I .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSIu8qZu4I .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIu8qZu4I .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSIu8qZu4I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSIu8qZu4I .mbr-section-title {
  color: #232323;
}
.cid-uSIu8sFzFM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-box-cerveja-premium-1.jpg");
}
.cid-uSIu8sFzFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8sFzFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8sFzFM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSIu8sFzFM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSIu8sFzFM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSIu8sFzFM H3 {
  color: #ffffff;
}
.cid-uSIu8sFzFM .list {
  color: #ffffff;
}
.cid-uSIu8tcwMu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #270e03;
}
.cid-uSIu8tcwMu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8tcwMu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8tcwMu .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIu8tcwMu .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIu8usVTO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #270e03;
}
.cid-uSIu8uVbuF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIu8uVbuF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8uVbuF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8uVbuF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIu8uVbuF .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIu8uVbuF .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIu8uVbuF .mbr-text,
.cid-uSIu8uVbuF .mbr-section-btn {
  text-align: left;
}
.cid-uSIu8vRuIq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #270e03;
}
.cid-uSIu8vRuIq .line {
  background-color: #270e03;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIu8vRuIq .mbr-text {
  color: #ffffff;
}
.cid-uSIu8wHW4a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSIu8wHW4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIu8wHW4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIu8wHW4a .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSIu8wHW4a .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIu8wHW4a .row {
    text-align: center;
  }
  .cid-uSIu8wHW4a .row > div {
    margin: auto;
  }
  .cid-uSIu8wHW4a .social-row {
    justify-content: center;
  }
}
.cid-uSIu8wHW4a .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSIu8wHW4a .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSIu8wHW4a .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSIu8wHW4a .list {
    margin-bottom: 0rem;
  }
}
.cid-uSIu8wHW4a .mbr-text {
  color: #bbbbbb;
}
.cid-uSIu8wHW4a .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSIu8wHW4a .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSIu8wHW4a div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSIu8wHW4a .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSIugsuZiI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIugsuZiI nav.navbar {
  position: fixed;
}
.cid-uSIugsuZiI .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-uSIugsuZiI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIugsuZiI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIugsuZiI .dropdown-item:hover,
.cid-uSIugsuZiI .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSIugsuZiI .dropdown-item:hover span {
  color: white;
}
.cid-uSIugsuZiI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIugsuZiI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIugsuZiI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIugsuZiI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIugsuZiI .nav-link {
  position: relative;
}
.cid-uSIugsuZiI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIugsuZiI .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIugsuZiI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIugsuZiI .dropdown-menu,
.cid-uSIugsuZiI .navbar.opened {
  background: #000000 !important;
}
.cid-uSIugsuZiI .nav-item:focus,
.cid-uSIugsuZiI .nav-link:focus {
  outline: none;
}
.cid-uSIugsuZiI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIugsuZiI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIugsuZiI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIugsuZiI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIugsuZiI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIugsuZiI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIugsuZiI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSIugsuZiI .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIugsuZiI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIugsuZiI .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIugsuZiI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIugsuZiI .navbar.collapsed {
  justify-content: center;
}
.cid-uSIugsuZiI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIugsuZiI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIugsuZiI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSIugsuZiI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIugsuZiI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIugsuZiI .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-uSIugsuZiI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIugsuZiI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIugsuZiI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIugsuZiI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIugsuZiI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIugsuZiI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIugsuZiI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIugsuZiI .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-uSIugsuZiI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIugsuZiI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIugsuZiI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIugsuZiI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIugsuZiI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIugsuZiI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSIugsuZiI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSIugsuZiI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIugsuZiI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIugsuZiI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIugsuZiI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIugsuZiI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIugsuZiI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIugsuZiI .dropdown-item.active,
.cid-uSIugsuZiI .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIugsuZiI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIugsuZiI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIugsuZiI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIugsuZiI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSIugsuZiI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIugsuZiI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIugsuZiI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIugsuZiI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIugsuZiI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIugsuZiI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSIugsuZiI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIugsuZiI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIugsuZiI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIugsuZiI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIugsuZiI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIugsuZiI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIugsuZiI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIugsuZiI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIugsuZiI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIugsuZiI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIugsuZiI .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-uSIugsuZiI .navbar {
    height: 70px;
  }
  .cid-uSIugsuZiI .navbar.opened {
    height: auto;
  }
  .cid-uSIugsuZiI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIugtmijM {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-whisky-1.jpg");
}
.cid-uSIugtmijM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugtmijM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugtmijM .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIugtmijM .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIugtVREk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uSIugtVREk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugtVREk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugtVREk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIugtVREk .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIugustrX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSIugustrX img,
.cid-uSIugustrX .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSIugustrX .item:focus,
.cid-uSIugustrX span:focus {
  outline: none;
}
.cid-uSIugustrX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSIugustrX .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSIugustrX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIugustrX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSIugustrX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSIugustrX .mbr-section-title {
  color: #232323;
}
.cid-uSIugvYjyq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-box-whisky-1.jpg");
}
.cid-uSIugvYjyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugvYjyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugvYjyq ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSIugvYjyq li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSIugvYjyq ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSIugvYjyq H3 {
  color: #ffffff;
}
.cid-uSIugvYjyq .list {
  color: #ffffff;
}
.cid-uSIugwt0WK {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uSIugwt0WK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugwt0WK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugwt0WK .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIugwt0WK .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIugxeFA3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uSIugxPFoE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIugxPFoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugxPFoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugxPFoE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIugxPFoE .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIugxPFoE .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIugxPFoE .mbr-text,
.cid-uSIugxPFoE .mbr-section-btn {
  text-align: left;
}
.cid-uSIugyPsn8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uSIugyPsn8 .line {
  background-color: #000000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIugyPsn8 .mbr-text {
  color: #ffffff;
}
.cid-uSIugzAvXI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSIugzAvXI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIugzAvXI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIugzAvXI .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSIugzAvXI .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIugzAvXI .row {
    text-align: center;
  }
  .cid-uSIugzAvXI .row > div {
    margin: auto;
  }
  .cid-uSIugzAvXI .social-row {
    justify-content: center;
  }
}
.cid-uSIugzAvXI .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSIugzAvXI .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSIugzAvXI .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSIugzAvXI .list {
    margin-bottom: 0rem;
  }
}
.cid-uSIugzAvXI .mbr-text {
  color: #bbbbbb;
}
.cid-uSIugzAvXI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSIugzAvXI .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSIugzAvXI div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSIugzAvXI .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSIungFhfN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIungFhfN nav.navbar {
  position: fixed;
}
.cid-uSIungFhfN .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-uSIungFhfN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIungFhfN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIungFhfN .dropdown-item:hover,
.cid-uSIungFhfN .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSIungFhfN .dropdown-item:hover span {
  color: white;
}
.cid-uSIungFhfN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIungFhfN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIungFhfN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIungFhfN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIungFhfN .nav-link {
  position: relative;
}
.cid-uSIungFhfN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIungFhfN .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIungFhfN .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIungFhfN .dropdown-menu,
.cid-uSIungFhfN .navbar.opened {
  background: #000000 !important;
}
.cid-uSIungFhfN .nav-item:focus,
.cid-uSIungFhfN .nav-link:focus {
  outline: none;
}
.cid-uSIungFhfN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIungFhfN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIungFhfN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIungFhfN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIungFhfN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIungFhfN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIungFhfN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSIungFhfN .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIungFhfN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIungFhfN .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIungFhfN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIungFhfN .navbar.collapsed {
  justify-content: center;
}
.cid-uSIungFhfN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIungFhfN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIungFhfN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSIungFhfN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIungFhfN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIungFhfN .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-uSIungFhfN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIungFhfN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIungFhfN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIungFhfN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIungFhfN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIungFhfN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIungFhfN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIungFhfN .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-uSIungFhfN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIungFhfN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIungFhfN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIungFhfN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIungFhfN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIungFhfN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSIungFhfN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSIungFhfN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIungFhfN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIungFhfN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIungFhfN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIungFhfN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIungFhfN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIungFhfN .dropdown-item.active,
.cid-uSIungFhfN .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIungFhfN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIungFhfN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIungFhfN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIungFhfN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSIungFhfN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIungFhfN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIungFhfN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIungFhfN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIungFhfN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIungFhfN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSIungFhfN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIungFhfN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIungFhfN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIungFhfN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIungFhfN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIungFhfN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIungFhfN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIungFhfN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIungFhfN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIungFhfN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIungFhfN .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-uSIungFhfN .navbar {
    height: 70px;
  }
  .cid-uSIungFhfN .navbar.opened {
    height: auto;
  }
  .cid-uSIungFhfN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIunhOomQ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-gin-1.jpg");
}
.cid-uSIunhOomQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIunhOomQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIunhOomQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIunhOomQ .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIuniAjaE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #001a27;
}
.cid-uSIuniAjaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuniAjaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuniAjaE .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuniAjaE .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIunj9JyM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSIunj9JyM img,
.cid-uSIunj9JyM .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSIunj9JyM .item:focus,
.cid-uSIunj9JyM span:focus {
  outline: none;
}
.cid-uSIunj9JyM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSIunj9JyM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSIunj9JyM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIunj9JyM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSIunj9JyM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSIunj9JyM .mbr-section-title {
  color: #232323;
}
.cid-uSIunku27C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-box-gin-1.jpg");
}
.cid-uSIunku27C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIunku27C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIunku27C ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSIunku27C li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSIunku27C ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSIunku27C H3 {
  color: #ffffff;
}
.cid-uSIunku27C .list {
  color: #ffffff;
}
.cid-uSIunl75Wv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #001a27;
}
.cid-uSIunl75Wv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIunl75Wv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIunl75Wv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIunl75Wv .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIunlYfi4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSIunmu0qn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIunmu0qn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIunmu0qn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIunmu0qn .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIunmu0qn .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIunmu0qn .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIunmu0qn .mbr-text,
.cid-uSIunmu0qn .mbr-section-btn {
  text-align: left;
}
.cid-uSIunnq2Kn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #001a27;
}
.cid-uSIunnq2Kn .line {
  background-color: #001a27;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIunnq2Kn .mbr-text {
  color: #ffffff;
}
.cid-uSIunnSZRt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSIunnSZRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIunnSZRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIunnSZRt .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSIunnSZRt .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIunnSZRt .row {
    text-align: center;
  }
  .cid-uSIunnSZRt .row > div {
    margin: auto;
  }
  .cid-uSIunnSZRt .social-row {
    justify-content: center;
  }
}
.cid-uSIunnSZRt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSIunnSZRt .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSIunnSZRt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSIunnSZRt .list {
    margin-bottom: 0rem;
  }
}
.cid-uSIunnSZRt .mbr-text {
  color: #bbbbbb;
}
.cid-uSIunnSZRt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSIunnSZRt .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSIunnSZRt div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSIunnSZRt .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSIuu3Une6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIuu3Une6 nav.navbar {
  position: fixed;
}
.cid-uSIuu3Une6 .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-uSIuu3Une6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIuu3Une6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIuu3Une6 .dropdown-item:hover,
.cid-uSIuu3Une6 .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSIuu3Une6 .dropdown-item:hover span {
  color: white;
}
.cid-uSIuu3Une6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIuu3Une6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIuu3Une6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIuu3Une6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIuu3Une6 .nav-link {
  position: relative;
}
.cid-uSIuu3Une6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIuu3Une6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIuu3Une6 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIuu3Une6 .dropdown-menu,
.cid-uSIuu3Une6 .navbar.opened {
  background: #000000 !important;
}
.cid-uSIuu3Une6 .nav-item:focus,
.cid-uSIuu3Une6 .nav-link:focus {
  outline: none;
}
.cid-uSIuu3Une6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIuu3Une6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIuu3Une6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIuu3Une6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIuu3Une6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIuu3Une6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIuu3Une6 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSIuu3Une6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIuu3Une6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIuu3Une6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIuu3Une6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIuu3Une6 .navbar.collapsed {
  justify-content: center;
}
.cid-uSIuu3Une6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIuu3Une6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIuu3Une6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSIuu3Une6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIuu3Une6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIuu3Une6 .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-uSIuu3Une6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIuu3Une6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIuu3Une6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIuu3Une6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIuu3Une6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIuu3Une6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIuu3Une6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIuu3Une6 .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-uSIuu3Une6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIuu3Une6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIuu3Une6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIuu3Une6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIuu3Une6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIuu3Une6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSIuu3Une6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSIuu3Une6 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIuu3Une6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIuu3Une6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIuu3Une6 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIuu3Une6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIuu3Une6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIuu3Une6 .dropdown-item.active,
.cid-uSIuu3Une6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIuu3Une6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIuu3Une6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIuu3Une6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIuu3Une6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSIuu3Une6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIuu3Une6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIuu3Une6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIuu3Une6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIuu3Une6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIuu3Une6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSIuu3Une6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIuu3Une6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIuu3Une6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIuu3Une6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIuu3Une6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIuu3Une6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIuu3Une6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIuu3Une6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIuu3Une6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIuu3Une6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIuu3Une6 .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-uSIuu3Une6 .navbar {
    height: 70px;
  }
  .cid-uSIuu3Une6 .navbar.opened {
    height: auto;
  }
  .cid-uSIuu3Une6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIuu4vwjJ {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-vinho-1.jpg");
}
.cid-uSIuu4vwjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuu4vwjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuu4vwjJ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuu4vwjJ .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIuu5pE7U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #600000;
}
.cid-uSIuu5pE7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuu5pE7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuu5pE7U .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuu5pE7U .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIuu5TqBc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSIuu5TqBc img,
.cid-uSIuu5TqBc .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSIuu5TqBc .item:focus,
.cid-uSIuu5TqBc span:focus {
  outline: none;
}
.cid-uSIuu5TqBc .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSIuu5TqBc .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSIuu5TqBc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIuu5TqBc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSIuu5TqBc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSIuu5TqBc .mbr-section-title {
  color: #232323;
}
.cid-uSIuu7o6Hj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-box-vinho-1.jpg");
}
.cid-uSIuu7o6Hj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuu7o6Hj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuu7o6Hj ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSIuu7o6Hj li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSIuu7o6Hj ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSIuu7o6Hj H3 {
  color: #ffffff;
}
.cid-uSIuu7o6Hj .list {
  color: #ffffff;
}
.cid-uSIuu7OzZd {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #600000;
}
.cid-uSIuu7OzZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuu7OzZd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuu7OzZd .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuu7OzZd .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIuu8gtFV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #600000;
}
.cid-uSIuu8KycZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIuu8KycZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuu8KycZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuu8KycZ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuu8KycZ .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIuu8KycZ .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIuu8KycZ .mbr-text,
.cid-uSIuu8KycZ .mbr-section-btn {
  text-align: left;
}
.cid-uSIuu9HIvg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #600000;
}
.cid-uSIuu9HIvg .line {
  background-color: #600000;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIuu9HIvg .mbr-text {
  color: #ffffff;
}
.cid-uSIuuaaPFx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSIuuaaPFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuuaaPFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuuaaPFx .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSIuuaaPFx .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIuuaaPFx .row {
    text-align: center;
  }
  .cid-uSIuuaaPFx .row > div {
    margin: auto;
  }
  .cid-uSIuuaaPFx .social-row {
    justify-content: center;
  }
}
.cid-uSIuuaaPFx .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSIuuaaPFx .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSIuuaaPFx .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSIuuaaPFx .list {
    margin-bottom: 0rem;
  }
}
.cid-uSIuuaaPFx .mbr-text {
  color: #bbbbbb;
}
.cid-uSIuuaaPFx .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSIuuaaPFx .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSIuuaaPFx div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSIuuaaPFx .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSIuyIXoeS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSIuyIXoeS nav.navbar {
  position: fixed;
}
.cid-uSIuyIXoeS .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-uSIuyIXoeS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSIuyIXoeS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSIuyIXoeS .dropdown-item:hover,
.cid-uSIuyIXoeS .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSIuyIXoeS .dropdown-item:hover span {
  color: white;
}
.cid-uSIuyIXoeS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSIuyIXoeS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSIuyIXoeS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSIuyIXoeS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSIuyIXoeS .nav-link {
  position: relative;
}
.cid-uSIuyIXoeS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSIuyIXoeS .container {
    flex-wrap: nowrap;
  }
}
.cid-uSIuyIXoeS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSIuyIXoeS .dropdown-menu,
.cid-uSIuyIXoeS .navbar.opened {
  background: #000000 !important;
}
.cid-uSIuyIXoeS .nav-item:focus,
.cid-uSIuyIXoeS .nav-link:focus {
  outline: none;
}
.cid-uSIuyIXoeS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSIuyIXoeS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSIuyIXoeS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSIuyIXoeS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSIuyIXoeS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSIuyIXoeS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSIuyIXoeS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSIuyIXoeS .navbar.opened {
  transition: all 0.3s;
}
.cid-uSIuyIXoeS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSIuyIXoeS .navbar .navbar-logo img {
  width: auto;
}
.cid-uSIuyIXoeS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSIuyIXoeS .navbar.collapsed {
  justify-content: center;
}
.cid-uSIuyIXoeS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSIuyIXoeS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSIuyIXoeS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSIuyIXoeS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSIuyIXoeS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSIuyIXoeS .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-uSIuyIXoeS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSIuyIXoeS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSIuyIXoeS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSIuyIXoeS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSIuyIXoeS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSIuyIXoeS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSIuyIXoeS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSIuyIXoeS .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-uSIuyIXoeS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSIuyIXoeS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSIuyIXoeS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSIuyIXoeS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSIuyIXoeS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSIuyIXoeS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSIuyIXoeS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSIuyIXoeS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSIuyIXoeS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSIuyIXoeS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSIuyIXoeS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSIuyIXoeS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSIuyIXoeS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSIuyIXoeS .dropdown-item.active,
.cid-uSIuyIXoeS .dropdown-item:active {
  background-color: transparent;
}
.cid-uSIuyIXoeS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSIuyIXoeS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSIuyIXoeS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSIuyIXoeS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSIuyIXoeS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSIuyIXoeS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSIuyIXoeS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSIuyIXoeS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSIuyIXoeS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSIuyIXoeS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSIuyIXoeS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSIuyIXoeS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIuyIXoeS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSIuyIXoeS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSIuyIXoeS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIuyIXoeS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSIuyIXoeS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSIuyIXoeS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSIuyIXoeS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSIuyIXoeS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSIuyIXoeS .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-uSIuyIXoeS .navbar {
    height: 70px;
  }
  .cid-uSIuyIXoeS .navbar.opened {
    height: auto;
  }
  .cid-uSIuyIXoeS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSIuyJXdpB {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-balde-cerveja-1.jpg");
}
.cid-uSIuyJXdpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyJXdpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyJXdpB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuyJXdpB .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIuyKxOHi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #132028;
}
.cid-uSIuyKxOHi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyKxOHi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyKxOHi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuyKxOHi .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSIuyL1RPU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uSIuyL1RPU img,
.cid-uSIuyL1RPU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uSIuyL1RPU .item:focus,
.cid-uSIuyL1RPU span:focus {
  outline: none;
}
.cid-uSIuyL1RPU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSIuyL1RPU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSIuyL1RPU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSIuyL1RPU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSIuyL1RPU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSIuyL1RPU .mbr-section-title {
  color: #232323;
}
.cid-uSIuyMthhU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-balde-cerveja-1.jpg");
}
.cid-uSIuyMthhU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyMthhU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyMthhU ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uSIuyMthhU li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uSIuyMthhU ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #ffcc00;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uSIuyMthhU H3 {
  color: #ffffff;
}
.cid-uSIuyMthhU .list {
  color: #ffffff;
}
.cid-uSIuyN4pMs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #001a27;
}
.cid-uSIuyN4pMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyN4pMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyN4pMs .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuyN4pMs .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSIuyNS0iN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSIuyOtiRs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/dica-fundo-box-caf.png");
}
.cid-uSIuyOtiRs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyOtiRs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyOtiRs .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSIuyOtiRs .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSIuyOtiRs .mbr-section-title {
  color: #1b0c05;
}
.cid-uSIuyOtiRs .mbr-text,
.cid-uSIuyOtiRs .mbr-section-btn {
  text-align: left;
}
.cid-uSIuyPc1RD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #001a27;
}
.cid-uSIuyPc1RD .line {
  background-color: #001a27;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uSIuyPc1RD .mbr-text {
  color: #ffffff;
}
.cid-uSIuyPIGaa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSIuyPIGaa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIuyPIGaa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIuyPIGaa .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSIuyPIGaa .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSIuyPIGaa .row {
    text-align: center;
  }
  .cid-uSIuyPIGaa .row > div {
    margin: auto;
  }
  .cid-uSIuyPIGaa .social-row {
    justify-content: center;
  }
}
.cid-uSIuyPIGaa .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSIuyPIGaa .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSIuyPIGaa .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSIuyPIGaa .list {
    margin-bottom: 0rem;
  }
}
.cid-uSIuyPIGaa .mbr-text {
  color: #bbbbbb;
}
.cid-uSIuyPIGaa .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSIuyPIGaa .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSIuyPIGaa div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSIuyPIGaa .mbr-section-subtitle {
  color: #ffcc00;
}
.cid-uSINUoHHrI {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uSINUoHHrI nav.navbar {
  position: fixed;
}
.cid-uSINUoHHrI .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-uSINUoHHrI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSINUoHHrI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSINUoHHrI .dropdown-item:hover,
.cid-uSINUoHHrI .dropdown-item:focus {
  background: #ffcc00 !important;
  color: white !important;
}
.cid-uSINUoHHrI .dropdown-item:hover span {
  color: white;
}
.cid-uSINUoHHrI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSINUoHHrI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSINUoHHrI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSINUoHHrI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSINUoHHrI .nav-link {
  position: relative;
}
.cid-uSINUoHHrI .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSINUoHHrI .container {
    flex-wrap: nowrap;
  }
}
.cid-uSINUoHHrI .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSINUoHHrI .dropdown-menu,
.cid-uSINUoHHrI .navbar.opened {
  background: #000000 !important;
}
.cid-uSINUoHHrI .nav-item:focus,
.cid-uSINUoHHrI .nav-link:focus {
  outline: none;
}
.cid-uSINUoHHrI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSINUoHHrI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSINUoHHrI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSINUoHHrI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSINUoHHrI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSINUoHHrI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSINUoHHrI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
}
.cid-uSINUoHHrI .navbar.opened {
  transition: all 0.3s;
}
.cid-uSINUoHHrI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSINUoHHrI .navbar .navbar-logo img {
  width: auto;
}
.cid-uSINUoHHrI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSINUoHHrI .navbar.collapsed {
  justify-content: center;
}
.cid-uSINUoHHrI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSINUoHHrI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSINUoHHrI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSINUoHHrI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSINUoHHrI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSINUoHHrI .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-uSINUoHHrI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSINUoHHrI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSINUoHHrI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSINUoHHrI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSINUoHHrI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSINUoHHrI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSINUoHHrI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSINUoHHrI .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-uSINUoHHrI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSINUoHHrI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSINUoHHrI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSINUoHHrI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSINUoHHrI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSINUoHHrI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSINUoHHrI .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSINUoHHrI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uSINUoHHrI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSINUoHHrI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSINUoHHrI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSINUoHHrI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSINUoHHrI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSINUoHHrI .dropdown-item.active,
.cid-uSINUoHHrI .dropdown-item:active {
  background-color: transparent;
}
.cid-uSINUoHHrI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSINUoHHrI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSINUoHHrI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSINUoHHrI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSINUoHHrI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSINUoHHrI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSINUoHHrI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSINUoHHrI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSINUoHHrI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSINUoHHrI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uSINUoHHrI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSINUoHHrI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSINUoHHrI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSINUoHHrI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSINUoHHrI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSINUoHHrI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSINUoHHrI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSINUoHHrI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSINUoHHrI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSINUoHHrI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSINUoHHrI .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-uSINUoHHrI .navbar {
    height: 70px;
  }
  .cid-uSINUoHHrI .navbar.opened {
    height: auto;
  }
  .cid-uSINUoHHrI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSINUpHSVc {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-box-whisky-1.jpg");
}
.cid-uSINUpHSVc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSINUpHSVc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSINUpHSVc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSINUpHSVc .image-wrap img {
    display: block;
    margin: auto;
    width: 40%;
  }
}
.cid-uSINUvkX6O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSINUvkX6O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSINUvkX6O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSINUvkX6O .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSINUvkX6O .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uSINUvkX6O .mbr-section-title {
  color: #ffffff;
}
.cid-uSINUvkX6O .mbr-text,
.cid-uSINUvkX6O .mbr-section-btn {
  text-align: left;
}
.cid-uSIScP3CoJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSIScP3CoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSIScP3CoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSIScP3CoJ .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uSIScP3CoJ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSIScP3CoJ .mbr-iconfont {
  font-size: 2rem;
  color: #ffcc00;
  padding-right: 1.5rem;
}
.cid-uSIScP3CoJ .card-title {
  color: #ffffff;
}
.cid-uSIScP3CoJ .card-text {
  color: #ffffff;
}
.cid-uSITYX7Geh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSITYX7Geh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSITYX7Geh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSITYX7Geh .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uSITYX7Geh .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSITYX7Geh .mbr-iconfont {
  font-size: 2rem;
  color: #ffcc00;
  padding-right: 1.5rem;
}
.cid-uSITYX7Geh .card-title {
  color: #ffffff;
}
.cid-uSITYX7Geh .card-text {
  color: #ffffff;
}
.cid-uSITZwQX7n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSITZwQX7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSITZwQX7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSITZwQX7n .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uSITZwQX7n .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uSITZwQX7n .mbr-iconfont {
  font-size: 2rem;
  color: #ffcc00;
  padding-right: 1.5rem;
}
.cid-uSITZwQX7n .card-title {
  color: #ffffff;
}
.cid-uSITZwQX7n .card-text {
  color: #ffffff;
}
.cid-uSINUtAxNY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #001a27;
}
.cid-uSINUtAxNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSINUtAxNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSINUtAxNY .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uSINUtAxNY .image-wrap img {
    display: block;
    margin: auto;
    width: 30%;
  }
}
.cid-uSINUuycHv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #001a27;
}
.cid-uSINUyN4T5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-base.jpg");
}
.cid-uSINUyN4T5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSINUyN4T5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSINUyN4T5 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uSINUyN4T5 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uSINUyN4T5 .row {
    text-align: center;
  }
  .cid-uSINUyN4T5 .row > div {
    margin: auto;
  }
  .cid-uSINUyN4T5 .social-row {
    justify-content: center;
  }
}
.cid-uSINUyN4T5 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uSINUyN4T5 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uSINUyN4T5 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uSINUyN4T5 .list {
    margin-bottom: 0rem;
  }
}
.cid-uSINUyN4T5 .mbr-text {
  color: #bbbbbb;
}
.cid-uSINUyN4T5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uSINUyN4T5 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uSINUyN4T5 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uSINUyN4T5 .mbr-section-subtitle {
  color: #ffcc00;
}
