body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #033610 !important;
}
.bg-success {
  background-color: #337b22 !important;
}
.bg-info {
  background-color: #103679 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #033610 !important;
  border-color: #033610 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #103679 !important;
  border-color: #103679 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #071835 !important;
  border-color: #071835 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #071835 !important;
  border-color: #071835 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #337b22 !important;
  border-color: #337b22 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1a3f11 !important;
  border-color: #1a3f11 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1a3f11 !important;
  border-color: #1a3f11 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #033610;
  border-color: #033610;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #033610 !important;
  border-color: #033610 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #040e1f;
  color: #040e1f !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #103679;
  border-color: #103679;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #103679 !important;
  border-color: #103679 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #122b0c;
  color: #122b0c !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #337b22;
  border-color: #337b22;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #337b22 !important;
  border-color: #337b22 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.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,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #033610 !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #337b22 !important;
}
.text-info {
  color: #103679 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #122b0c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #040e1f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #337b22;
}
.alert-info {
  background-color: #103679;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #033610;
  border-color: #033610;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #033610;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2bf35e;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #67ce4e;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #266ae2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
blockquote {
  border-color: #033610;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type='submit']:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #033610;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #033610;
  border-bottom-color: #033610;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #033610 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ca4336 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23033610' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rFORgLKeuK {
  background-image: url("../../images/vips-op-2.jpg");
}
.cid-rFORgLKeuK .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rFORgLKeuK .modal-content {
  width: 100% !important;
  background: linear-gradient(135deg, #c9c9c9 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9c9c9', endColorstr='#ffffff', GradientType=1);
}
.cid-rFORgLKeuK #img-moeda-selecionada {
  idth: 60%;
  height: 100%;
}
.cid-rFORgLKeuK img {
  padding-right: 20px !Important;
  width: 30%;
  height: 30%;
  object-fit: cover;
  object-position: center center;
}
.cid-rFORgLKeuK .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-rFORgLKeuK .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-rFORgLKeuK .form-group {
  padding: 0;
  margin-bottom: 1em;
}
.cid-rFORgLKeuK .form-control {
  min-height: auto !important;
  color: #ffffff !important;
  border: none;
  font-size: 1rem !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-rFORgLKeuK .form-control:focus {
  outline: none;
  box-shadow: none;
}
@keyframes sumir {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-rFORgLKeuK .teste-sumir {
  animation: sumir 600ms linear forwards;
}
.cid-rFORgLKeuK .teste-aparece {
  animation: aparecer 600ms linear forwards;
}
.cid-rFORgLKeuK .input-group-btn {
  font-weight: 500 !important;
  display: block;
  padding-left: 0;
}
.cid-rFORgLKeuK input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rFORgLKeuK input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-rFORgLKeuK .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-rFORgLKeuK .mbr-section-subtitle {
  color: #efefef;
}
.cid-rFORgLKeuK .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-rFORgLKeuK .text-element {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rFORgLKeuK .form-1 {
    margin-top: ;
  }
}
@media (max-width: 767px) {
  .cid-rFORgLKeuK .underline .line {
    height: 2px;
  }
  .cid-rFORgLKeuK .container {
    overflow-x: hidden !important;
  }
  .cid-rFORgLKeuK .text-element {
    padding-bottom: 1rem;
  }
  .cid-rFORgLKeuK .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-rFORgLKeuK .mbr-section-subtitle,
  .cid-rFORgLKeuK .mbr-section-title,
  .cid-rFORgLKeuK .mbr-text,
  .cid-rFORgLKeuK .mbr-section-btn,
  .cid-rFORgLKeuK .form-title,
  .cid-rFORgLKeuK .form-subtitle,
  .cid-rFORgLKeuK .input-group-btn,
  .cid-rFORgLKeuK .form-text {
    text-align: center !important;
  }
}
.cid-rFORgLKeuK select option {
  color: #000;
}
.cid-rFORgLKeuK .box-vitrine-button:hover {
  background-color: #2c7518!important;
}
.cid-rFORgLKeuK .disableVitrine {
  display: none !important;
}
.cid-rFORgLKeuK .box-vitrine-estatico {
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  margin-top: 10%;
}
.cid-rFORgLKeuK .box-vitrine-button btn:hover {
  background-color: #2c7518!important;
  transform: none;
  font-weight: 500 !important;
}
.cid-rFORgLKeuK .box-vitrine-button {
  border-color: #2c7518!important;
  background-color: #2c7518!important;
  border-bottom: 1px solid white;
  padding-bottom: 2%;
  padding-top: 2%;
  margin: 0;
  border-radius: 0px;
  font-size: 12px;
  padding-left: 0;
  padding-right: 0;
}
.cid-rFORgLKeuK .btn-comprar-agora {
  border-radius: 5px !important;
  width: 100%;
  background-color: #49b52b !important;
  border-color: #49b52b !important;
  margin-left: 0em;
}
.cid-rFORgLKeuK .btn-comprar-agora:hover {
  background-color: #49b52b !important;
  border-color: #49b52b     !important;
}
.cid-rFORgLKeuK .label-vitrine {
  color: white;
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 0;
}
.cid-rFORgLKeuK .hide {
  display: none;
}
.cid-rFORgLKeuK .box-vitrine-custom {
  background-color: );
  padding-left: 2%;
  padding-bottom: 2%;
  padding-right: 2%;
  font-family: 'Poppins', sans-serif !important;
}
.cid-rFORgLKeuK .custom-form-control {
  border-radius: 0;
}
.cid-rFORgLKeuK .itemMoeda {
  list-style: none;
  cursor: pointer;
  padding-top: 10px;
  border-bottom: 1px solid #f5f5f5;
  text-align: left;
  height: 100%;
  padding-bottom: 10px;
}
.cid-rFORgLKeuK .dropdown-moeda img {
  max-height: 50px !important;
  max-width: 62px !important;
  margin-right: 5px;
}
.cid-rFORgLKeuK .itemMoeda img {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  max-height: 50px !important;
  max-width: 50px !important;
}
.cid-rFORgLKeuK .box-moeda {
  width: 100%;
  padding-right: 10px;
  position: absolute;
  top: 6em;
  z-index: 1000;
  background-color: white;
  list-style-type: none;
  padding: 0;
}
.cid-rFORgLKeuK .scrollable {
  max-height: 300px;
  overflow: auto;
  width: 100%;
}
.cid-rFORgLKeuK .notShowMoeda {
  display: none;
}
.cid-rFORgLKeuK .grid-Custom {
  margin-top: 0em !important;
}
.cid-rFORgLKeuK h3 {
  color: white;
}
.cid-rFORgLKeuK .text-element > .mbr-text,
.cid-rFORgLKeuK .text-element > .mbr-section-btn {
  color: #92b5d5;
  font-weight: 500 !important;
}
.cid-rFORgLKeuK .modal-body p {
  font-size: 13px;
}
.cid-rFORgLKeuK .modal-header {
  max-height: 4em !important;
}
.cid-rFORgLKeuK .modal-header h5 {
  font-size: 14.5px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .cid-rFORgLKeuK .box-vitrine-custom {
    margin-top: 5em;
  }
  .cid-rFORgLKeuK .modal {
    width: 99vw;
  }
  .cid-rFORgLKeuK .modal-header h5 {
    font-size: 12px !important;
    font-weight: bold !important;
  }
  .cid-rFORgLKeuK .modal-body p {
    font-size: 12px !important;
  }
}
.cid-rFORgLKeuK .modal-dialog {
  font-size: 12px !important;
  margin: 0px !important;
  margin-left: 1vw !important;
}
.cid-rFORgLKeuK .modal-footer {
  max-height: 5em !important;
}
.cid-rFORgLKeuK .btn-modal {
  max-height: 2.8em !important;
  font-weight: 500 !important;
}
@keyframes modalPositionLarge {
  from {
    top: 0vh;
  }
  to {
    top: 61vh;
  }
}
@keyframes modalPositionmobile {
  from {
    top: 0vh;
  }
  to {
    top: 45vh;
  }
}
@keyframes modalPositionMedium {
  from {
    top: 0vh;
  }
  to {
    top: 46vh;
  }
}
.cid-rFORgLKeuK .mbr-section-title {
  color: #ffffff;
}
.cid-rFORgLKeuK .labelIdade {
  color: #fff !important;
}
.cid-rFORgLKeuK .espacoPerguntas label {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-rFORgLKeuK .box-vitrine-button {
    font-size: 9px !important;
  }
  .cid-rFORgLKeuK .form-group {
    padding: 0;
    margin-bottom: 0.3em !important;
  }
  .cid-rFORgLKeuK .grid-Custom {
    margin-top: -2em !important;
  }
  .cid-rFORgLKeuK .scrollable {
    width: 87vw !important;
  }
}
.cid-rFORgLKeuK .check {
  background-color: #c9dcc4 !important;
  border-color: #222 !important;
  color: black !important;
}
.cid-rFORgLKeuK .check:hover {
  background-color: #c9dcc4 !important;
  border-color: #222 !important;
  color: black !important;
}
.cid-rFORgLKeuK H4 {
  color: #ffffff;
}
.cid-rFORgLKeuK [data-tooltip] {
  font-family: 'arial';
  position: relative;
  font-weight: 500;
}
.cid-rFORgLKeuK [data-tooltip]:before {
  border: 10px solid transparent;
  border-right-color: #45a42e;
  content: "";
  left: 0.8em;
  top: -0.2em;
  visibility: hidden;
  position: absolute;
  transition: all 200ms ease;
}
.cid-rFORgLKeuK [data-tooltip]:after {
  content: attr(data-tooltip);
  width: 17em !important;
  visibility: hidden;
  position: absolute;
  top: -1em;
  z-index: 1000;
  padding: 20px;
  left: 2em;
  background-color: #45a42e;
  color: #fff;
  font-size: 15px !important;
  text-shadow: 0 0 .1em #fff;
  box-shadow: 0 0 10px #055f74;
  transition: all 200ms ease;
}
.cid-rFORgLKeuK [data-tooltip]:hover:after,
.cid-rFORgLKeuK [data-tooltip]:hover:before {
  visibility: visible;
}
.cid-rFORgLKeuK .info-vitrine {
  padding: .5em 1em .5em 1em;
  background: transparent !important;
}
.cid-rFORgLKeuK .primecase__spinner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  left: 0rem;
  top: 1.1em;
}
.cid-rFORgLKeuK .primecase__spinner .spinner {
  position: relative;
  box-sizing: border-box;
  animation-delay: -0.16s;
  color: #45a42e !important;
  font-size: 2.8rem;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  transform: translateZ(0);
  animation: load6 1.4s infinite ease, round 1.4s infinite ease;
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-rFORgLKeuK p {
  margin-bottom: 0 !important;
}
.cid-rFORgLKeuK .mbr-section-title P {
  text-align: left;
}
.cid-rFORgLKeuK .containerVideo {
  margin-left: -4rem;
}
@media (max-width: 1367px) {
  .cid-rFORgLKeuK .containerVideo {
    margin-left: -2rem;
  }
}
@media (max-width: 796) {
  .cid-rFORgLKeuK .containerVideo {
    margin-left: 0rem;
  }
}
.cid-rFORgLKeuK iframe {
  height: 315px;
  width: 80%;
}
@media (max-width: 796px) {
  .cid-rFORgLKeuK iframe {
    width: 100%;
  }
}
.cid-ulDelnjeRa {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ffffff;
}
@media (max-width: 796px) {
  .cid-ulDelnjeRa {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-ulDelnjeRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulDelnjeRa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulDelnjeRa .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ulDelnjeRa .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-ulDelnjeRa .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ulDelnjeRa .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: 'cover';
  opacity: .5;
}
.cid-ulDelnjeRa .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ulDelnjeRa .content-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-ulDelnjeRa .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px 0 0 #ffffff;
  background-color: #ffffff;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-ulDelnjeRa .content-wrapper .card-wrapper {
    width: 100%;
  }
}
.cid-ulDelnjeRa .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 550px;
}
@media (max-width: 992px) {
  .cid-ulDelnjeRa .box .mbr-media {
    height: 350px;
  }
}
.cid-ulDelnjeRa .box .mbr-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 728px) {
  .cid-ulDelnjeRa .box .mbr-media img {
    object-fit: cover;
  }
}
.cid-ulDelnjeRa .box .mbr-media a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ulDelnjeRa .box .mbr-media .mbr-iconfont {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  z-index: 1;
}
.cid-ulDelnjeRa .mbr-media {
  position: relative;
}
.cid-ulDelnjeRa .mbr-media img {
  object-fit: fill;
}
.cid-ulDelnjeRa a:hover {
  background-image: none !important;
}
.cid-ulDelnjeRa .icon-wrapper {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 70px;
  width: 70px;
  border-radius: 100%;
  border: 3px solid #ffffff;
  background: #337b22;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cid-ulDelnjeRa .icon-wrapper {
    height: 60px !important;
    width: 60px !important;
  }
}
.cid-ulDelnjeRa .icon-wrapper:hover,
.cid-ulDelnjeRa .icon-wrapper:focus {
  background-color: #ff9063;
}
.cid-ulDelnjeRa .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-ulDelnjeRa .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ulDelnjeRa .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ulDelnjeRa .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ulDelnjeRa .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ulDelnjeRa .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ulDelnjeRa .mbr-section-title {
  color: #050f0f;
  text-align: center;
}
.cid-ulDelnjeRa .display-mobile {
  display: none;
}
@media (max-width: 796px) {
  .cid-ulDelnjeRa .display-mobile {
    display: block;
  }
}
.cid-t4TlK5IgJ1 {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ececec;
}
.cid-t4TlK5IgJ1 .container-fluid {
  padding: 0 5rem;
}
.cid-t4TlK5IgJ1 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4TlK5IgJ1 .mbr-section-title {
  padding-bottom: 2rem;
  color: #232323;
}
.cid-t4TlK5IgJ1 .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-t4TlK5IgJ1 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-t4TlK5IgJ1 .mbr-figure img {
    width: 100%;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .cid-t4TlK5IgJ1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-t4TlK5IgJ1 .mbr-figure {
    margin-top: 1rem;
  }
  .cid-t4TlK5IgJ1 .mbr-section-title {
    text-align: center !important;
  }
  .cid-t4TlK5IgJ1 .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-t4TlK5IgJ1 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t4TlK5IgJ1 .mbr-section-subtitle,
.cid-t4TlK5IgJ1 .mbr-section-btn {
  color: #444444;
}
.cid-t4TwLE8RFT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t4TwLE8RFT .row-element,
.cid-t4TwLE8RFT .image-element {
  padding: 0;
}
.cid-t4TwLE8RFT .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4TwLE8RFT .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-t4TwLE8RFT .text-content {
  padding: 3rem;
}
.cid-t4TwLE8RFT .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-t4TwLE8RFT .text-content {
    padding: 2rem 1rem;
  }
  .cid-t4TwLE8RFT .mbr-title,
  .cid-t4TwLE8RFT .mbr-text,
  .cid-t4TwLE8RFT .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t4TwLE8RFT .mbr-title {
  color: #232323;
  text-align: left;
}
.cid-t4TwLE8RFT .mbr-text,
.cid-t4TwLE8RFT .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-t4TymlYXJy {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ececec;
}
.cid-t4TymlYXJy .container-fluid {
  padding: 0 5rem;
}
.cid-t4TymlYXJy .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4TymlYXJy .mbr-section-title {
  padding-bottom: 2rem;
  color: #232323;
}
.cid-t4TymlYXJy .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-t4TymlYXJy .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-t4TymlYXJy .mbr-figure img {
    width: 100%;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .cid-t4TymlYXJy .container-fluid {
    padding: 0 1rem;
  }
  .cid-t4TymlYXJy .mbr-figure {
    margin-top: 1rem;
  }
  .cid-t4TymlYXJy .mbr-section-title {
    text-align: center !important;
  }
  .cid-t4TymlYXJy .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-t4TymlYXJy .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-t4TymlYXJy .mbr-section-subtitle,
.cid-t4TymlYXJy .mbr-section-btn {
  color: #444444;
}
.cid-rGu8rNddxG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4c7a41;
}
.cid-rGu8rNddxG .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGu8rNddxG .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-rWa41oZPTb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa41oZPTb .content {
    text-align: center;
  }
  .cid-rWa41oZPTb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa41oZPTb .img-logo img {
  height: 6rem;
}
.cid-rWa41oZPTb .footer-title {
  color: #45a42e;
}
.cid-rWa41oZPTb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa41oZPTb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa41oZPTb .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa41oZPTb .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa41oZPTb .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa41oZPTb .social-list a:hover {
  opacity: 1;
}
.cid-rWa41oZPTb .form-group {
  width: 100%;
}
.cid-rWa41oZPTb .form-group input {
  width: 100%;
}
.cid-rWa41oZPTb .form-group input:focus {
  outline: none;
}
.cid-rWa41oZPTb .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa41oZPTb .form-control:focus {
  outline: none;
}
.cid-rWa41oZPTb input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb input::-moz-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa41oZPTb .list li {
  padding-bottom: .5rem;
}
.cid-rWa41oZPTb .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa41oZPTb .mbr-footer-list,
.cid-rWa41oZPTb .form-text {
  color: #000;
}
.cid-rWa41oZPTb a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa41oZPTb a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa41oZPTb .mbr-footer-list,
  .cid-rWa41oZPTb .form-text,
  .cid-rWa41oZPTb .footer-title,
  .cid-rWa41oZPTb .footer-main-title,
  .cid-rWa41oZPTb .form-text,
  .cid-rWa41oZPTb .list {
    text-align: center !important;
  }
  .cid-rWa41oZPTb .form-inline,
  .cid-rWa41oZPTb .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-c .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-c .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-c .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-c .primecase p {
  color: black;
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-c .primecase img {
  width: 30px;
}
#custom-html-c .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-c .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26I4norhk.popup-builder {
  background-color: #ffffff;
}
.cid-s26I4norhk.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26I4norhk.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26I4norhk .modal-content,
.cid-s26I4norhk .modal-dialog {
  height: auto;
}
.cid-s26I4norhk .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26I4norhk .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26I4norhk .form-wrapper .input-group-btn .mbr-form .form-group,
  .cid-s26I4norhk .form-wrapper .input-group-btn .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26I4norhk .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26I4norhk .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26I4norhk .mbr-text {
  text-align: left;
}
.cid-s26I4norhk .pt-0 {
  padding-top: 0 !important;
}
.cid-s26I4norhk .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26I4norhk .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26I4norhk .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26I4norhk .modal-open {
  overflow: hidden;
}
.cid-s26I4norhk .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26I4norhk .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26I4norhk .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26I4norhk .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26I4norhk .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26I4norhk .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26I4norhk .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26I4norhk .modal-content {
  background: transparent;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  left: 0.5rem;
}
.cid-s26I4norhk .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26I4norhk .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26I4norhk .modal-backdrop.show {
  opacity: .5;
}
.cid-s26I4norhk .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26I4norhk .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26I4norhk .modal-header .close:hover {
  opacity: 1;
}
.cid-s26I4norhk .modal-header .close:focus {
  outline: none;
}
.cid-s26I4norhk .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff0000;
}
.cid-s26I4norhk .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26I4norhk .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26I4norhk .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26I4norhk .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26I4norhk .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26I4norhk .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26I4norhk .modal-sm {
    max-width: 300px;
  }
  .cid-s26I4norhk .container {
    max-width: 540px;
  }
}
.cid-s26I4norhk .close {
  right: 3.2em !important;
  top: 1.8em !important;
  z-index: 1;
  color: #fff !important;
}
@media (min-width: 992px) {
  .cid-s26I4norhk .modal-lg,
  .cid-s26I4norhk .modal-xl {
    max-width: 800px;
  }
  .cid-s26I4norhk .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26I4norhk .modal-xl {
    max-width: 1140px;
  }
  .cid-s26I4norhk .container {
    max-width: 1140px;
  }
}
.cid-s26I4norhk .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26I4norhk .container {
    max-width: 720px;
  }
}
.cid-s26I4norhk .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26I4norhk .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26I4norhk .form-group {
  margin-bottom: 1rem;
}
.cid-s26I4norhk .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26I4norhk .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26I4norhk .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26I4norhk .mbr-figure img {
  display: block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
  margin: auto;
  width: 80% !important;
}
@media (max-width: 796px) {
  .cid-s26I4norhk .close {
    right: 2.5em !important;
  }
  .cid-s26I4norhk .mbr-figure img {
    width: 82% !important;
  }
}
.cid-um5NNx38zD.popup-builder {
  background-color: #ffffff;
}
.cid-um5NNx38zD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um5NNx38zD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um5NNx38zD .modal-content,
.cid-um5NNx38zD .modal-dialog {
  height: auto;
}
.cid-um5NNx38zD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um5NNx38zD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um5NNx38zD .form-wrapper .mbr-form .form-group,
  .cid-um5NNx38zD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um5NNx38zD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um5NNx38zD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um5NNx38zD .mbr-text {
  text-align: center;
}
.cid-um5NNx38zD .pt-0 {
  padding-top: 0 !important;
}
.cid-um5NNx38zD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um5NNx38zD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um5NNx38zD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um5NNx38zD .modal-open {
  overflow: hidden;
}
.cid-um5NNx38zD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um5NNx38zD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um5NNx38zD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um5NNx38zD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um5NNx38zD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um5NNx38zD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um5NNx38zD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um5NNx38zD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um5NNx38zD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um5NNx38zD .modal-backdrop.fade {
  opacity: 0;
}
.cid-um5NNx38zD .modal-backdrop.show {
  opacity: .5;
}
.cid-um5NNx38zD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-um5NNx38zD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um5NNx38zD .modal-header .close:hover {
  opacity: 1;
}
.cid-um5NNx38zD .modal-header .close:focus {
  outline: none;
}
.cid-um5NNx38zD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-um5NNx38zD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-um5NNx38zD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-um5NNx38zD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um5NNx38zD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um5NNx38zD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um5NNx38zD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um5NNx38zD .modal-sm {
    max-width: 300px;
  }
  .cid-um5NNx38zD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-um5NNx38zD .modal-lg,
  .cid-um5NNx38zD .modal-xl {
    max-width: 800px;
  }
  .cid-um5NNx38zD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-um5NNx38zD .modal-xl {
    max-width: 1140px;
  }
  .cid-um5NNx38zD .container {
    max-width: 1140px;
  }
}
.cid-um5NNx38zD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-um5NNx38zD .container {
    max-width: 720px;
  }
}
.cid-um5NNx38zD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um5NNx38zD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um5NNx38zD .form-group {
  margin-bottom: 1rem;
}
.cid-um5NNx38zD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um5NNx38zD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um5NNx38zD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1aJ9zIMn.popup-builder {
  background-color: #ffffff;
}
.cid-um1aJ9zIMn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1aJ9zIMn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1aJ9zIMn .modal-content,
.cid-um1aJ9zIMn .modal-dialog {
  height: auto;
}
.cid-um1aJ9zIMn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1aJ9zIMn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1aJ9zIMn .form-wrapper .mbr-form .form-group,
  .cid-um1aJ9zIMn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1aJ9zIMn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1aJ9zIMn .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1aJ9zIMn .mbr-text {
  text-align: center;
}
.cid-um1aJ9zIMn .pt-0 {
  padding-top: 0 !important;
}
.cid-um1aJ9zIMn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1aJ9zIMn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1aJ9zIMn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1aJ9zIMn .modal-open {
  overflow: hidden;
}
.cid-um1aJ9zIMn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1aJ9zIMn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1aJ9zIMn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1aJ9zIMn .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1aJ9zIMn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1aJ9zIMn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1aJ9zIMn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1aJ9zIMn .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1aJ9zIMn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1aJ9zIMn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1aJ9zIMn .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1aJ9zIMn .modal-backdrop.show {
  opacity: .5;
}
.cid-um1aJ9zIMn .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1aJ9zIMn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1aJ9zIMn .modal-header {
    padding: 1rem;
  }
}
.cid-um1aJ9zIMn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1aJ9zIMn .modal-header .close svg {
  fill: #353535;
}
.cid-um1aJ9zIMn .modal-header .close:hover {
  opacity: 1;
}
.cid-um1aJ9zIMn .modal-header .close:focus {
  outline: none;
}
.cid-um1aJ9zIMn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1aJ9zIMn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1aJ9zIMn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1aJ9zIMn .modal-body {
    padding: 1rem;
  }
}
.cid-um1aJ9zIMn .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1aJ9zIMn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1aJ9zIMn .modal-footer {
    padding: 1rem;
  }
}
.cid-um1aJ9zIMn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1aJ9zIMn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1aJ9zIMn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1aJ9zIMn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1aJ9zIMn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1aJ9zIMn .modal-lg,
  .cid-um1aJ9zIMn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1aJ9zIMn .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1aJ9zIMn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1aJ9zIMn .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1aJ9zIMn .form-group {
  margin-bottom: 1rem;
}
.cid-um1aJ9zIMn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1aJ9zIMn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1aJ9zIMn .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1aJ9zIMn .mbr-section-btn {
  margin: 0;
}
.cid-um1aJ9zIMn .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGozjcf2Zy {
  padding-top: 255px;
  padding-bottom: 150px;
  background-image: url("../../images/mbr-3-1920x12805.jpg");
}
.cid-rGozjcf2Zy .mbr-overlay {
  background: #002a23;
}
.cid-rGozjcf2Zy .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGoyj64xDM {
  background-image: url("../../images/mbr-1920x13106.jpg");
}
.cid-rGoyj64xDM .column-content {
  padding-top: 120px;
  padding-bottom: 105px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-rGoyj64xDM .text-content .btn-bgr {
  z-index: 0;
}
.cid-rGoyj64xDM .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-rGoyj64xDM .container-full-width {
  position: relative;
}
.cid-rGoyj64xDM .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-rGoyj64xDM .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-rGoyj64xDM .layer path {
  fill: #ffffff;
}
.cid-rGoyj64xDM .titulo {
  color: #429326;
  font-weight: bold;
}
@media (min-width: 576px) {
  .cid-rGoyj64xDM .text-content {
    width: 540px;
  }
  .cid-rGoyj64xDM .column-content {
    width: 100%;
  }
  .cid-rGoyj64xDM .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-rGoyj64xDM .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-rGoyj64xDM .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-rGoyj64xDM .column-content {
    width: 50%;
  }
  .cid-rGoyj64xDM .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-rGoyj64xDM .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGoyj64xDM .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-rGoyj64xDM .column-content {
    height: 33rem;
  }
}
.cid-rGuwfcaZzL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuwfcaZzL .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuwfcaZzL .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa43v7aAc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa43v7aAc .content {
    text-align: center;
  }
  .cid-rWa43v7aAc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa43v7aAc .img-logo img {
  height: 6rem;
}
.cid-rWa43v7aAc .footer-title {
  color: #45a42e;
}
.cid-rWa43v7aAc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa43v7aAc .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa43v7aAc .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa43v7aAc .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa43v7aAc .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa43v7aAc .social-list a:hover {
  opacity: 1;
}
.cid-rWa43v7aAc .form-group {
  width: 100%;
}
.cid-rWa43v7aAc .form-group input {
  width: 100%;
}
.cid-rWa43v7aAc .form-group input:focus {
  outline: none;
}
.cid-rWa43v7aAc .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa43v7aAc .form-control:focus {
  outline: none;
}
.cid-rWa43v7aAc input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa43v7aAc input::-moz-placeholder {
  color: #767676;
}
.cid-rWa43v7aAc textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa43v7aAc textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa43v7aAc .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa43v7aAc .list li {
  padding-bottom: .5rem;
}
.cid-rWa43v7aAc .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa43v7aAc .mbr-footer-list,
.cid-rWa43v7aAc .form-text {
  color: #000;
}
.cid-rWa43v7aAc a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa43v7aAc a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa43v7aAc .mbr-footer-list,
  .cid-rWa43v7aAc .form-text,
  .cid-rWa43v7aAc .footer-title,
  .cid-rWa43v7aAc .footer-main-title,
  .cid-rWa43v7aAc .form-text,
  .cid-rWa43v7aAc .list {
    text-align: center !important;
  }
  .cid-rWa43v7aAc .form-inline,
  .cid-rWa43v7aAc .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-g .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-g .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-g .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-g .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-g .primecase img {
  width: 30px;
}
#custom-html-g .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-g .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26Ipcza2t.popup-builder {
  background-color: #ffffff;
}
.cid-s26Ipcza2t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26Ipcza2t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26Ipcza2t .modal-content,
.cid-s26Ipcza2t .modal-dialog {
  height: auto;
}
.cid-s26Ipcza2t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26Ipcza2t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26Ipcza2t .form-wrapper .mbr-form .form-group,
  .cid-s26Ipcza2t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26Ipcza2t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26Ipcza2t .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26Ipcza2t .mbr-text {
  text-align: left;
}
.cid-s26Ipcza2t .pt-0 {
  padding-top: 0 !important;
}
.cid-s26Ipcza2t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26Ipcza2t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26Ipcza2t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26Ipcza2t .modal-open {
  overflow: hidden;
}
.cid-s26Ipcza2t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26Ipcza2t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26Ipcza2t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26Ipcza2t .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26Ipcza2t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26Ipcza2t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26Ipcza2t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26Ipcza2t .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26Ipcza2t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26Ipcza2t .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26Ipcza2t .modal-backdrop.show {
  opacity: .5;
}
.cid-s26Ipcza2t .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26Ipcza2t .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26Ipcza2t .modal-header .close:hover {
  opacity: 1;
}
.cid-s26Ipcza2t .modal-header .close:focus {
  outline: none;
}
.cid-s26Ipcza2t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26Ipcza2t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26Ipcza2t .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26Ipcza2t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26Ipcza2t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26Ipcza2t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26Ipcza2t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26Ipcza2t .modal-sm {
    max-width: 300px;
  }
  .cid-s26Ipcza2t .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26Ipcza2t .modal-lg,
  .cid-s26Ipcza2t .modal-xl {
    max-width: 800px;
  }
  .cid-s26Ipcza2t .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26Ipcza2t .modal-xl {
    max-width: 1140px;
  }
  .cid-s26Ipcza2t .container {
    max-width: 1140px;
  }
}
.cid-s26Ipcza2t .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26Ipcza2t .container {
    max-width: 720px;
  }
}
.cid-s26Ipcza2t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26Ipcza2t .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26Ipcza2t .form-group {
  margin-bottom: 1rem;
}
.cid-s26Ipcza2t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26Ipcza2t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26Ipcza2t .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEz4RP.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEz4RP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEz4RP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEz4RP .modal-content,
.cid-s26IGEz4RP .modal-dialog {
  height: auto;
}
.cid-s26IGEz4RP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEz4RP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEz4RP .form-wrapper .mbr-form .form-group,
  .cid-s26IGEz4RP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEz4RP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEz4RP .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEz4RP .mbr-text {
  text-align: center;
}
.cid-s26IGEz4RP .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEz4RP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEz4RP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEz4RP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEz4RP .modal-open {
  overflow: hidden;
}
.cid-s26IGEz4RP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEz4RP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEz4RP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEz4RP .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEz4RP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEz4RP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEz4RP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEz4RP .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEz4RP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEz4RP .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEz4RP .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEz4RP .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEz4RP .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEz4RP .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEz4RP .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEz4RP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEz4RP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEz4RP .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEz4RP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEz4RP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEz4RP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEz4RP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEz4RP .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEz4RP .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEz4RP .modal-lg,
  .cid-s26IGEz4RP .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEz4RP .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEz4RP .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEz4RP .container {
    max-width: 1140px;
  }
}
.cid-s26IGEz4RP .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEz4RP .container {
    max-width: 720px;
  }
}
.cid-s26IGEz4RP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEz4RP .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEz4RP .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEz4RP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEz4RP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEz4RP .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEz4RP .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEz4RP .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEz4RP .politicas {
    flex-direction: column;
  }
  .cid-s26IGEz4RP .politicas a {
    width: 90%;
  }
}
.cid-um1c3YE8xN.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YE8xN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YE8xN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YE8xN .modal-content,
.cid-um1c3YE8xN .modal-dialog {
  height: auto;
}
.cid-um1c3YE8xN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YE8xN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YE8xN .form-wrapper .mbr-form .form-group,
  .cid-um1c3YE8xN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YE8xN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YE8xN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YE8xN .mbr-text {
  text-align: center;
}
.cid-um1c3YE8xN .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YE8xN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YE8xN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YE8xN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YE8xN .modal-open {
  overflow: hidden;
}
.cid-um1c3YE8xN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YE8xN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YE8xN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YE8xN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YE8xN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YE8xN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YE8xN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YE8xN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YE8xN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YE8xN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YE8xN .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YE8xN .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YE8xN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YE8xN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YE8xN .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YE8xN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YE8xN .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YE8xN .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YE8xN .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YE8xN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YE8xN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YE8xN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YE8xN .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YE8xN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YE8xN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YE8xN .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YE8xN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YE8xN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YE8xN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YE8xN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YE8xN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YE8xN .modal-lg,
  .cid-um1c3YE8xN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YE8xN .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YE8xN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YE8xN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YE8xN .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YE8xN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YE8xN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YE8xN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YE8xN .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YE8xN .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGcHZUPMKa {
  padding-top: 300px;
  padding-bottom: 300px;
  background-image: url("../../images/novo-shutterstock-689975047-2000x13337.jpg");
}
.cid-rGcHZUPMKa .mbr-overlay {
  background: #002a23;
}
.cid-rGcHZUPMKa .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGcIulkt3o {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rGcIulkt3o H4 {
  color: #767676;
}
.cid-rGcIulkt3o .mbr-text {
  color: #767676;
}
.cid-rGuBcZqY9x {
  padding-top: 45px;
  padding-bottom: 60px;
  background-image: url("../../images/turn-on-2925962-1920-1920x12028.jpg");
}
.cid-rGuBcZqY9x .mbr-section-title {
  text-align: center;
}
.cid-rGuBcZqY9x .mbr-section-subtitle {
  text-align: left;
}
.cid-rGuBcZqY9x .mbr-section-title,
.cid-rGuBcZqY9x .mbr-section-btn {
  text-align: left;
}
.cid-rGuBcZqY9x .mbr-text {
  text-align: left;
  color: #efefef;
}
.cid-rGuBcZqY9x H4 {
  color: #efefef;
}
.cid-rGcMBE669L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rGcMBE669L H4 {
  text-align: left;
  color: #767676;
}
.cid-rGcMBE669L .mbr-text {
  text-align: left;
  color: #767676;
}
.cid-rGcSlzWlca {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rGcSlzWlca .counter-container {
  color: #767676;
}
.cid-rGcSlzWlca .counter-container ul {
  margin-bottom: 0;
}
.cid-rGcSlzWlca .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rGcSlzWlca .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #66458e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-rGuwjG1OTf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuwjG1OTf .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuwjG1OTf .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa54E1kXr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa54E1kXr .content {
    text-align: center;
  }
  .cid-rWa54E1kXr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa54E1kXr .img-logo img {
  height: 6rem;
}
.cid-rWa54E1kXr .footer-title {
  color: #45a42e;
}
.cid-rWa54E1kXr .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa54E1kXr .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa54E1kXr .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa54E1kXr .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa54E1kXr .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa54E1kXr .social-list a:hover {
  opacity: 1;
}
.cid-rWa54E1kXr .form-group {
  width: 100%;
}
.cid-rWa54E1kXr .form-group input {
  width: 100%;
}
.cid-rWa54E1kXr .form-group input:focus {
  outline: none;
}
.cid-rWa54E1kXr .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa54E1kXr .form-control:focus {
  outline: none;
}
.cid-rWa54E1kXr input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa54E1kXr input::-moz-placeholder {
  color: #767676;
}
.cid-rWa54E1kXr textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa54E1kXr textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa54E1kXr .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa54E1kXr .list li {
  padding-bottom: .5rem;
}
.cid-rWa54E1kXr .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa54E1kXr .mbr-footer-list,
.cid-rWa54E1kXr .form-text {
  color: #000;
}
.cid-rWa54E1kXr a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa54E1kXr a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa54E1kXr .mbr-footer-list,
  .cid-rWa54E1kXr .form-text,
  .cid-rWa54E1kXr .footer-title,
  .cid-rWa54E1kXr .footer-main-title,
  .cid-rWa54E1kXr .form-text,
  .cid-rWa54E1kXr .list {
    text-align: center !important;
  }
  .cid-rWa54E1kXr .form-inline,
  .cid-rWa54E1kXr .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-r .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-r .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-r .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-r .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-r .primecase img {
  width: 30px;
}
#custom-html-r .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-r .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcAHJD.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcAHJD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcAHJD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcAHJD .modal-content,
.cid-s26IpcAHJD .modal-dialog {
  height: auto;
}
.cid-s26IpcAHJD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcAHJD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcAHJD .form-wrapper .mbr-form .form-group,
  .cid-s26IpcAHJD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcAHJD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcAHJD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcAHJD .mbr-text {
  text-align: left;
}
.cid-s26IpcAHJD .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcAHJD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcAHJD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcAHJD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcAHJD .modal-open {
  overflow: hidden;
}
.cid-s26IpcAHJD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcAHJD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcAHJD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcAHJD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcAHJD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcAHJD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcAHJD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcAHJD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcAHJD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcAHJD .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcAHJD .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcAHJD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcAHJD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcAHJD .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcAHJD .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcAHJD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcAHJD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcAHJD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcAHJD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcAHJD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcAHJD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcAHJD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcAHJD .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcAHJD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcAHJD .modal-lg,
  .cid-s26IpcAHJD .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcAHJD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcAHJD .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcAHJD .container {
    max-width: 1140px;
  }
}
.cid-s26IpcAHJD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcAHJD .container {
    max-width: 720px;
  }
}
.cid-s26IpcAHJD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcAHJD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcAHJD .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcAHJD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcAHJD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcAHJD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAARx.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEAARx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEAARx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEAARx .modal-content,
.cid-s26IGEAARx .modal-dialog {
  height: auto;
}
.cid-s26IGEAARx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEAARx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEAARx .form-wrapper .mbr-form .form-group,
  .cid-s26IGEAARx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEAARx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEAARx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEAARx .mbr-text {
  text-align: center;
}
.cid-s26IGEAARx .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEAARx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEAARx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEAARx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEAARx .modal-open {
  overflow: hidden;
}
.cid-s26IGEAARx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEAARx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEAARx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEAARx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEAARx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEAARx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEAARx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEAARx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEAARx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEAARx .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEAARx .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEAARx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEAARx .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEAARx .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEAARx .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEAARx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEAARx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEAARx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEAARx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEAARx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEAARx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEAARx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEAARx .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEAARx .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEAARx .modal-lg,
  .cid-s26IGEAARx .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEAARx .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEAARx .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEAARx .container {
    max-width: 1140px;
  }
}
.cid-s26IGEAARx .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEAARx .container {
    max-width: 720px;
  }
}
.cid-s26IGEAARx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEAARx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEAARx .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEAARx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEAARx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEAARx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAARx .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEAARx .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEAARx .politicas {
    flex-direction: column;
  }
  .cid-s26IGEAARx .politicas a {
    width: 90%;
  }
}
.cid-um1c3YEvs2.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YEvs2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YEvs2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YEvs2 .modal-content,
.cid-um1c3YEvs2 .modal-dialog {
  height: auto;
}
.cid-um1c3YEvs2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YEvs2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YEvs2 .form-wrapper .mbr-form .form-group,
  .cid-um1c3YEvs2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YEvs2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YEvs2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YEvs2 .mbr-text {
  text-align: center;
}
.cid-um1c3YEvs2 .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YEvs2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YEvs2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YEvs2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YEvs2 .modal-open {
  overflow: hidden;
}
.cid-um1c3YEvs2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YEvs2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YEvs2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YEvs2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YEvs2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YEvs2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YEvs2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YEvs2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YEvs2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YEvs2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YEvs2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YEvs2 .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YEvs2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YEvs2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YEvs2 .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YEvs2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YEvs2 .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YEvs2 .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YEvs2 .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YEvs2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YEvs2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YEvs2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YEvs2 .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YEvs2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YEvs2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YEvs2 .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YEvs2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YEvs2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YEvs2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YEvs2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YEvs2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YEvs2 .modal-lg,
  .cid-um1c3YEvs2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YEvs2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YEvs2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YEvs2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YEvs2 .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YEvs2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YEvs2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YEvs2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YEvs2 .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YEvs2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGdcVz27VQ {
  background-image: url("../../images/shutterstock-567634105-2000x13339.jpg");
}
.cid-rGdcVz27VQ .mbr-overlay {
  background: #002a23;
}
.cid-rGdcVz27VQ .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGdcVzPI4O {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-rGdcVzPI4O .mbr-text {
  color: #767676;
}
.cid-rGdtGYCL2X {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rGdtGYCL2X .counter-container {
  color: #767676;
}
.cid-rGduHGK8X9 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGduHGK8X9 .mbr-text {
  color: #767676;
  font-size: 14px !important;
}
.cid-rGduHGK8X9 a {
  color: #767676 !important;
  transition: all 200ms ease-in-out;
}
.cid-rGduHGK8X9 a:hover {
  color: #45a42e !important;
  font-weight: bold !important;
}
.cid-rGuwmRP5Gh {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuwmRP5Gh .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuwmRP5Gh .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa5k8sfmm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5k8sfmm .content {
    text-align: center;
  }
  .cid-rWa5k8sfmm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5k8sfmm .img-logo img {
  height: 6rem;
}
.cid-rWa5k8sfmm .footer-title {
  color: #45a42e;
}
.cid-rWa5k8sfmm .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5k8sfmm .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5k8sfmm .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5k8sfmm .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5k8sfmm .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5k8sfmm .social-list a:hover {
  opacity: 1;
}
.cid-rWa5k8sfmm .form-group {
  width: 100%;
}
.cid-rWa5k8sfmm .form-group input {
  width: 100%;
}
.cid-rWa5k8sfmm .form-group input:focus {
  outline: none;
}
.cid-rWa5k8sfmm .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5k8sfmm .form-control:focus {
  outline: none;
}
.cid-rWa5k8sfmm input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5k8sfmm input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5k8sfmm textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5k8sfmm textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5k8sfmm .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5k8sfmm .list li {
  padding-bottom: .5rem;
}
.cid-rWa5k8sfmm .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5k8sfmm .mbr-footer-list,
.cid-rWa5k8sfmm .form-text {
  color: #000;
}
.cid-rWa5k8sfmm a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5k8sfmm a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5k8sfmm .mbr-footer-list,
  .cid-rWa5k8sfmm .form-text,
  .cid-rWa5k8sfmm .footer-title,
  .cid-rWa5k8sfmm .footer-main-title,
  .cid-rWa5k8sfmm .form-text,
  .cid-rWa5k8sfmm .list {
    text-align: center !important;
  }
  .cid-rWa5k8sfmm .form-inline,
  .cid-rWa5k8sfmm .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-18 .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-18 .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-18 .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-18 .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-18 .primecase img {
  width: 30px;
}
#custom-html-18 .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-18 .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcAymm.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcAymm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcAymm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcAymm .modal-content,
.cid-s26IpcAymm .modal-dialog {
  height: auto;
}
.cid-s26IpcAymm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcAymm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcAymm .form-wrapper .mbr-form .form-group,
  .cid-s26IpcAymm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcAymm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcAymm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcAymm .mbr-text {
  text-align: left;
}
.cid-s26IpcAymm .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcAymm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcAymm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcAymm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcAymm .modal-open {
  overflow: hidden;
}
.cid-s26IpcAymm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcAymm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcAymm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcAymm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcAymm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcAymm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcAymm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcAymm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcAymm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcAymm .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcAymm .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcAymm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcAymm .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcAymm .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcAymm .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcAymm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcAymm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcAymm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcAymm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcAymm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcAymm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcAymm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcAymm .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcAymm .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcAymm .modal-lg,
  .cid-s26IpcAymm .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcAymm .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcAymm .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcAymm .container {
    max-width: 1140px;
  }
}
.cid-s26IpcAymm .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcAymm .container {
    max-width: 720px;
  }
}
.cid-s26IpcAymm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcAymm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcAymm .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcAymm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcAymm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcAymm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAXGV.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEAXGV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEAXGV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEAXGV .modal-content,
.cid-s26IGEAXGV .modal-dialog {
  height: auto;
}
.cid-s26IGEAXGV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEAXGV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEAXGV .form-wrapper .mbr-form .form-group,
  .cid-s26IGEAXGV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEAXGV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEAXGV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEAXGV .mbr-text {
  text-align: center;
}
.cid-s26IGEAXGV .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEAXGV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEAXGV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEAXGV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEAXGV .modal-open {
  overflow: hidden;
}
.cid-s26IGEAXGV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEAXGV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEAXGV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEAXGV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEAXGV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEAXGV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEAXGV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEAXGV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEAXGV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEAXGV .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEAXGV .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEAXGV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEAXGV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEAXGV .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEAXGV .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEAXGV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEAXGV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEAXGV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEAXGV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEAXGV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEAXGV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEAXGV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEAXGV .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEAXGV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEAXGV .modal-lg,
  .cid-s26IGEAXGV .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEAXGV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEAXGV .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEAXGV .container {
    max-width: 1140px;
  }
}
.cid-s26IGEAXGV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEAXGV .container {
    max-width: 720px;
  }
}
.cid-s26IGEAXGV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEAXGV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEAXGV .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEAXGV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEAXGV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEAXGV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAXGV .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEAXGV .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEAXGV .politicas {
    flex-direction: column;
  }
  .cid-s26IGEAXGV .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFnZ7.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFnZ7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFnZ7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFnZ7 .modal-content,
.cid-um1c3YFnZ7 .modal-dialog {
  height: auto;
}
.cid-um1c3YFnZ7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFnZ7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFnZ7 .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFnZ7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFnZ7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFnZ7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFnZ7 .mbr-text {
  text-align: center;
}
.cid-um1c3YFnZ7 .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFnZ7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFnZ7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFnZ7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFnZ7 .modal-open {
  overflow: hidden;
}
.cid-um1c3YFnZ7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFnZ7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFnZ7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFnZ7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFnZ7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFnZ7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFnZ7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFnZ7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFnZ7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFnZ7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFnZ7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFnZ7 .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFnZ7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFnZ7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFnZ7 .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFnZ7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFnZ7 .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFnZ7 .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFnZ7 .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFnZ7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFnZ7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFnZ7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFnZ7 .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFnZ7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFnZ7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFnZ7 .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFnZ7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFnZ7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFnZ7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFnZ7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFnZ7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFnZ7 .modal-lg,
  .cid-um1c3YFnZ7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFnZ7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFnZ7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFnZ7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFnZ7 .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFnZ7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFnZ7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFnZ7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFnZ7 .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFnZ7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGk4QrBT6S {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../images/tyler-nix-5k4zaomenny-unsplash-2000x300010.jpg");
}
.cid-rGk4QrBT6S .form-control,
.cid-rGk4QrBT6S .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-rGk4QrBT6S .form-control:focus,
.cid-rGk4QrBT6S .form-control:focus:focus {
  outline: none;
}
.cid-rGk4QrBT6S .form-control .container,
.cid-rGk4QrBT6S .form-control:focus .container {
  margin-top: 20em !important;
}
.cid-rGk4QrBT6S input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rGk4QrBT6S input::-moz-placeholder {
  color: #5b686b;
}
.cid-rGk4QrBT6S textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rGk4QrBT6S textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-rGk4QrBT6S .mbr-iconfont {
  font-size: 1em;
}
.cid-rGk4QrBT6S body {
  color: white !important;
}
.cid-rGk4QrBT6S .container {
  margin-top: 10em !important;
}
.cid-rGk4QrBT6S .input {
  margin-bottom: 15px;
}
.cid-rGk4QrBT6S .map {
  width: 100%;
  height: 30rem;
}
.cid-rGk4QrBT6S .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rGk4QrBT6S .map li a {
  font-color: white !important;
}
.cid-rGk4QrBT6S .mbr-text {
  color: white;
}
.cid-rGk4QrBT6S P {
  color: white !important;
}
.cid-rGk4QrBT6S .input-group-btn {
  display: block;
}
.cid-rGk4QrBT6S .google-map {
  height: 25rem;
  position: relative;
  filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
.cid-rGk4QrBT6S .google-map li {
  color: white !important;
}
.cid-rGk4QrBT6S .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rGk4QrBT6S .google-map [data-state-details] {
  color: white;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rGk4QrBT6S .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rGk4QrBT6S .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rGk4QrBT6S ul {
  list-style: none !important;
}
.cid-rGk4QrBT6S ul span {
  transition: all 200ms ease-in-out;
}
.cid-rGk4QrBT6S ul a {
  color: white !important;
  transition: all 200ms ease-in-out;
}
.cid-rGk4QrBT6S ul a:hover {
  font-weight: bold !important;
  color: #429326 !important;
}
.cid-rGk4QrBT6S ul a:hover span {
  font-weight: bold !important;
  color: #429326 !important;
}
.cid-rGk4QrBT6S .btn-primary {
  background-color: #429326 !important;
  transition: all 0.2s;
  color: #fff !important;
  border-color: #429326 !important;
}
.cid-rGk4QrBT6S .btn-primary:hover {
  border-color: #429326 !important;
  color: #429326 !important;
  background-color: transparent !important;
}
@media (max-width: 768px) {
  .cid-rGk4QrBT6S .mbr-section-subtitle,
  .cid-rGk4QrBT6S .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rGk4QrBT6S form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-rGk4QrBT6S .card {
  box-shadow: 0px 0px 7px -1px rgba(0, 0, 0, 0.75) !important;
  border-radius: 15px !important;
  box-sizing: border-box !important;
  background-color: #f4f8fa !important;
  padding: 2em !important;
}
.cid-rGk4QrBT6S H4 {
  color: #ffffff;
}
.cid-rGk4QrBT6S li {
  color: white !important;
}
.cid-rGk4QrBT6S .spinnerDiv {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #114A17;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.cid-rGRKLUSYtI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../images/mbr-1920x128611.jpg");
}
.cid-rGRKLUSYtI .header-text {
  display: -webkit-flex;
  align-items: center;
  color: #232323;
  -webkit-align-items: center;
}
.cid-rGRKLUSYtI .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rGRKLUSYtI .mbr-section-subtitle {
  color: #767676;
}
.cid-rGRKLUSYtI .panel-group {
  width: 100%;
}
.cid-rGRKLUSYtI .panel-text {
  color: #767676;
}
.cid-rGRKLUSYtI .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rGRKLUSYtI .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rGRKLUSYtI .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #cccccc;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: -webkit-flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.cid-rGRKLUSYtI .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rGRKLUSYtI .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rGRKLUSYtI .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rGRKLUSYtI .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rGRKLUSYtI .card .panel-body {
  background: #ffffff;
}
.cid-rGRKLUSYtI .sign {
  color: #232323;
}
.cid-rGRKLUSYtI .panel-collapse a {
  color: #767676 !important;
  transition: all 200ms linear;
}
.cid-rGRKLUSYtI .panel-collapse a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
.cid-rGRKLUSYtI ul li {
  color: #767676 !important;
}
.cid-rGRKLUSYtI .header-text,
.cid-rGRKLUSYtI .sign {
  color: #767676;
}
.cid-rGRKLUSYtI .mbr-section-title {
  color: #232323;
}
.cid-rWa5rA8OMn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5rA8OMn .content {
    text-align: center;
  }
  .cid-rWa5rA8OMn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5rA8OMn .img-logo img {
  height: 6rem;
}
.cid-rWa5rA8OMn .footer-title {
  color: #45a42e;
}
.cid-rWa5rA8OMn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5rA8OMn .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5rA8OMn .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5rA8OMn .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5rA8OMn .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5rA8OMn .social-list a:hover {
  opacity: 1;
}
.cid-rWa5rA8OMn .form-group {
  width: 100%;
}
.cid-rWa5rA8OMn .form-group input {
  width: 100%;
}
.cid-rWa5rA8OMn .form-group input:focus {
  outline: none;
}
.cid-rWa5rA8OMn .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5rA8OMn .form-control:focus {
  outline: none;
}
.cid-rWa5rA8OMn input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5rA8OMn input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5rA8OMn textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5rA8OMn textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5rA8OMn .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5rA8OMn .list li {
  padding-bottom: .5rem;
}
.cid-rWa5rA8OMn .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5rA8OMn .mbr-footer-list,
.cid-rWa5rA8OMn .form-text {
  color: #000;
}
.cid-rWa5rA8OMn a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5rA8OMn a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5rA8OMn .mbr-footer-list,
  .cid-rWa5rA8OMn .form-text,
  .cid-rWa5rA8OMn .footer-title,
  .cid-rWa5rA8OMn .footer-main-title,
  .cid-rWa5rA8OMn .form-text,
  .cid-rWa5rA8OMn .list {
    text-align: center !important;
  }
  .cid-rWa5rA8OMn .form-inline,
  .cid-rWa5rA8OMn .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-1j .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-1j .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-1j .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-1j .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-1j .primecase img {
  width: 30px;
}
#custom-html-1j .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-1j .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcAm91.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcAm91.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcAm91.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcAm91 .modal-content,
.cid-s26IpcAm91 .modal-dialog {
  height: auto;
}
.cid-s26IpcAm91 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcAm91 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcAm91 .form-wrapper .mbr-form .form-group,
  .cid-s26IpcAm91 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcAm91 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcAm91 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcAm91 .mbr-text {
  text-align: left;
}
.cid-s26IpcAm91 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcAm91 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcAm91 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcAm91 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcAm91 .modal-open {
  overflow: hidden;
}
.cid-s26IpcAm91 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcAm91 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcAm91 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcAm91 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcAm91 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcAm91 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcAm91 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcAm91 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcAm91 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcAm91 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcAm91 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcAm91 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcAm91 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcAm91 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcAm91 .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcAm91 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcAm91 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcAm91 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcAm91 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcAm91 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcAm91 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcAm91 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcAm91 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcAm91 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcAm91 .modal-lg,
  .cid-s26IpcAm91 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcAm91 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcAm91 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcAm91 .container {
    max-width: 1140px;
  }
}
.cid-s26IpcAm91 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcAm91 .container {
    max-width: 720px;
  }
}
.cid-s26IpcAm91 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcAm91 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcAm91 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcAm91 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcAm91 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcAm91 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAJhU.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEAJhU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEAJhU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEAJhU .modal-content,
.cid-s26IGEAJhU .modal-dialog {
  height: auto;
}
.cid-s26IGEAJhU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEAJhU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEAJhU .form-wrapper .mbr-form .form-group,
  .cid-s26IGEAJhU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEAJhU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEAJhU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEAJhU .mbr-text {
  text-align: center;
}
.cid-s26IGEAJhU .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEAJhU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEAJhU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEAJhU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEAJhU .modal-open {
  overflow: hidden;
}
.cid-s26IGEAJhU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEAJhU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEAJhU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEAJhU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEAJhU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEAJhU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEAJhU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEAJhU .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEAJhU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEAJhU .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEAJhU .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEAJhU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEAJhU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEAJhU .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEAJhU .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEAJhU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEAJhU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEAJhU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEAJhU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEAJhU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEAJhU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEAJhU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEAJhU .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEAJhU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEAJhU .modal-lg,
  .cid-s26IGEAJhU .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEAJhU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEAJhU .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEAJhU .container {
    max-width: 1140px;
  }
}
.cid-s26IGEAJhU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEAJhU .container {
    max-width: 720px;
  }
}
.cid-s26IGEAJhU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEAJhU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEAJhU .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEAJhU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEAJhU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEAJhU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAJhU .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEAJhU .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEAJhU .politicas {
    flex-direction: column;
  }
  .cid-s26IGEAJhU .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFxWu.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFxWu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFxWu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFxWu .modal-content,
.cid-um1c3YFxWu .modal-dialog {
  height: auto;
}
.cid-um1c3YFxWu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFxWu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFxWu .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFxWu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFxWu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFxWu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFxWu .mbr-text {
  text-align: center;
}
.cid-um1c3YFxWu .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFxWu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFxWu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFxWu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFxWu .modal-open {
  overflow: hidden;
}
.cid-um1c3YFxWu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFxWu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFxWu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFxWu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFxWu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFxWu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFxWu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFxWu .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFxWu .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFxWu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFxWu .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFxWu .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFxWu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFxWu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFxWu .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFxWu .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFxWu .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFxWu .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFxWu .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFxWu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFxWu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFxWu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFxWu .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFxWu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFxWu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFxWu .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFxWu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFxWu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFxWu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFxWu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFxWu .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFxWu .modal-lg,
  .cid-um1c3YFxWu .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFxWu .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFxWu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFxWu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFxWu .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFxWu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFxWu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFxWu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFxWu .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFxWu .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGe771cuaR {
  background-image: url("../../images/travel-3-2000x112513.jpg");
}
.cid-rGe771cuaR .mbr-overlay {
  background: #002a23;
}
.cid-rGe771cuaR .mbr-section-title {
  letter-spacing: -1px;
  color: #232323;
}
.cid-rGe771cuaR H4 {
  color: #232323;
}
.cid-rGe8gHQlv3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGe8gHQlv3 H3 {
  text-align: center;
}
.cid-rGurGbsgDr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/seguro-viagem-784x58614.png");
}
.cid-rGurGbsgDr .mbr-text,
.cid-rGurGbsgDr .mbr-section-subtitle {
  color: #767676;
}
.cid-rGurGbsgDr .card-title {
  color: #66458e;
}
.cid-rGurGbsgDr .card .card-img span {
  color: #ffffff;
  font-size: 60px;
  background: linear-gradient(45deg, #ffffff, #45a42e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rGurGbsgDr .mbr-section-subtitle,
  .cid-rGurGbsgDr .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGurGbsgDr .card .card-img span {
    background: none;
  }
}
.cid-rGurGbsgDr .mbr-section-title {
  color: #ffffff;
}
.cid-rGurGbsgDr .mbr-text {
  color: #ffffff;
}
.cid-rGurGbsgDr .card-title,
.cid-rGurGbsgDr .card-img {
  color: #ffffff;
}
.cid-rWa5wLzxtU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5wLzxtU .content {
    text-align: center;
  }
  .cid-rWa5wLzxtU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5wLzxtU .img-logo img {
  height: 6rem;
}
.cid-rWa5wLzxtU .footer-title {
  color: #45a42e;
}
.cid-rWa5wLzxtU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5wLzxtU .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5wLzxtU .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5wLzxtU .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5wLzxtU .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5wLzxtU .social-list a:hover {
  opacity: 1;
}
.cid-rWa5wLzxtU .form-group {
  width: 100%;
}
.cid-rWa5wLzxtU .form-group input {
  width: 100%;
}
.cid-rWa5wLzxtU .form-group input:focus {
  outline: none;
}
.cid-rWa5wLzxtU .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5wLzxtU .form-control:focus {
  outline: none;
}
.cid-rWa5wLzxtU input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5wLzxtU input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5wLzxtU textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5wLzxtU textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5wLzxtU .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5wLzxtU .list li {
  padding-bottom: .5rem;
}
.cid-rWa5wLzxtU .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5wLzxtU .mbr-footer-list,
.cid-rWa5wLzxtU .form-text {
  color: #000;
}
.cid-rWa5wLzxtU a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5wLzxtU a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5wLzxtU .mbr-footer-list,
  .cid-rWa5wLzxtU .form-text,
  .cid-rWa5wLzxtU .footer-title,
  .cid-rWa5wLzxtU .footer-main-title,
  .cid-rWa5wLzxtU .form-text,
  .cid-rWa5wLzxtU .list {
    text-align: center !important;
  }
  .cid-rWa5wLzxtU .form-inline,
  .cid-rWa5wLzxtU .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-2a .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-2a .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-2a .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-2a .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-2a .primecase img {
  width: 30px;
}
#custom-html-2a .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-2a .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcBIP4.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcBIP4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcBIP4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcBIP4 .modal-content,
.cid-s26IpcBIP4 .modal-dialog {
  height: auto;
}
.cid-s26IpcBIP4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcBIP4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcBIP4 .form-wrapper .mbr-form .form-group,
  .cid-s26IpcBIP4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcBIP4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcBIP4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcBIP4 .mbr-text {
  text-align: left;
}
.cid-s26IpcBIP4 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcBIP4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcBIP4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcBIP4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcBIP4 .modal-open {
  overflow: hidden;
}
.cid-s26IpcBIP4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcBIP4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcBIP4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcBIP4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcBIP4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcBIP4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcBIP4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcBIP4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcBIP4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcBIP4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcBIP4 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcBIP4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcBIP4 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcBIP4 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcBIP4 .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcBIP4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcBIP4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcBIP4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcBIP4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcBIP4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcBIP4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcBIP4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcBIP4 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcBIP4 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcBIP4 .modal-lg,
  .cid-s26IpcBIP4 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcBIP4 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcBIP4 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcBIP4 .container {
    max-width: 1140px;
  }
}
.cid-s26IpcBIP4 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcBIP4 .container {
    max-width: 720px;
  }
}
.cid-s26IpcBIP4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcBIP4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcBIP4 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcBIP4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcBIP4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcBIP4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEA43C.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEA43C.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEA43C.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEA43C .modal-content,
.cid-s26IGEA43C .modal-dialog {
  height: auto;
}
.cid-s26IGEA43C .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEA43C .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEA43C .form-wrapper .mbr-form .form-group,
  .cid-s26IGEA43C .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEA43C .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEA43C .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEA43C .mbr-text {
  text-align: center;
}
.cid-s26IGEA43C .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEA43C .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEA43C .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEA43C .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEA43C .modal-open {
  overflow: hidden;
}
.cid-s26IGEA43C .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEA43C .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEA43C .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEA43C .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEA43C .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEA43C .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEA43C .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEA43C .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEA43C .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEA43C .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEA43C .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEA43C .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEA43C .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEA43C .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEA43C .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEA43C .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEA43C .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEA43C .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEA43C .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEA43C .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEA43C .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEA43C .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEA43C .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEA43C .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEA43C .modal-lg,
  .cid-s26IGEA43C .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEA43C .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEA43C .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEA43C .container {
    max-width: 1140px;
  }
}
.cid-s26IGEA43C .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEA43C .container {
    max-width: 720px;
  }
}
.cid-s26IGEA43C .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEA43C .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEA43C .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEA43C .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEA43C .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEA43C .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEA43C .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEA43C .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEA43C .politicas {
    flex-direction: column;
  }
  .cid-s26IGEA43C .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFrVJ.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFrVJ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFrVJ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFrVJ .modal-content,
.cid-um1c3YFrVJ .modal-dialog {
  height: auto;
}
.cid-um1c3YFrVJ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFrVJ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFrVJ .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFrVJ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFrVJ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFrVJ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFrVJ .mbr-text {
  text-align: center;
}
.cid-um1c3YFrVJ .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFrVJ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFrVJ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFrVJ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFrVJ .modal-open {
  overflow: hidden;
}
.cid-um1c3YFrVJ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFrVJ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFrVJ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFrVJ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFrVJ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFrVJ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFrVJ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFrVJ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFrVJ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFrVJ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFrVJ .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFrVJ .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFrVJ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFrVJ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFrVJ .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFrVJ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFrVJ .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFrVJ .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFrVJ .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFrVJ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFrVJ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFrVJ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFrVJ .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFrVJ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFrVJ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFrVJ .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFrVJ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFrVJ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFrVJ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFrVJ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFrVJ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFrVJ .modal-lg,
  .cid-um1c3YFrVJ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFrVJ .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFrVJ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFrVJ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFrVJ .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFrVJ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFrVJ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFrVJ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFrVJ .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFrVJ .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGjcWMTeur {
  padding-top: 255px;
  padding-bottom: 150px;
  background-image: url("../../images/mbr-1920x72115.jpg");
}
.cid-rGjcWMTeur .mbr-overlay {
  background: #002a23;
}
.cid-rGjcWMTeur .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGjcWMTeur .mbr-section-title DIV {
  text-align: center;
}
.cid-rGjcWMTeur H4 {
  text-align: center;
}
.cid-rGjcWMTeur .mbr-text,
.cid-rGjcWMTeur .mbr-section-btn {
  text-align: center;
}
.cid-rGjcWNRjMM {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rGjcWNRjMM .mbr-text {
  color: #232323;
}
.cid-rGjdHOoqLz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGjdHOoqLz H4 {
  color: #429326;
}
.cid-rGjdHOoqLz .mbr-text {
  color: #232323;
}
@media (min-width: 992px) {
  .cid-rGjdHOoqLz .mbr-figure {
    padding-right: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-rGjdHOoqLz .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rGv18lV0wZ {
  padding-top: 90px;
  padding-bottom: 45px;
  background-image: url("../../images/mbr-1-1920x128016.jpg");
}
.cid-rGv18lV0wZ .mbr-section-title {
  text-align: center;
}
.cid-rGv18lV0wZ .mbr-section-subtitle {
  text-align: left;
}
.cid-rGv18lV0wZ .mbr-section-title,
.cid-rGv18lV0wZ .mbr-section-btn {
  text-align: left;
  color: #45a42e;
}
.cid-rGv18lV0wZ .mbr-text {
  text-align: left;
  color: #efefef;
}
.cid-rGv18lV0wZ H4 {
  color: #efefef;
}
.cid-rGjfCuo6Bk {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rGjfCuo6Bk H4 {
  color: #429326;
}
.cid-rGjfCuo6Bk .mbr-text {
  color: #767676;
}
.cid-rGjfUjnLeg {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rGjfUjnLeg .counter-container {
  color: #767676;
}
.cid-rGjfUjnLeg .counter-container ul {
  margin-bottom: 0;
}
.cid-rGjfUjnLeg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rGjfUjnLeg .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #000000;
  background: #bbbbbb;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #bbbbbb, #002a23);
  background: none;
  border: 1px solid #bbbbbb;
  color: #bbbbbb;
  content: '✓';
}
.cid-rGjfUjnLeg .mbr-text {
  color: #4289a7;
}
.cid-rGoFb5HsyN {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-rGoFb5HsyN .header-text {
  display: -webkit-flex;
  align-items: center;
  color: #232323;
  -webkit-align-items: center;
}
.cid-rGoFb5HsyN .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rGoFb5HsyN .mbr-section-subtitle {
  color: #767676;
}
.cid-rGoFb5HsyN .panel-group {
  width: 100%;
}
.cid-rGoFb5HsyN .panel-text {
  color: #767676;
}
.cid-rGoFb5HsyN .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rGoFb5HsyN .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rGoFb5HsyN .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #cccccc;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: -webkit-flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.cid-rGoFb5HsyN .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rGoFb5HsyN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rGoFb5HsyN .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rGoFb5HsyN .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rGoFb5HsyN .card .panel-body {
  background: #ffffff;
}
.cid-rGoFb5HsyN .sign {
  color: #232323;
}
.cid-rGoFb5HsyN .mbr-section-title {
  color: #45a42e;
}
.cid-rGoFb5HsyN .header-text,
.cid-rGoFb5HsyN .sign {
  color: #767676;
}
.cid-rGuwhM6pXy {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuwhM6pXy .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuwhM6pXy .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa48nQMd7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa48nQMd7 .content {
    text-align: center;
  }
  .cid-rWa48nQMd7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa48nQMd7 .img-logo img {
  height: 6rem;
}
.cid-rWa48nQMd7 .footer-title {
  color: #45a42e;
}
.cid-rWa48nQMd7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa48nQMd7 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa48nQMd7 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa48nQMd7 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa48nQMd7 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa48nQMd7 .social-list a:hover {
  opacity: 1;
}
.cid-rWa48nQMd7 .form-group {
  width: 100%;
}
.cid-rWa48nQMd7 .form-group input {
  width: 100%;
}
.cid-rWa48nQMd7 .form-group input:focus {
  outline: none;
}
.cid-rWa48nQMd7 .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa48nQMd7 .form-control:focus {
  outline: none;
}
.cid-rWa48nQMd7 input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa48nQMd7 input::-moz-placeholder {
  color: #767676;
}
.cid-rWa48nQMd7 textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa48nQMd7 textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa48nQMd7 .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa48nQMd7 .list li {
  padding-bottom: .5rem;
}
.cid-rWa48nQMd7 .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa48nQMd7 .mbr-footer-list,
.cid-rWa48nQMd7 .form-text {
  color: #000;
}
.cid-rWa48nQMd7 a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa48nQMd7 a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa48nQMd7 .mbr-footer-list,
  .cid-rWa48nQMd7 .form-text,
  .cid-rWa48nQMd7 .footer-title,
  .cid-rWa48nQMd7 .footer-main-title,
  .cid-rWa48nQMd7 .form-text,
  .cid-rWa48nQMd7 .list {
    text-align: center !important;
  }
  .cid-rWa48nQMd7 .form-inline,
  .cid-rWa48nQMd7 .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-2z .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-2z .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-2z .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-2z .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-2z .primecase img {
  width: 30px;
}
#custom-html-2z .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-2z .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcBgj4.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcBgj4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcBgj4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcBgj4 .modal-content,
.cid-s26IpcBgj4 .modal-dialog {
  height: auto;
}
.cid-s26IpcBgj4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcBgj4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcBgj4 .form-wrapper .mbr-form .form-group,
  .cid-s26IpcBgj4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcBgj4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcBgj4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcBgj4 .mbr-text {
  text-align: left;
}
.cid-s26IpcBgj4 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcBgj4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcBgj4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcBgj4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcBgj4 .modal-open {
  overflow: hidden;
}
.cid-s26IpcBgj4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcBgj4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcBgj4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcBgj4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcBgj4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcBgj4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcBgj4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcBgj4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcBgj4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcBgj4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcBgj4 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcBgj4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcBgj4 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcBgj4 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcBgj4 .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcBgj4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcBgj4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcBgj4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcBgj4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcBgj4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcBgj4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcBgj4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcBgj4 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcBgj4 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcBgj4 .modal-lg,
  .cid-s26IpcBgj4 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcBgj4 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcBgj4 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcBgj4 .container {
    max-width: 1140px;
  }
}
.cid-s26IpcBgj4 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcBgj4 .container {
    max-width: 720px;
  }
}
.cid-s26IpcBgj4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcBgj4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcBgj4 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcBgj4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcBgj4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcBgj4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAA51.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEAA51.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEAA51.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEAA51 .modal-content,
.cid-s26IGEAA51 .modal-dialog {
  height: auto;
}
.cid-s26IGEAA51 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEAA51 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEAA51 .form-wrapper .mbr-form .form-group,
  .cid-s26IGEAA51 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEAA51 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEAA51 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEAA51 .mbr-text {
  text-align: center;
}
.cid-s26IGEAA51 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEAA51 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEAA51 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEAA51 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEAA51 .modal-open {
  overflow: hidden;
}
.cid-s26IGEAA51 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEAA51 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEAA51 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEAA51 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEAA51 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEAA51 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEAA51 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEAA51 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEAA51 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEAA51 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEAA51 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEAA51 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEAA51 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEAA51 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEAA51 .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEAA51 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEAA51 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEAA51 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEAA51 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEAA51 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEAA51 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEAA51 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEAA51 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEAA51 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEAA51 .modal-lg,
  .cid-s26IGEAA51 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEAA51 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEAA51 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEAA51 .container {
    max-width: 1140px;
  }
}
.cid-s26IGEAA51 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEAA51 .container {
    max-width: 720px;
  }
}
.cid-s26IGEAA51 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEAA51 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEAA51 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEAA51 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEAA51 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEAA51 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAA51 .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEAA51 .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEAA51 .politicas {
    flex-direction: column;
  }
  .cid-s26IGEAA51 .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFTKg.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFTKg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFTKg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFTKg .modal-content,
.cid-um1c3YFTKg .modal-dialog {
  height: auto;
}
.cid-um1c3YFTKg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFTKg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFTKg .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFTKg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFTKg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFTKg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFTKg .mbr-text {
  text-align: center;
}
.cid-um1c3YFTKg .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFTKg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFTKg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFTKg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFTKg .modal-open {
  overflow: hidden;
}
.cid-um1c3YFTKg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFTKg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFTKg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFTKg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFTKg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFTKg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFTKg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFTKg .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFTKg .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFTKg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFTKg .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFTKg .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFTKg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFTKg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFTKg .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFTKg .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFTKg .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFTKg .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFTKg .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFTKg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFTKg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFTKg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFTKg .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFTKg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFTKg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFTKg .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFTKg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFTKg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFTKg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFTKg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFTKg .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFTKg .modal-lg,
  .cid-um1c3YFTKg .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFTKg .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFTKg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFTKg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFTKg .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFTKg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFTKg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFTKg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFTKg .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFTKg .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGuTOQ84T6 {
  padding-top: 285px;
  padding-bottom: 300px;
  background-image: url("../../images/mbr-1920x105617.jpg");
}
.cid-rGuTOQ84T6 .mbr-overlay {
  background: #002a23;
}
.cid-rGuTOQ84T6 .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGuTZyhj4S {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rGuTZyhj4S .header-text {
  display: -webkit-flex;
  align-items: center;
  color: #232323;
  -webkit-align-items: center;
}
.cid-rGuTZyhj4S .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rGuTZyhj4S .mbr-section-subtitle {
  color: #767676;
}
.cid-rGuTZyhj4S .panel-group {
  width: 100%;
}
.cid-rGuTZyhj4S .panel-text {
  color: #767676;
}
.cid-rGuTZyhj4S .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rGuTZyhj4S .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rGuTZyhj4S .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #cccccc;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: -webkit-flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.cid-rGuTZyhj4S .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rGuTZyhj4S .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rGuTZyhj4S .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rGuTZyhj4S .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rGuTZyhj4S .card .panel-body {
  background: #ffffff;
}
.cid-rGuTZyhj4S .sign {
  color: #232323;
}
.cid-rGuTZyhj4S .panel-collapse a {
  color: #767676 !important;
  transition: all 200ms linear;
}
.cid-rGuTZyhj4S .panel-collapse a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
.cid-rGuTZyhj4S ul li {
  color: #767676 !important;
}
.cid-rGuTZyhj4S .header-text,
.cid-rGuTZyhj4S .sign {
  color: #767676;
}
.cid-rGuTOTBeZZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuTOTBeZZ .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuTOTBeZZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa5n5p7XX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5n5p7XX .content {
    text-align: center;
  }
  .cid-rWa5n5p7XX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5n5p7XX .img-logo img {
  height: 6rem;
}
.cid-rWa5n5p7XX .footer-title {
  color: #45a42e;
}
.cid-rWa5n5p7XX .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5n5p7XX .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5n5p7XX .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5n5p7XX .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5n5p7XX .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5n5p7XX .social-list a:hover {
  opacity: 1;
}
.cid-rWa5n5p7XX .form-group {
  width: 100%;
}
.cid-rWa5n5p7XX .form-group input {
  width: 100%;
}
.cid-rWa5n5p7XX .form-group input:focus {
  outline: none;
}
.cid-rWa5n5p7XX .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5n5p7XX .form-control:focus {
  outline: none;
}
.cid-rWa5n5p7XX input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5n5p7XX input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5n5p7XX textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5n5p7XX textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5n5p7XX .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5n5p7XX .list li {
  padding-bottom: .5rem;
}
.cid-rWa5n5p7XX .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5n5p7XX .mbr-footer-list,
.cid-rWa5n5p7XX .form-text {
  color: #000;
}
.cid-rWa5n5p7XX a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5n5p7XX a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5n5p7XX .mbr-footer-list,
  .cid-rWa5n5p7XX .form-text,
  .cid-rWa5n5p7XX .footer-title,
  .cid-rWa5n5p7XX .footer-main-title,
  .cid-rWa5n5p7XX .form-text,
  .cid-rWa5n5p7XX .list {
    text-align: center !important;
  }
  .cid-rWa5n5p7XX .form-inline,
  .cid-rWa5n5p7XX .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-51 .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-51 .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-51 .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-51 .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-51 .primecase img {
  width: 30px;
}
#custom-html-51 .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-51 .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcBjfV.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcBjfV.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcBjfV.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcBjfV .modal-content,
.cid-s26IpcBjfV .modal-dialog {
  height: auto;
}
.cid-s26IpcBjfV .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcBjfV .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcBjfV .form-wrapper .mbr-form .form-group,
  .cid-s26IpcBjfV .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcBjfV .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcBjfV .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcBjfV .mbr-text {
  text-align: left;
}
.cid-s26IpcBjfV .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcBjfV .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcBjfV .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcBjfV .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcBjfV .modal-open {
  overflow: hidden;
}
.cid-s26IpcBjfV .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcBjfV .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcBjfV .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcBjfV .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcBjfV .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcBjfV .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcBjfV .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcBjfV .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcBjfV .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcBjfV .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcBjfV .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcBjfV .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcBjfV .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcBjfV .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcBjfV .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcBjfV .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcBjfV .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcBjfV .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcBjfV .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcBjfV .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcBjfV .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcBjfV .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcBjfV .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcBjfV .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcBjfV .modal-lg,
  .cid-s26IpcBjfV .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcBjfV .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcBjfV .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcBjfV .container {
    max-width: 1140px;
  }
}
.cid-s26IpcBjfV .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcBjfV .container {
    max-width: 720px;
  }
}
.cid-s26IpcBjfV .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcBjfV .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcBjfV .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcBjfV .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcBjfV .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcBjfV .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEB6Aw.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEB6Aw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEB6Aw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEB6Aw .modal-content,
.cid-s26IGEB6Aw .modal-dialog {
  height: auto;
}
.cid-s26IGEB6Aw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEB6Aw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEB6Aw .form-wrapper .mbr-form .form-group,
  .cid-s26IGEB6Aw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEB6Aw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEB6Aw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEB6Aw .mbr-text {
  text-align: center;
}
.cid-s26IGEB6Aw .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEB6Aw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEB6Aw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEB6Aw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEB6Aw .modal-open {
  overflow: hidden;
}
.cid-s26IGEB6Aw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEB6Aw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEB6Aw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEB6Aw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEB6Aw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEB6Aw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEB6Aw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEB6Aw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEB6Aw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEB6Aw .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEB6Aw .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEB6Aw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEB6Aw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEB6Aw .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEB6Aw .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEB6Aw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEB6Aw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEB6Aw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEB6Aw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEB6Aw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEB6Aw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEB6Aw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEB6Aw .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEB6Aw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEB6Aw .modal-lg,
  .cid-s26IGEB6Aw .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEB6Aw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEB6Aw .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEB6Aw .container {
    max-width: 1140px;
  }
}
.cid-s26IGEB6Aw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEB6Aw .container {
    max-width: 720px;
  }
}
.cid-s26IGEB6Aw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEB6Aw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEB6Aw .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEB6Aw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEB6Aw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEB6Aw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEB6Aw .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEB6Aw .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEB6Aw .politicas {
    flex-direction: column;
  }
  .cid-s26IGEB6Aw .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFQ9M.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFQ9M.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFQ9M.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFQ9M .modal-content,
.cid-um1c3YFQ9M .modal-dialog {
  height: auto;
}
.cid-um1c3YFQ9M .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFQ9M .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFQ9M .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFQ9M .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFQ9M .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFQ9M .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFQ9M .mbr-text {
  text-align: center;
}
.cid-um1c3YFQ9M .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFQ9M .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFQ9M .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFQ9M .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFQ9M .modal-open {
  overflow: hidden;
}
.cid-um1c3YFQ9M .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFQ9M .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFQ9M .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFQ9M .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFQ9M .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFQ9M .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFQ9M .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFQ9M .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFQ9M .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFQ9M .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFQ9M .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFQ9M .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFQ9M .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFQ9M .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFQ9M .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFQ9M .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFQ9M .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFQ9M .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFQ9M .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFQ9M .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFQ9M .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFQ9M .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFQ9M .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFQ9M .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFQ9M .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFQ9M .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFQ9M .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFQ9M .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFQ9M .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFQ9M .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFQ9M .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFQ9M .modal-lg,
  .cid-um1c3YFQ9M .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFQ9M .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFQ9M .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFQ9M .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFQ9M .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFQ9M .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFQ9M .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFQ9M .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFQ9M .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFQ9M .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGuWIVgfOy {
  padding-top: 285px;
  padding-bottom: 300px;
  background-image: url("../../images/mbr-1920x105617.jpg");
}
.cid-rGuWIVgfOy .mbr-overlay {
  background: #002a23;
}
.cid-rGuWIVgfOy .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rGuXah1U7G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../images/0418.html");
}
.cid-rGuXah1U7G .header-text {
  display: -webkit-flex;
  align-items: center;
  color: #232323;
  -webkit-align-items: center;
}
.cid-rGuXah1U7G .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rGuXah1U7G .mbr-section-subtitle {
  color: #767676;
}
.cid-rGuXah1U7G .panel-group {
  width: 100%;
}
.cid-rGuXah1U7G .panel-text {
  color: #767676;
}
.cid-rGuXah1U7G .card {
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-rGuXah1U7G .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rGuXah1U7G .card .card-header a.panel-title {
  justify-content: space-between;
  transition: all .3s;
  background-color: #efefef;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: -webkit-flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  -webkit-justify-content: space-between;
  -webkit-align-items: center;
}
.cid-rGuXah1U7G .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-rGuXah1U7G .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rGuXah1U7G .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-rGuXah1U7G .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rGuXah1U7G .card .panel-body {
  background: #ffffff;
}
.cid-rGuXah1U7G .sign {
  color: #232323;
}
.cid-rGuXah1U7G .panel-collapse a {
  color: #767676 !important;
  transition: all 200ms linear;
}
.cid-rGuXah1U7G .panel-collapse a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
.cid-rGuXah1U7G ul li {
  color: #767676 !important;
}
.cid-rGuXah1U7G .header-text,
.cid-rGuXah1U7G .sign {
  color: #767676;
}
.cid-rGuWIYuNkU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuWIYuNkU .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuWIYuNkU .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa5oPDtwu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5oPDtwu .content {
    text-align: center;
  }
  .cid-rWa5oPDtwu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5oPDtwu .img-logo img {
  height: 6rem;
}
.cid-rWa5oPDtwu .footer-title {
  color: #45a42e;
}
.cid-rWa5oPDtwu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5oPDtwu .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5oPDtwu .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5oPDtwu .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5oPDtwu .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5oPDtwu .social-list a:hover {
  opacity: 1;
}
.cid-rWa5oPDtwu .form-group {
  width: 100%;
}
.cid-rWa5oPDtwu .form-group input {
  width: 100%;
}
.cid-rWa5oPDtwu .form-group input:focus {
  outline: none;
}
.cid-rWa5oPDtwu .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5oPDtwu .form-control:focus {
  outline: none;
}
.cid-rWa5oPDtwu input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5oPDtwu input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5oPDtwu textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5oPDtwu textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5oPDtwu .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5oPDtwu .list li {
  padding-bottom: .5rem;
}
.cid-rWa5oPDtwu .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5oPDtwu .mbr-footer-list,
.cid-rWa5oPDtwu .form-text {
  color: #000;
}
.cid-rWa5oPDtwu a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5oPDtwu a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5oPDtwu .mbr-footer-list,
  .cid-rWa5oPDtwu .form-text,
  .cid-rWa5oPDtwu .footer-title,
  .cid-rWa5oPDtwu .footer-main-title,
  .cid-rWa5oPDtwu .form-text,
  .cid-rWa5oPDtwu .list {
    text-align: center !important;
  }
  .cid-rWa5oPDtwu .form-inline,
  .cid-rWa5oPDtwu .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-58 .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-58 .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-58 .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-58 .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-58 .primecase img {
  width: 30px;
}
#custom-html-58 .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-58 .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcCuUY.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcCuUY.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcCuUY.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcCuUY .modal-content,
.cid-s26IpcCuUY .modal-dialog {
  height: auto;
}
.cid-s26IpcCuUY .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcCuUY .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcCuUY .form-wrapper .mbr-form .form-group,
  .cid-s26IpcCuUY .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcCuUY .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcCuUY .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcCuUY .mbr-text {
  text-align: left;
}
.cid-s26IpcCuUY .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcCuUY .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcCuUY .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcCuUY .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcCuUY .modal-open {
  overflow: hidden;
}
.cid-s26IpcCuUY .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcCuUY .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcCuUY .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcCuUY .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcCuUY .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcCuUY .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcCuUY .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcCuUY .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcCuUY .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcCuUY .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcCuUY .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcCuUY .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcCuUY .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcCuUY .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcCuUY .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcCuUY .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcCuUY .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcCuUY .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcCuUY .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcCuUY .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcCuUY .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcCuUY .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcCuUY .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcCuUY .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcCuUY .modal-lg,
  .cid-s26IpcCuUY .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcCuUY .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcCuUY .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcCuUY .container {
    max-width: 1140px;
  }
}
.cid-s26IpcCuUY .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcCuUY .container {
    max-width: 720px;
  }
}
.cid-s26IpcCuUY .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcCuUY .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcCuUY .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcCuUY .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcCuUY .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcCuUY .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBbfh.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEBbfh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEBbfh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEBbfh .modal-content,
.cid-s26IGEBbfh .modal-dialog {
  height: auto;
}
.cid-s26IGEBbfh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEBbfh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEBbfh .form-wrapper .mbr-form .form-group,
  .cid-s26IGEBbfh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEBbfh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEBbfh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEBbfh .mbr-text {
  text-align: center;
}
.cid-s26IGEBbfh .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEBbfh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEBbfh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEBbfh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEBbfh .modal-open {
  overflow: hidden;
}
.cid-s26IGEBbfh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEBbfh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEBbfh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEBbfh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEBbfh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEBbfh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEBbfh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEBbfh .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEBbfh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEBbfh .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEBbfh .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEBbfh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEBbfh .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEBbfh .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEBbfh .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEBbfh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEBbfh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEBbfh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEBbfh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEBbfh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEBbfh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEBbfh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEBbfh .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEBbfh .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEBbfh .modal-lg,
  .cid-s26IGEBbfh .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEBbfh .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEBbfh .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEBbfh .container {
    max-width: 1140px;
  }
}
.cid-s26IGEBbfh .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEBbfh .container {
    max-width: 720px;
  }
}
.cid-s26IGEBbfh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEBbfh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEBbfh .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEBbfh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEBbfh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEBbfh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBbfh .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEBbfh .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEBbfh .politicas {
    flex-direction: column;
  }
  .cid-s26IGEBbfh .politicas a {
    width: 90%;
  }
}
.cid-um1c3YFgN8.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YFgN8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YFgN8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YFgN8 .modal-content,
.cid-um1c3YFgN8 .modal-dialog {
  height: auto;
}
.cid-um1c3YFgN8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YFgN8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YFgN8 .form-wrapper .mbr-form .form-group,
  .cid-um1c3YFgN8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YFgN8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YFgN8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YFgN8 .mbr-text {
  text-align: center;
}
.cid-um1c3YFgN8 .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YFgN8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YFgN8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YFgN8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YFgN8 .modal-open {
  overflow: hidden;
}
.cid-um1c3YFgN8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YFgN8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YFgN8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YFgN8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YFgN8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YFgN8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YFgN8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YFgN8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YFgN8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YFgN8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YFgN8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YFgN8 .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YFgN8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YFgN8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFgN8 .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YFgN8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YFgN8 .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YFgN8 .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YFgN8 .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YFgN8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YFgN8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YFgN8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFgN8 .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YFgN8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YFgN8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YFgN8 .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YFgN8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YFgN8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YFgN8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YFgN8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YFgN8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YFgN8 .modal-lg,
  .cid-um1c3YFgN8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YFgN8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YFgN8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YFgN8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YFgN8 .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YFgN8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YFgN8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YFgN8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YFgN8 .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YFgN8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rN6yVi3Ked {
  padding-top: 255px;
  padding-bottom: 195px;
  background-image: url("../../images/mbr-319.jpg");
}
.cid-rN6yVi3Ked .mbr-overlay {
  background: #002a23;
}
.cid-rN6yVi3Ked .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rN6yViY31L {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rN6yViY31L H4 {
  color: #767676;
}
.cid-rN6yViY31L .mbr-text {
  color: #767676;
}
.cid-rN6BuHi16a {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../images/mbr-520.jpg");
}
.cid-rN6BuHi16a .mbr-text,
.cid-rN6BuHi16a .mbr-section-subtitle {
  color: #767676;
}
.cid-rN6BuHi16a .card-title {
  color: #66458e;
}
.cid-rN6BuHi16a .card .card-img span {
  color: #007562;
  font-size: 60px;
  background: linear-gradient(45deg, #007562, #032336);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rN6BuHi16a .mbr-section-subtitle,
  .cid-rN6BuHi16a .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rN6BuHi16a .card .card-img span {
    background: none;
  }
}
.cid-rN6BuHi16a .mbr-text {
  text-align: center;
}
.cid-rN6BuHi16a .card-title,
.cid-rN6BuHi16a .card-img {
  text-align: center;
  color: #00332a;
}
.cid-rN6BuHi16a .mbr-section-title {
  color: #767676;
}
.cid-rN6KvkXYce {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rN6KvkXYce H4 {
  color: #767676;
}
.cid-rN6KvkXYce .mbr-text {
  color: #767676;
}
.cid-rN6OtRgISR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../images/mbr-621.jpg");
}
.cid-rN6OtRgISR .mbr-text,
.cid-rN6OtRgISR .mbr-section-subtitle {
  color: #767676;
}
.cid-rN6OtRgISR .card-title {
  color: #66458e;
}
.cid-rN6OtRgISR .card .card-img span {
  color: #007562;
  font-size: 60px;
  background: linear-gradient(45deg, #007562, #032336);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-rN6OtRgISR .mbr-section-subtitle,
  .cid-rN6OtRgISR .mbr-section-title {
    text-align: center !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rN6OtRgISR .card .card-img span {
    background: none;
  }
}
.cid-rN6OtRgISR .mbr-text {
  text-align: center;
}
.cid-rN6OtRgISR .card-title,
.cid-rN6OtRgISR .card-img {
  text-align: center;
  color: #00332a;
}
.cid-rN6PcxBCeM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-rN6PcxBCeM H4 {
  color: #767676;
}
.cid-rN6PcxBCeM .mbr-text {
  color: #767676;
}
.cid-rN6yVldc2Q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rN6yVldc2Q .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rN6yVldc2Q .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa56JNu0v {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa56JNu0v .content {
    text-align: center;
  }
  .cid-rWa56JNu0v .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa56JNu0v .img-logo img {
  height: 6rem;
}
.cid-rWa56JNu0v .footer-title {
  color: #45a42e;
}
.cid-rWa56JNu0v .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa56JNu0v .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa56JNu0v .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa56JNu0v .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa56JNu0v .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa56JNu0v .social-list a:hover {
  opacity: 1;
}
.cid-rWa56JNu0v .form-group {
  width: 100%;
}
.cid-rWa56JNu0v .form-group input {
  width: 100%;
}
.cid-rWa56JNu0v .form-group input:focus {
  outline: none;
}
.cid-rWa56JNu0v .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa56JNu0v .form-control:focus {
  outline: none;
}
.cid-rWa56JNu0v input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa56JNu0v input::-moz-placeholder {
  color: #767676;
}
.cid-rWa56JNu0v textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa56JNu0v textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa56JNu0v .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa56JNu0v .list li {
  padding-bottom: .5rem;
}
.cid-rWa56JNu0v .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa56JNu0v .mbr-footer-list,
.cid-rWa56JNu0v .form-text {
  color: #000;
}
.cid-rWa56JNu0v a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa56JNu0v a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa56JNu0v .mbr-footer-list,
  .cid-rWa56JNu0v .form-text,
  .cid-rWa56JNu0v .footer-title,
  .cid-rWa56JNu0v .footer-main-title,
  .cid-rWa56JNu0v .form-text,
  .cid-rWa56JNu0v .list {
    text-align: center !important;
  }
  .cid-rWa56JNu0v .form-inline,
  .cid-rWa56JNu0v .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-6v .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-6v .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-6v .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-6v .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-6v .primecase img {
  width: 30px;
}
#custom-html-6v .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-6v .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcCx6z.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcCx6z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcCx6z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcCx6z .modal-content,
.cid-s26IpcCx6z .modal-dialog {
  height: auto;
}
.cid-s26IpcCx6z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcCx6z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcCx6z .form-wrapper .mbr-form .form-group,
  .cid-s26IpcCx6z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcCx6z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcCx6z .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcCx6z .mbr-text {
  text-align: left;
}
.cid-s26IpcCx6z .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcCx6z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcCx6z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcCx6z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcCx6z .modal-open {
  overflow: hidden;
}
.cid-s26IpcCx6z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcCx6z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcCx6z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcCx6z .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcCx6z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcCx6z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcCx6z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcCx6z .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcCx6z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcCx6z .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcCx6z .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcCx6z .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcCx6z .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcCx6z .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcCx6z .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcCx6z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcCx6z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcCx6z .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcCx6z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcCx6z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcCx6z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcCx6z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcCx6z .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcCx6z .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcCx6z .modal-lg,
  .cid-s26IpcCx6z .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcCx6z .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcCx6z .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcCx6z .container {
    max-width: 1140px;
  }
}
.cid-s26IpcCx6z .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcCx6z .container {
    max-width: 720px;
  }
}
.cid-s26IpcCx6z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcCx6z .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcCx6z .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcCx6z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcCx6z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcCx6z .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBVg5.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEBVg5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEBVg5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEBVg5 .modal-content,
.cid-s26IGEBVg5 .modal-dialog {
  height: auto;
}
.cid-s26IGEBVg5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEBVg5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEBVg5 .form-wrapper .mbr-form .form-group,
  .cid-s26IGEBVg5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEBVg5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEBVg5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEBVg5 .mbr-text {
  text-align: center;
}
.cid-s26IGEBVg5 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEBVg5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEBVg5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEBVg5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEBVg5 .modal-open {
  overflow: hidden;
}
.cid-s26IGEBVg5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEBVg5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEBVg5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEBVg5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEBVg5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEBVg5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEBVg5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEBVg5 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEBVg5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEBVg5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEBVg5 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEBVg5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEBVg5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEBVg5 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEBVg5 .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEBVg5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEBVg5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEBVg5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEBVg5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEBVg5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEBVg5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEBVg5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEBVg5 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEBVg5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEBVg5 .modal-lg,
  .cid-s26IGEBVg5 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEBVg5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEBVg5 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEBVg5 .container {
    max-width: 1140px;
  }
}
.cid-s26IGEBVg5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEBVg5 .container {
    max-width: 720px;
  }
}
.cid-s26IGEBVg5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEBVg5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEBVg5 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEBVg5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEBVg5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEBVg5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBVg5 .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEBVg5 .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEBVg5 .politicas {
    flex-direction: column;
  }
  .cid-s26IGEBVg5 .politicas a {
    width: 90%;
  }
}
.cid-um1c3YGJlQ.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGJlQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGJlQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGJlQ .modal-content,
.cid-um1c3YGJlQ .modal-dialog {
  height: auto;
}
.cid-um1c3YGJlQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGJlQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGJlQ .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGJlQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGJlQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGJlQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGJlQ .mbr-text {
  text-align: center;
}
.cid-um1c3YGJlQ .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGJlQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGJlQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGJlQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGJlQ .modal-open {
  overflow: hidden;
}
.cid-um1c3YGJlQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGJlQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGJlQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGJlQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGJlQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGJlQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGJlQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGJlQ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGJlQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGJlQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGJlQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGJlQ .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGJlQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGJlQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJlQ .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGJlQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGJlQ .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGJlQ .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGJlQ .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGJlQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGJlQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGJlQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJlQ .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGJlQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGJlQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJlQ .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGJlQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGJlQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGJlQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGJlQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGJlQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGJlQ .modal-lg,
  .cid-um1c3YGJlQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGJlQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGJlQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGJlQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGJlQ .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGJlQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGJlQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGJlQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGJlQ .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGJlQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rN6QAVKorD {
  padding-top: 255px;
  padding-bottom: 195px;
  background-image: url("../../images/mbr-722.jpg");
}
.cid-rN6QAVKorD .mbr-overlay {
  background: #002a23;
}
.cid-rN6QAVKorD .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rN6QAXzYIx {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rN6QAXzYIx H4 {
  color: #767676;
}
.cid-rN6QAXzYIx .mbr-text {
  color: #767676;
}
.cid-rN6SbpRrNa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rN6SbpRrNa .counter-container {
  color: #767676;
}
.cid-rN6SbpRrNa .counter-container ul {
  margin-bottom: 0;
}
.cid-rN6SbpRrNa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rN6SbpRrNa .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #034025;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-rN6SbpRrNa H4 {
  color: #767676;
}
.cid-rN6SbpRrNa .mbr-text {
  color: #767676;
}
.cid-rN6TPpFYqk {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rN6TPpFYqk H4 {
  color: #767676;
}
.cid-rN6TPpFYqk .mbr-text {
  color: #767676;
}
.cid-rN6UG6g86b {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rN6UG6g86b .counter-container {
  color: #767676;
}
.cid-rN6UG6g86b .counter-container ul {
  margin-bottom: 0;
}
.cid-rN6UG6g86b .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rN6UG6g86b .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #034025;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-rN6UG6g86b H4 {
  color: #767676;
}
.cid-rN6UG6g86b .mbr-text {
  color: #767676;
}
.cid-rN6QB5luyL {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rN6QB5luyL .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rN6QB5luyL .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa5aIzJSJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5aIzJSJ .content {
    text-align: center;
  }
  .cid-rWa5aIzJSJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5aIzJSJ .img-logo img {
  height: 6rem;
}
.cid-rWa5aIzJSJ .footer-title {
  color: #45a42e;
}
.cid-rWa5aIzJSJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5aIzJSJ .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5aIzJSJ .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5aIzJSJ .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5aIzJSJ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5aIzJSJ .social-list a:hover {
  opacity: 1;
}
.cid-rWa5aIzJSJ .form-group {
  width: 100%;
}
.cid-rWa5aIzJSJ .form-group input {
  width: 100%;
}
.cid-rWa5aIzJSJ .form-group input:focus {
  outline: none;
}
.cid-rWa5aIzJSJ .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5aIzJSJ .form-control:focus {
  outline: none;
}
.cid-rWa5aIzJSJ input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5aIzJSJ input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5aIzJSJ textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5aIzJSJ textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5aIzJSJ .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5aIzJSJ .list li {
  padding-bottom: .5rem;
}
.cid-rWa5aIzJSJ .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5aIzJSJ .mbr-footer-list,
.cid-rWa5aIzJSJ .form-text {
  color: #000;
}
.cid-rWa5aIzJSJ a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5aIzJSJ a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5aIzJSJ .mbr-footer-list,
  .cid-rWa5aIzJSJ .form-text,
  .cid-rWa5aIzJSJ .footer-title,
  .cid-rWa5aIzJSJ .footer-main-title,
  .cid-rWa5aIzJSJ .form-text,
  .cid-rWa5aIzJSJ .list {
    text-align: center !important;
  }
  .cid-rWa5aIzJSJ .form-inline,
  .cid-rWa5aIzJSJ .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-7g .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-7g .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-7g .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-7g .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-7g .primecase img {
  width: 30px;
}
#custom-html-7g .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-7g .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcC1u9.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcC1u9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcC1u9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcC1u9 .modal-content,
.cid-s26IpcC1u9 .modal-dialog {
  height: auto;
}
.cid-s26IpcC1u9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcC1u9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcC1u9 .form-wrapper .mbr-form .form-group,
  .cid-s26IpcC1u9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcC1u9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcC1u9 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcC1u9 .mbr-text {
  text-align: left;
}
.cid-s26IpcC1u9 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcC1u9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcC1u9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcC1u9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcC1u9 .modal-open {
  overflow: hidden;
}
.cid-s26IpcC1u9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcC1u9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcC1u9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcC1u9 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcC1u9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcC1u9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcC1u9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcC1u9 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcC1u9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcC1u9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcC1u9 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcC1u9 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcC1u9 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcC1u9 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcC1u9 .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcC1u9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcC1u9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcC1u9 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcC1u9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcC1u9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcC1u9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcC1u9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcC1u9 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcC1u9 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcC1u9 .modal-lg,
  .cid-s26IpcC1u9 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcC1u9 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcC1u9 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcC1u9 .container {
    max-width: 1140px;
  }
}
.cid-s26IpcC1u9 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcC1u9 .container {
    max-width: 720px;
  }
}
.cid-s26IpcC1u9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcC1u9 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcC1u9 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcC1u9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcC1u9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcC1u9 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEB8Ng.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEB8Ng.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEB8Ng.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEB8Ng .modal-content,
.cid-s26IGEB8Ng .modal-dialog {
  height: auto;
}
.cid-s26IGEB8Ng .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEB8Ng .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEB8Ng .form-wrapper .mbr-form .form-group,
  .cid-s26IGEB8Ng .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEB8Ng .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEB8Ng .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEB8Ng .mbr-text {
  text-align: center;
}
.cid-s26IGEB8Ng .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEB8Ng .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEB8Ng .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEB8Ng .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEB8Ng .modal-open {
  overflow: hidden;
}
.cid-s26IGEB8Ng .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEB8Ng .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEB8Ng .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEB8Ng .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEB8Ng .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEB8Ng .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEB8Ng .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEB8Ng .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEB8Ng .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEB8Ng .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEB8Ng .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEB8Ng .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEB8Ng .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEB8Ng .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEB8Ng .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEB8Ng .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEB8Ng .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEB8Ng .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEB8Ng .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEB8Ng .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEB8Ng .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEB8Ng .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEB8Ng .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEB8Ng .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEB8Ng .modal-lg,
  .cid-s26IGEB8Ng .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEB8Ng .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEB8Ng .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEB8Ng .container {
    max-width: 1140px;
  }
}
.cid-s26IGEB8Ng .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEB8Ng .container {
    max-width: 720px;
  }
}
.cid-s26IGEB8Ng .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEB8Ng .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEB8Ng .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEB8Ng .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEB8Ng .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEB8Ng .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEB8Ng .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEB8Ng .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEB8Ng .politicas {
    flex-direction: column;
  }
  .cid-s26IGEB8Ng .politicas a {
    width: 90%;
  }
}
.cid-um1c3YGJ8I.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGJ8I.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGJ8I.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGJ8I .modal-content,
.cid-um1c3YGJ8I .modal-dialog {
  height: auto;
}
.cid-um1c3YGJ8I .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGJ8I .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGJ8I .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGJ8I .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGJ8I .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGJ8I .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGJ8I .mbr-text {
  text-align: center;
}
.cid-um1c3YGJ8I .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGJ8I .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGJ8I .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGJ8I .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGJ8I .modal-open {
  overflow: hidden;
}
.cid-um1c3YGJ8I .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGJ8I .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGJ8I .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGJ8I .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGJ8I .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGJ8I .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGJ8I .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGJ8I .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGJ8I .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGJ8I .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGJ8I .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGJ8I .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGJ8I .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGJ8I .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJ8I .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGJ8I .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGJ8I .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGJ8I .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGJ8I .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGJ8I .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGJ8I .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGJ8I .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJ8I .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGJ8I .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGJ8I .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGJ8I .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGJ8I .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGJ8I .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGJ8I .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGJ8I .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGJ8I .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGJ8I .modal-lg,
  .cid-um1c3YGJ8I .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGJ8I .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGJ8I .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGJ8I .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGJ8I .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGJ8I .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGJ8I .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGJ8I .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGJ8I .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGJ8I .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-sdBAaC4EQF {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sdBAaC4EQF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sdBAaC4EQF .mbr-section-title {
  color: #ffffff;
}
.cid-sdBAcB2VNW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sdBAcB2VNW .mbr-section-subtitle {
  color: #686a70;
}
.cid-rWa41oZPTb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa41oZPTb .content {
    text-align: center;
  }
  .cid-rWa41oZPTb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa41oZPTb .img-logo img {
  height: 6rem;
}
.cid-rWa41oZPTb .footer-title {
  color: #45a42e;
}
.cid-rWa41oZPTb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa41oZPTb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa41oZPTb .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa41oZPTb .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa41oZPTb .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa41oZPTb .social-list a:hover {
  opacity: 1;
}
.cid-rWa41oZPTb .form-group {
  width: 100%;
}
.cid-rWa41oZPTb .form-group input {
  width: 100%;
}
.cid-rWa41oZPTb .form-group input:focus {
  outline: none;
}
.cid-rWa41oZPTb .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa41oZPTb .form-control:focus {
  outline: none;
}
.cid-rWa41oZPTb input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb input::-moz-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa41oZPTb .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa41oZPTb .list li {
  padding-bottom: .5rem;
}
.cid-rWa41oZPTb .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa41oZPTb .mbr-footer-list,
.cid-rWa41oZPTb .form-text {
  color: #000;
}
.cid-rWa41oZPTb a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa41oZPTb a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa41oZPTb .mbr-footer-list,
  .cid-rWa41oZPTb .form-text,
  .cid-rWa41oZPTb .footer-title,
  .cid-rWa41oZPTb .footer-main-title,
  .cid-rWa41oZPTb .form-text,
  .cid-rWa41oZPTb .list {
    text-align: center !important;
  }
  .cid-rWa41oZPTb .form-inline,
  .cid-rWa41oZPTb .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-cn .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-cn .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-cn .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-cn .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-cn .primecase img {
  width: 30px;
}
#custom-html-cn .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-cn .footer {
  clear: both;
  padding-top: 1em;
}
.cid-t4TsSdGrHf.popup-builder {
  background-color: #ffffff;
}
.cid-t4TsSdGrHf.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4TsSdGrHf.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4TsSdGrHf .modal-content,
.cid-t4TsSdGrHf .modal-dialog {
  height: auto;
}
.cid-t4TsSdGrHf .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4TsSdGrHf .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4TsSdGrHf .form-wrapper .mbr-form .form-group,
  .cid-t4TsSdGrHf .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4TsSdGrHf .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4TsSdGrHf .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4TsSdGrHf .mbr-text {
  text-align: left;
}
.cid-t4TsSdGrHf .pt-0 {
  padding-top: 0 !important;
}
.cid-t4TsSdGrHf .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4TsSdGrHf .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4TsSdGrHf .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4TsSdGrHf .modal-open {
  overflow: hidden;
}
.cid-t4TsSdGrHf .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4TsSdGrHf .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4TsSdGrHf .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4TsSdGrHf .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t4TsSdGrHf .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4TsSdGrHf .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4TsSdGrHf .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4TsSdGrHf .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t4TsSdGrHf .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4TsSdGrHf .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4TsSdGrHf .modal-backdrop.show {
  opacity: .5;
}
.cid-t4TsSdGrHf .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-t4TsSdGrHf .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4TsSdGrHf .modal-header .close:hover {
  opacity: 1;
}
.cid-t4TsSdGrHf .modal-header .close:focus {
  outline: none;
}
.cid-t4TsSdGrHf .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-t4TsSdGrHf .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-t4TsSdGrHf .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-t4TsSdGrHf .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4TsSdGrHf .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4TsSdGrHf .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4TsSdGrHf .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4TsSdGrHf .modal-sm {
    max-width: 300px;
  }
  .cid-t4TsSdGrHf .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-t4TsSdGrHf .modal-lg,
  .cid-t4TsSdGrHf .modal-xl {
    max-width: 800px;
  }
  .cid-t4TsSdGrHf .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-t4TsSdGrHf .modal-xl {
    max-width: 1140px;
  }
  .cid-t4TsSdGrHf .container {
    max-width: 1140px;
  }
}
.cid-t4TsSdGrHf .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-t4TsSdGrHf .container {
    max-width: 720px;
  }
}
.cid-t4TsSdGrHf .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4TsSdGrHf .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t4TsSdGrHf .form-group {
  margin-bottom: 1rem;
}
.cid-t4TsSdGrHf .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4TsSdGrHf .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4TsSdGrHf .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGTey.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGTey.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGTey.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGTey .modal-content,
.cid-um1c3YGTey .modal-dialog {
  height: auto;
}
.cid-um1c3YGTey .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGTey .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGTey .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGTey .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGTey .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGTey .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGTey .mbr-text {
  text-align: center;
}
.cid-um1c3YGTey .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGTey .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGTey .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGTey .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGTey .modal-open {
  overflow: hidden;
}
.cid-um1c3YGTey .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGTey .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGTey .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGTey .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGTey .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGTey .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGTey .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGTey .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGTey .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGTey .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGTey .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGTey .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGTey .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGTey .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGTey .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGTey .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGTey .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGTey .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGTey .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGTey .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGTey .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGTey .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGTey .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGTey .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGTey .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGTey .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGTey .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGTey .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGTey .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGTey .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGTey .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGTey .modal-lg,
  .cid-um1c3YGTey .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGTey .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGTey .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGTey .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGTey .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGTey .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGTey .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGTey .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGTey .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGTey .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-szn5ynX9We {
  background-image: url("../../images/mbr-11.jpg");
}
.cid-szn5ynX9We .mbr-overlay {
  background: #002a23;
}
.cid-szn5ynX9We .mbr-section-title {
  letter-spacing: -1px;
}
.cid-szn6iE5xlC {
  padding-top: 60px;
  padding-bottom: 105px;
  overflow: hidden;
  background-color: #efefef;
}
.cid-szn6iE5xlC .carousel {
  z-index: 2;
  position: relative;
}
.cid-szn6iE5xlC .user {
  padding: 0!important;
}
.cid-szn6iE5xlC .big-icon {
  top: 1rem;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #e6eefa;
  opacity: 0.5;
}
.cid-szn6iE5xlC .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-szn6iE5xlC .carousel-item.active,
.cid-szn6iE5xlC .carousel-item-next,
.cid-szn6iE5xlC .carousel-item-prev {
  display: flex;
}
.cid-szn6iE5xlC .user_name {
  margin: 0;
}
.cid-szn6iE5xlC .carousel-controls a {
  font-size: 2rem;
}
.cid-szn6iE5xlC .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #232323;
  background: transparent;
  opacity: 0.5;
}
.cid-szn6iE5xlC .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-szn6iE5xlC ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-szn6iE5xlC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #232323;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-szn6iE5xlC .carousel-indicators li:hover {
  opacity: 1;
}
.cid-szn6iE5xlC .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-szn6iE5xlC .user_text {
  color: #767676;
  text-align: left;
}
.cid-szn6iE5xlC .user_text p {
  font-size: 1.1rem !important;
}
.cid-szn6iE5xlC .user_desk {
  color: #767676;
}
.cid-szn6iE5xlC .user_desk,
.cid-szn6iE5xlC .carousel-item {
  text-align: left;
}
.cid-szn6iE5xlC .carousel-indicators {
  margin: 0;
  margin-left: 0.5rem;
  justify-content: flex-start !important;
}
@media (max-width: 767px) {
  .cid-szn6iE5xlC .carousel-indicators {
    margin: auto;
    justify-content: center!important;
  }
}
.cid-szn6iE5xlC .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-szn6iE5xlC .carousel-control-prev {
  left: -30px;
  transform: translateX(-50%);
}
.cid-szn7uLt0nK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-szn7uLt0nK .container-fluid {
  padding: 0 3rem;
}
.cid-szn7uLt0nK .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #033610 50%, #ca4336 120%);
  display: inline-block;
}
.cid-szn7uLt0nK .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-szn7uLt0nK .header-text {
  padding: 2rem 1rem !important;
}
.cid-szn7uLt0nK .card {
  border-radius: 25px !important;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-szn7uLt0nK .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-szn7uLt0nK .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-szn7uLt0nK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-szn7uLt0nK .card .card-header a.panel-title:hover .sign {
  background-color: #033610 !important;
}
.cid-szn7uLt0nK .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #45a42e;
  padding: 2rem;
  padding-top: 36px;
  color: #ffffff;
}
.cid-szn7uLt0nK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-szn7uLt0nK .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-szn7uLt0nK .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
.cid-szn7uLt0nK a.btn {
  border-radius: 8px 0px 8px 0px;
}
@media (max-width: 767px) {
  .cid-szn7uLt0nK .container-fluid {
    padding: 0 1rem;
  }
  .cid-szn7uLt0nK .header-text {
    padding: 1rem !important;
  }
  .cid-szn7uLt0nK .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-szn7uLt0nK .panel-body {
    width: calc(100% - 48px);
  }
  .cid-szn7uLt0nK .panel-group {
    padding: 0;
  }
}
.cid-szn7uLt0nK .header-text,
.cid-szn7uLt0nK .sign {
  color: #232323;
}
.cid-szn5ypGfbZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-szn5ypGfbZ .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-szn5ypGfbZ .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-szn5yq6dGb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-szn5yq6dGb .content {
    text-align: center;
  }
  .cid-szn5yq6dGb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-szn5yq6dGb .img-logo img {
  height: 6rem;
}
.cid-szn5yq6dGb .footer-title {
  color: #45a42e;
}
.cid-szn5yq6dGb .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-szn5yq6dGb .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-szn5yq6dGb .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-szn5yq6dGb .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-szn5yq6dGb .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szn5yq6dGb .social-list a:hover {
  opacity: 1;
}
.cid-szn5yq6dGb .form-group {
  width: 100%;
}
.cid-szn5yq6dGb .form-group input {
  width: 100%;
}
.cid-szn5yq6dGb .form-group input:focus {
  outline: none;
}
.cid-szn5yq6dGb .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-szn5yq6dGb .form-control:focus {
  outline: none;
}
.cid-szn5yq6dGb input::-webkit-input-placeholder {
  color: #767676;
}
.cid-szn5yq6dGb input::-moz-placeholder {
  color: #767676;
}
.cid-szn5yq6dGb textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-szn5yq6dGb textarea::-moz-placeholder {
  color: #767676;
}
.cid-szn5yq6dGb .list {
  list-style-type: none;
  padding: 0;
}
.cid-szn5yq6dGb .list li {
  padding-bottom: .5rem;
}
.cid-szn5yq6dGb .list li:last-child {
  padding-bottom: 0;
}
.cid-szn5yq6dGb .mbr-footer-list,
.cid-szn5yq6dGb .form-text {
  color: #000;
}
.cid-szn5yq6dGb a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-szn5yq6dGb a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-szn5yq6dGb .mbr-footer-list,
  .cid-szn5yq6dGb .form-text,
  .cid-szn5yq6dGb .footer-title,
  .cid-szn5yq6dGb .footer-main-title,
  .cid-szn5yq6dGb .form-text,
  .cid-szn5yq6dGb .list {
    text-align: center !important;
  }
  .cid-szn5yq6dGb .form-inline,
  .cid-szn5yq6dGb .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-d1 .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-d1 .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-d1 .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-d1 .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-d1 .primecase img {
  width: 30px;
}
#custom-html-d1 .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-d1 .footer {
  clear: both;
  padding-top: 1em;
}
.cid-szn5yry2Cb.popup-builder {
  background-color: #ffffff;
}
.cid-szn5yry2Cb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-szn5yry2Cb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-szn5yry2Cb .modal-content,
.cid-szn5yry2Cb .modal-dialog {
  height: auto;
}
.cid-szn5yry2Cb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-szn5yry2Cb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-szn5yry2Cb .form-wrapper .mbr-form .form-group,
  .cid-szn5yry2Cb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-szn5yry2Cb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-szn5yry2Cb .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-szn5yry2Cb .mbr-text {
  text-align: center;
}
.cid-szn5yry2Cb .pt-0 {
  padding-top: 0 !important;
}
.cid-szn5yry2Cb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-szn5yry2Cb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-szn5yry2Cb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-szn5yry2Cb .modal-open {
  overflow: hidden;
}
.cid-szn5yry2Cb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-szn5yry2Cb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-szn5yry2Cb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-szn5yry2Cb .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-szn5yry2Cb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-szn5yry2Cb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-szn5yry2Cb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-szn5yry2Cb .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-szn5yry2Cb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-szn5yry2Cb .modal-backdrop.fade {
  opacity: 0;
}
.cid-szn5yry2Cb .modal-backdrop.show {
  opacity: .5;
}
.cid-szn5yry2Cb .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-szn5yry2Cb .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-szn5yry2Cb .modal-header .close:hover {
  opacity: 1;
}
.cid-szn5yry2Cb .modal-header .close:focus {
  outline: none;
}
.cid-szn5yry2Cb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-szn5yry2Cb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-szn5yry2Cb .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-szn5yry2Cb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-szn5yry2Cb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-szn5yry2Cb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-szn5yry2Cb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-szn5yry2Cb .modal-sm {
    max-width: 300px;
  }
  .cid-szn5yry2Cb .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-szn5yry2Cb .modal-lg,
  .cid-szn5yry2Cb .modal-xl {
    max-width: 800px;
  }
  .cid-szn5yry2Cb .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-szn5yry2Cb .modal-xl {
    max-width: 1140px;
  }
  .cid-szn5yry2Cb .container {
    max-width: 1140px;
  }
}
.cid-szn5yry2Cb .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-szn5yry2Cb .container {
    max-width: 720px;
  }
}
.cid-szn5yry2Cb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-szn5yry2Cb .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-szn5yry2Cb .form-group {
  margin-bottom: 1rem;
}
.cid-szn5yry2Cb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-szn5yry2Cb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-szn5yry2Cb .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-szn5yry2Cb .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-szn5yry2Cb .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-szn5yry2Cb .politicas {
    flex-direction: column;
  }
  .cid-szn5yry2Cb .politicas a {
    width: 90%;
  }
}
.cid-t4TsSdHfBN.popup-builder {
  background-color: #ffffff;
}
.cid-t4TsSdHfBN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-t4TsSdHfBN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-t4TsSdHfBN .modal-content,
.cid-t4TsSdHfBN .modal-dialog {
  height: auto;
}
.cid-t4TsSdHfBN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-t4TsSdHfBN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-t4TsSdHfBN .form-wrapper .mbr-form .form-group,
  .cid-t4TsSdHfBN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-t4TsSdHfBN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-t4TsSdHfBN .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4TsSdHfBN .mbr-text {
  text-align: left;
}
.cid-t4TsSdHfBN .pt-0 {
  padding-top: 0 !important;
}
.cid-t4TsSdHfBN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-t4TsSdHfBN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-t4TsSdHfBN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-t4TsSdHfBN .modal-open {
  overflow: hidden;
}
.cid-t4TsSdHfBN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-t4TsSdHfBN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-t4TsSdHfBN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-t4TsSdHfBN .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-t4TsSdHfBN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-t4TsSdHfBN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-t4TsSdHfBN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-t4TsSdHfBN .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-t4TsSdHfBN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-t4TsSdHfBN .modal-backdrop.fade {
  opacity: 0;
}
.cid-t4TsSdHfBN .modal-backdrop.show {
  opacity: .5;
}
.cid-t4TsSdHfBN .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-t4TsSdHfBN .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-t4TsSdHfBN .modal-header .close:hover {
  opacity: 1;
}
.cid-t4TsSdHfBN .modal-header .close:focus {
  outline: none;
}
.cid-t4TsSdHfBN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-t4TsSdHfBN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-t4TsSdHfBN .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-t4TsSdHfBN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-t4TsSdHfBN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-t4TsSdHfBN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-t4TsSdHfBN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-t4TsSdHfBN .modal-sm {
    max-width: 300px;
  }
  .cid-t4TsSdHfBN .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-t4TsSdHfBN .modal-lg,
  .cid-t4TsSdHfBN .modal-xl {
    max-width: 800px;
  }
  .cid-t4TsSdHfBN .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-t4TsSdHfBN .modal-xl {
    max-width: 1140px;
  }
  .cid-t4TsSdHfBN .container {
    max-width: 1140px;
  }
}
.cid-t4TsSdHfBN .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-t4TsSdHfBN .container {
    max-width: 720px;
  }
}
.cid-t4TsSdHfBN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-t4TsSdHfBN .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-t4TsSdHfBN .form-group {
  margin-bottom: 1rem;
}
.cid-t4TsSdHfBN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-t4TsSdHfBN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-t4TsSdHfBN .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGutM.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGutM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGutM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGutM .modal-content,
.cid-um1c3YGutM .modal-dialog {
  height: auto;
}
.cid-um1c3YGutM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGutM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGutM .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGutM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGutM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGutM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGutM .mbr-text {
  text-align: center;
}
.cid-um1c3YGutM .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGutM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGutM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGutM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGutM .modal-open {
  overflow: hidden;
}
.cid-um1c3YGutM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGutM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGutM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGutM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGutM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGutM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGutM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGutM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGutM .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGutM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGutM .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGutM .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGutM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGutM .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGutM .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGutM .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGutM .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGutM .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGutM .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGutM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGutM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGutM .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGutM .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGutM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGutM .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGutM .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGutM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGutM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGutM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGutM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGutM .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGutM .modal-lg,
  .cid-um1c3YGutM .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGutM .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGutM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGutM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGutM .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGutM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGutM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGutM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGutM .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGutM .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rW9MufW69s {
  padding-top: 255px;
  padding-bottom: 195px;
  background-image: url("../../images/mbr-319.jpg");
}
.cid-rW9MufW69s .mbr-overlay {
  background: #002a23;
}
.cid-rW9MufW69s .mbr-section-title {
  letter-spacing: -1px;
}
.cid-rW9Mugtmbv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-rW9Mugtmbv H4 {
  color: #767676;
}
.cid-rW9Mugtmbv .mbr-text {
  color: #767676;
}
.cid-rW9NAQKjIZ {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-rW9NAQKjIZ .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-rW9NAQKjIZ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rW9NAQKjIZ .text-content {
  padding-right: 1.5rem;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-rW9NAQKjIZ .main-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-rW9NAQKjIZ .mbr-text,
.cid-rW9NAQKjIZ .mbr-section-btn {
  color: #767676;
}
.cid-rW9NAQKjIZ .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(67, 68, 70, 0.3);
  box-shadow: 0px 0px 30px rgba(67, 68, 70, 0.3);
  border-radius: .25rem;
}
.cid-rW9NAQKjIZ .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rW9NAQKjIZ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rW9NAQKjIZ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rW9NAQKjIZ .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-rW9NAQKjIZ .main-row {
    margin: 0;
  }
  .cid-rW9NAQKjIZ .mbr-section-title,
  .cid-rW9NAQKjIZ .mbr-text,
  .cid-rW9NAQKjIZ .list,
  .cid-rW9NAQKjIZ .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rW9NAQKjIZ .text-content {
    padding: 0;
  }
}
.cid-rW9O6FTcnl {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: #f4f8fa;
}
.cid-rW9O6FTcnl .mbr-overlay {
  background: linear-gradient(90deg, #149dcc, #b2ccd2);
}
.cid-rW9O6FTcnl .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-rW9O6FTcnl .text-content {
  padding-right: 1.5rem;
}
.cid-rW9O6FTcnl .mbr-text,
.cid-rW9O6FTcnl .mbr-section-btn {
  color: #767676;
}
.cid-rW9O6FTcnl .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(67, 68, 70, 0.3);
  box-shadow: 0px 0px 30px rgba(67, 68, 70, 0.3);
  border-radius: .25rem;
}
.cid-rW9O6FTcnl .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-rW9O6FTcnl .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-rW9O6FTcnl .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-rW9O6FTcnl .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #188ef4;
}
@media (max-width: 991px) {
  .cid-rW9O6FTcnl .main-row {
    margin: 0;
  }
  .cid-rW9O6FTcnl .mbr-section-title,
  .cid-rW9O6FTcnl .mbr-text,
  .cid-rW9O6FTcnl .list,
  .cid-rW9O6FTcnl .mbr-section-btn {
    text-align: center !important;
  }
  .cid-rW9O6FTcnl .text-content {
    padding: 0;
  }
}
.cid-rW9MuiBV6X {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rW9MuiBV6X .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rW9MuiBV6X .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa58RRJQ9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa58RRJQ9 .content {
    text-align: center;
  }
  .cid-rWa58RRJQ9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa58RRJQ9 .img-logo img {
  height: 6rem;
}
.cid-rWa58RRJQ9 .footer-title {
  color: #45a42e;
}
.cid-rWa58RRJQ9 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa58RRJQ9 .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa58RRJQ9 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa58RRJQ9 .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa58RRJQ9 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa58RRJQ9 .social-list a:hover {
  opacity: 1;
}
.cid-rWa58RRJQ9 .form-group {
  width: 100%;
}
.cid-rWa58RRJQ9 .form-group input {
  width: 100%;
}
.cid-rWa58RRJQ9 .form-group input:focus {
  outline: none;
}
.cid-rWa58RRJQ9 .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa58RRJQ9 .form-control:focus {
  outline: none;
}
.cid-rWa58RRJQ9 input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa58RRJQ9 input::-moz-placeholder {
  color: #767676;
}
.cid-rWa58RRJQ9 textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa58RRJQ9 textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa58RRJQ9 .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa58RRJQ9 .list li {
  padding-bottom: .5rem;
}
.cid-rWa58RRJQ9 .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa58RRJQ9 .mbr-footer-list,
.cid-rWa58RRJQ9 .form-text {
  color: #000;
}
.cid-rWa58RRJQ9 a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa58RRJQ9 a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa58RRJQ9 .mbr-footer-list,
  .cid-rWa58RRJQ9 .form-text,
  .cid-rWa58RRJQ9 .footer-title,
  .cid-rWa58RRJQ9 .footer-main-title,
  .cid-rWa58RRJQ9 .form-text,
  .cid-rWa58RRJQ9 .list {
    text-align: center !important;
  }
  .cid-rWa58RRJQ9 .form-inline,
  .cid-rWa58RRJQ9 .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-8h .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-8h .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-8h .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-8h .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-8h .primecase img {
  width: 30px;
}
#custom-html-8h .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-8h .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcDJA2.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcDJA2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcDJA2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcDJA2 .modal-content,
.cid-s26IpcDJA2 .modal-dialog {
  height: auto;
}
.cid-s26IpcDJA2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcDJA2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcDJA2 .form-wrapper .mbr-form .form-group,
  .cid-s26IpcDJA2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcDJA2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcDJA2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcDJA2 .mbr-text {
  text-align: left;
}
.cid-s26IpcDJA2 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcDJA2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcDJA2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcDJA2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcDJA2 .modal-open {
  overflow: hidden;
}
.cid-s26IpcDJA2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcDJA2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcDJA2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcDJA2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcDJA2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcDJA2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcDJA2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcDJA2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcDJA2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcDJA2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcDJA2 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcDJA2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcDJA2 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcDJA2 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcDJA2 .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcDJA2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcDJA2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcDJA2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcDJA2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcDJA2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcDJA2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcDJA2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcDJA2 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcDJA2 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcDJA2 .modal-lg,
  .cid-s26IpcDJA2 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcDJA2 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcDJA2 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcDJA2 .container {
    max-width: 1140px;
  }
}
.cid-s26IpcDJA2 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcDJA2 .container {
    max-width: 720px;
  }
}
.cid-s26IpcDJA2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcDJA2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcDJA2 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcDJA2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcDJA2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcDJA2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBs6O.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEBs6O.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEBs6O.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEBs6O .modal-content,
.cid-s26IGEBs6O .modal-dialog {
  height: auto;
}
.cid-s26IGEBs6O .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEBs6O .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEBs6O .form-wrapper .mbr-form .form-group,
  .cid-s26IGEBs6O .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEBs6O .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEBs6O .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEBs6O .mbr-text {
  text-align: center;
}
.cid-s26IGEBs6O .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEBs6O .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEBs6O .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEBs6O .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEBs6O .modal-open {
  overflow: hidden;
}
.cid-s26IGEBs6O .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEBs6O .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEBs6O .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEBs6O .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEBs6O .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEBs6O .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEBs6O .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEBs6O .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEBs6O .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEBs6O .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEBs6O .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEBs6O .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEBs6O .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEBs6O .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEBs6O .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEBs6O .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEBs6O .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEBs6O .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEBs6O .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEBs6O .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEBs6O .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEBs6O .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEBs6O .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEBs6O .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEBs6O .modal-lg,
  .cid-s26IGEBs6O .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEBs6O .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEBs6O .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEBs6O .container {
    max-width: 1140px;
  }
}
.cid-s26IGEBs6O .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEBs6O .container {
    max-width: 720px;
  }
}
.cid-s26IGEBs6O .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEBs6O .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEBs6O .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEBs6O .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEBs6O .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEBs6O .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEBs6O .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEBs6O .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEBs6O .politicas {
    flex-direction: column;
  }
  .cid-s26IGEBs6O .politicas a {
    width: 90%;
  }
}
.cid-um1c3YGEBM.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGEBM.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGEBM.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGEBM .modal-content,
.cid-um1c3YGEBM .modal-dialog {
  height: auto;
}
.cid-um1c3YGEBM .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGEBM .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGEBM .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGEBM .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGEBM .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGEBM .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGEBM .mbr-text {
  text-align: center;
}
.cid-um1c3YGEBM .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGEBM .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGEBM .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGEBM .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGEBM .modal-open {
  overflow: hidden;
}
.cid-um1c3YGEBM .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGEBM .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGEBM .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGEBM .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGEBM .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGEBM .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGEBM .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGEBM .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGEBM .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGEBM .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGEBM .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGEBM .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGEBM .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGEBM .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGEBM .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGEBM .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGEBM .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGEBM .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGEBM .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGEBM .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGEBM .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGEBM .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGEBM .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGEBM .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGEBM .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGEBM .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGEBM .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGEBM .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGEBM .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGEBM .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGEBM .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGEBM .modal-lg,
  .cid-um1c3YGEBM .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGEBM .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGEBM .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGEBM .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGEBM .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGEBM .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGEBM .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGEBM .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGEBM .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGEBM .mbr-section-btn .btn {
  margin: 0;
}
.cid-tRIRNCOTpV .dropdown-item:before {
  display: inline-block;
}
.cid-tRIRNCOTpV .nav-item,
.cid-tRIRNCOTpV .nav-link,
.cid-tRIRNCOTpV .navbar-caption {
  font-weight: 500;
}
.cid-tRIRNCOTpV .nav-item:focus,
.cid-tRIRNCOTpV .nav-link:focus {
  outline: none;
}
.cid-tRIRNCOTpV .apple {
  height: 3em;
}
.cid-tRIRNCOTpV .android {
  height: 3em;
  margin-right: 14px;
}
.cid-tRIRNCOTpV .collapse {
  margin-left: 2em;
}
.cid-tRIRNCOTpV .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-tRIRNCOTpV .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-tRIRNCOTpV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tRIRNCOTpV .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tRIRNCOTpV .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-tRIRNCOTpV .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tRIRNCOTpV .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tRIRNCOTpV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tRIRNCOTpV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tRIRNCOTpV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-tRIRNCOTpV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tRIRNCOTpV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tRIRNCOTpV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tRIRNCOTpV .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tRIRNCOTpV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tRIRNCOTpV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tRIRNCOTpV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tRIRNCOTpV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tRIRNCOTpV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tRIRNCOTpV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tRIRNCOTpV .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-tRIRNCOTpV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tRIRNCOTpV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tRIRNCOTpV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tRIRNCOTpV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tRIRNCOTpV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tRIRNCOTpV .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-tRIRNCOTpV .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-tRIRNCOTpV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tRIRNCOTpV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tRIRNCOTpV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tRIRNCOTpV .dropdown-item.active,
.cid-tRIRNCOTpV .dropdown-item:active {
  background-color: transparent;
}
.cid-tRIRNCOTpV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-tRIRNCOTpV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tRIRNCOTpV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tRIRNCOTpV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tRIRNCOTpV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tRIRNCOTpV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tRIRNCOTpV .navbar-buttons {
  text-align: center;
}
.cid-tRIRNCOTpV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNCOTpV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-tRIRNCOTpV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tRIRNCOTpV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tRIRNCOTpV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tRIRNCOTpV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tRIRNCOTpV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRIRNCOTpV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tRIRNCOTpV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tRIRNCOTpV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tRIRNCOTpV .navbar-dropdown {
  position: fixed;
}
.cid-tRIRNCOTpV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tRIRNCOTpV .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tRIRNCOTpV .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tRIRNCOTpV .soc-item {
  margin: .5rem .3rem;
}
.cid-tRIRNCOTpV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tRIRNCOTpV .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-tRIRNCOTpV .hamburguer:before,
.cid-tRIRNCOTpV .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-tRIRNCOTpV .hamburguer:before {
  top: -10px;
}
.cid-tRIRNCOTpV .hamburguer:after {
  bottom: -10px;
}
.cid-tRIRNCOTpV input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-tRIRNCOTpV input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-tRIRNCOTpV input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-tRIRNCOTpV .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-tRIRNCOTpV .nav-link {
  cursor: pointer !importante;
}
.cid-tRIRNCOTpV .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-tRIRNCOTpV .nav-item {
  padding: 0em 2em;
}
.cid-tRIRNCOTpV .custom-menu li {
  color: #fff;
}
.cid-tRIRNCOTpV .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-tRIRNCOTpV .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-tRIRNCOTpV .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-tRIRNCOTpV .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-tRIRNCOTpV .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-tRIRNCOTpV .custom-menu span:hover {
  color: #000 !important;
}
.cid-tRIRNCOTpV .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-tRIRNCOTpV .custom-menu a:hover {
  color: #000 !important;
}
.cid-tRIRNCOTpV .custom-menu a:hover span {
  display: inline;
}
.cid-tRIRNCOTpV .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-tRIRNCOTpV input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-tRIRNCOTpV input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-tRIRNCOTpV input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-tRIRNCOTpV .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-tRIRNCOTpV .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-tRIRNCOTpV .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-tRIRNCOTpV .image-logo {
  margin-bottom: 1.5rem;
}
.cid-tRIRNCOTpV .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-tRIRNCOTpV .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-tRIRNCOTpV .mbr-iconfont:before {
  border: none !important;
}
.cid-tRIRNCOTpV .soc-item a span:before {
  border: 2px solid !important;
}
.cid-tRIRNCOTpV .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-tRIRNCOTpV .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tRIRNCOTpV .navbar {
    height: 77px;
  }
  .cid-tRIRNCOTpV .navbar.opened {
    height: auto;
  }
  .cid-tRIRNCOTpV .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-tRIRNCOTpV .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-tRIRNCOTpV .taxaRed {
  color: #FF0000;
}
.cid-tRIRNCOTpV .taxasBlue {
  color: #9999f5;
}
.cid-tRIRNCOTpV .taxasWhite {
  color: #fff;
}
.cid-tRIRNCOTpV .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-tRIRNCOTpV .custom-menu .nav {
  margin-top: -2em;
}
.cid-tRIRNCOTpV .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-tRIRNCOTpV .submenu .customLink:hover {
  color: #fff !important;
}
.cid-tRIRNCOTpV .submenu span:hover {
  color: #fff !important;
}
.cid-tRIRNCOTpV .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-tRIRNCOTpV .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-tRIRNCOTpV .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-tRIRNCOTpV .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-tRIRNCOTpV .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-tRIRNCOTpV .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-tRIRNCOTpV .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-tRIRNCOTpV .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-tRIRNCOTpV .icons-menu {
    display: none !important;
  }
  .cid-tRIRNCOTpV h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-tRIRNCOTpV .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-tRIRNCOTpV .navbar-expand-lg,
  .cid-tRIRNCOTpV .navbar-nav,
  .cid-tRIRNCOTpV .nav-link {
    padding: 0;
  }
}
.cid-tRIRNCOTpV li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-tRIRNCOTpV .container-custom {
    margin-top: 0em !important;
  }
  .cid-tRIRNCOTpV li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-tRIRNCOTpV .container-custom {
    margin-top: 0em !important;
  }
  .cid-tRIRNCOTpV .card,
  .cid-tRIRNCOTpV .menuHanburger {
    display: block !important;
  }
}
.cid-tRIRNCOTpV .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-tRIRNCOTpV .navbar-nav {
  align-items: baseline;
}
.cid-tRIRNCOTpV .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-tRIRNCOTpV a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-tRIRNCOTpV [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-tRIRNCOTpV [aria-label]:hover::after {
  display: block;
}
.cid-tRIRNyxrm5 {
  background-image: url("../../images/woman-1.jpg");
}
.cid-tRIRNyxrm5 .row {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tRIRNyxrm5 .modal-content {
  width: 100% !important;
  background: linear-gradient(135deg, #c9c9c9 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9c9c9', endColorstr='#ffffff', GradientType=1);
}
.cid-tRIRNyxrm5 #img-moeda-selecionada {
  idth: 60%;
  height: 60%;
}
.cid-tRIRNyxrm5 img {
  padding-right: 20px !Important;
  width: 30%;
  height: 30%;
  object-fit: cover;
  object-position: center center;
}
.cid-tRIRNyxrm5 .form-1 {
  z-index: 1;
  background-color: transparent;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.cid-tRIRNyxrm5 .form-1 .mbr-overlay {
  z-index: -1;
}
.cid-tRIRNyxrm5 .form-group {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-tRIRNyxrm5 .form-control {
  color: #ffffff !important;
  border: none;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #ffffff;
}
.cid-tRIRNyxrm5 .form-control:focus {
  outline: none;
  box-shadow: none;
}
@keyframes sumir {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tRIRNyxrm5 .teste-sumir {
  animation: sumir 600ms linear forwards;
}
.cid-tRIRNyxrm5 .teste-aparece {
  animation: aparecer 600ms linear forwards;
}
.cid-tRIRNyxrm5 .input-group-btn {
  font-weight: 500 !important;
  display: block;
  padding-left: 0;
}
.cid-tRIRNyxrm5 input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-tRIRNyxrm5 input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.cid-tRIRNyxrm5 .form-subtitle {
  line-height: 1.6;
  color: #767676;
}
.cid-tRIRNyxrm5 .mbr-section-subtitle {
  color: #efefef;
}
.cid-tRIRNyxrm5 .form-text {
  line-height: 1.6;
  color: #767676;
  margin: 0;
}
@media (min-width: 992px) {
  .cid-tRIRNyxrm5 .text-element {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tRIRNyxrm5 .form-1 {
    margin-top: ;
  }
}
@media (max-width: 767px) {
  .cid-tRIRNyxrm5 .underline .line {
    height: 2px;
  }
  .cid-tRIRNyxrm5 .container {
    padding-left: 0px !important;
    padding-right: 0px !important;
    overflow-x: hidden !important;
  }
  .cid-tRIRNyxrm5 .text-element {
    padding-bottom: 1rem;
  }
  .cid-tRIRNyxrm5 .form-1 {
    padding: 2rem;
    margin: 1rem;
  }
  .cid-tRIRNyxrm5 .mbr-section-subtitle,
  .cid-tRIRNyxrm5 .mbr-section-title,
  .cid-tRIRNyxrm5 .mbr-text,
  .cid-tRIRNyxrm5 .mbr-section-btn,
  .cid-tRIRNyxrm5 .form-title,
  .cid-tRIRNyxrm5 .form-subtitle,
  .cid-tRIRNyxrm5 .input-group-btn,
  .cid-tRIRNyxrm5 .form-text {
    text-align: center !important;
  }
}
.cid-tRIRNyxrm5 select option {
  color: #000;
}
.cid-tRIRNyxrm5 .box-vitrine-button:hover {
  background-color: #2c7518!important;
}
.cid-tRIRNyxrm5 .disableVitrine {
  display: none !important;
}
.cid-tRIRNyxrm5 .box-vitrine-estatico {
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  margin-top: 10%;
}
.cid-tRIRNyxrm5 .box-vitrine-button btn:hover {
  background-color: #2c7518!important;
  transform: none;
  font-weight: 500 !important;
}
.cid-tRIRNyxrm5 .box-vitrine-button {
  border-color: #2c7518!important;
  background-color: #2c7518!important;
  border-bottom: 1px solid white;
  padding-bottom: 3%;
  padding-top: 3%;
  margin: 0;
  border-radius: 0px;
  font-size: 12px;
  padding-left: 0;
  padding-right: 0;
}
.cid-tRIRNyxrm5 .btn-comprar-agora {
  border-radius: 5px !important;
  width: 100%;
  background-color: #2c7518!important;
  border-color: #2c7518 !important;
  margin-left: 0em;
}
.cid-tRIRNyxrm5 .btn-comprar-agora:hover {
  background-color: #222f69!important;
  border-color: #222f69 !important;
}
.cid-tRIRNyxrm5 .label-vitrine {
  color: white;
  font-size: 14px;
}
.cid-tRIRNyxrm5 .hide {
  display: none;
}
.cid-tRIRNyxrm5 .box-vitrine-custom {
  background-color: );
  padding-left: 2%;
  padding-bottom: 2%;
  padding-right: 2%;
  font-family: 'Poppins', sans-serif !important;
}
.cid-tRIRNyxrm5 .custom-form-control {
  border-radius: 0;
}
.cid-tRIRNyxrm5 .itemMoeda {
  list-style: none;
  cursor: pointer;
  padding-top: 10px;
  border-bottom: 1px solid #f5f5f5;
  text-align: left;
  height: 100%;
  padding-bottom: 10px;
}
.cid-tRIRNyxrm5 .dropdown-moeda img {
  max-height: 50px !important;
  max-width: 62px !important;
  margin-right: 5px;
}
.cid-tRIRNyxrm5 .itemMoeda img {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  max-height: 50px !important;
  max-width: 50px !important;
}
.cid-tRIRNyxrm5 .box-moeda {
  width: 100%;
  padding-right: 10px;
  position: absolute;
  top: 6em;
  z-index: 1000;
  background-color: white;
  list-style-type: none;
  padding: 0;
}
.cid-tRIRNyxrm5 .scrollable {
  max-height: 300px;
  overflow: auto;
  width: 100%;
}
.cid-tRIRNyxrm5 .notShowMoeda {
  display: none;
}
.cid-tRIRNyxrm5 .grid-Custom {
  margin-top: 0em !important;
}
.cid-tRIRNyxrm5 h3 {
  color: white;
}
.cid-tRIRNyxrm5 .text-element > .mbr-text,
.cid-tRIRNyxrm5 .text-element > .mbr-section-btn {
  color: #92b5d5;
  font-weight: 500 !important;
}
.cid-tRIRNyxrm5 .modal-body p {
  font-size: 13px;
}
.cid-tRIRNyxrm5 .modal-header {
  max-height: 4em !important;
}
.cid-tRIRNyxrm5 .modal-header h5 {
  font-size: 14.5px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .cid-tRIRNyxrm5 .box-vitrine-custom {
    margin-top: 8em;
  }
  .cid-tRIRNyxrm5 .modal {
    width: 99vw;
  }
  .cid-tRIRNyxrm5 .modal-header h5 {
    font-size: 12px !important;
    font-weight: bold !important;
  }
  .cid-tRIRNyxrm5 .modal-body p {
    font-size: 12px !important;
  }
}
.cid-tRIRNyxrm5 .modal-dialog {
  font-size: 12px !important;
  margin: 0px !important;
  margin-left: 1vw !important;
}
.cid-tRIRNyxrm5 .modal-footer {
  max-height: 5em !important;
}
.cid-tRIRNyxrm5 .btn-modal {
  max-height: 2.8em !important;
  font-weight: 500 !important;
}
@keyframes modalPositionLarge {
  from {
    top: 0vh;
  }
  to {
    top: 61vh;
  }
}
@keyframes modalPositionmobile {
  from {
    top: 0vh;
  }
  to {
    top: 45vh;
  }
}
@keyframes modalPositionMedium {
  from {
    top: 0vh;
  }
  to {
    top: 46vh;
  }
}
.cid-tRIRNyxrm5 .mbr-section-title {
  color: #ffffff;
}
.cid-tRIRNyxrm5 .labelIdade {
  color: #fff !important;
}
.cid-tRIRNyxrm5 .espacoPerguntas label {
  color: #fff !important;
}
@media (max-width: 768px) {
  .cid-tRIRNyxrm5 .box-vitrine-button {
    font-size: 9px !important;
  }
  .cid-tRIRNyxrm5 .form-group {
    padding: 0;
    margin-bottom: 0.3em !important;
  }
  .cid-tRIRNyxrm5 .grid-Custom {
    margin-top: -2em !important;
  }
  .cid-tRIRNyxrm5 .btn-comprar-agora {
    left: -1em !important;
  }
  .cid-tRIRNyxrm5 .scrollable {
    width: 87vw !important;
  }
}
.cid-tRIRNyxrm5 .check {
  background-color: #c9dcc4 !important;
  border-color: #222 !important;
  color: black !important;
}
.cid-tRIRNyxrm5 .check:hover {
  background-color: #c9dcc4 !important;
  border-color: #222 !important;
  color: black !important;
}
.cid-tRIRNyxrm5 H4 {
  color: #ffffff;
}
.cid-tRIRNyxrm5 [data-tooltip] {
  font-family: 'arial';
  position: relative;
  font-weight: 500;
}
.cid-tRIRNyxrm5 [data-tooltip]:before {
  border: 10px solid transparent;
  border-right-color: #45a42e;
  content: "";
  left: 0.8em;
  top: -0.2em;
  visibility: hidden;
  position: absolute;
  transition: all 200ms ease;
}
.cid-tRIRNyxrm5 [data-tooltip]:after {
  content: attr(data-tooltip);
  width: 17em !important;
  visibility: hidden;
  position: absolute;
  top: -1em;
  z-index: 1000;
  padding: 20px;
  left: 2em;
  background-color: #45a42e;
  color: #fff;
  font-size: 15px !important;
  text-shadow: 0 0 .1em #fff;
  box-shadow: 0 0 10px #055f74;
  transition: all 200ms ease;
}
.cid-tRIRNyxrm5 [data-tooltip]:hover:after,
.cid-tRIRNyxrm5 [data-tooltip]:hover:before {
  visibility: visible;
}
.cid-tRIRNyxrm5 .info-vitrine {
  border: .21em #45a42e double;
  padding: .5em 1em .5em 1em;
  background: transparent !important;
}
.cid-tRIRNyxrm5 .primecase__spinner {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  left: 0rem;
  top: 1.1em;
}
.cid-tRIRNyxrm5 .primecase__spinner .spinner {
  position: relative;
  box-sizing: border-box;
  animation-delay: -0.16s;
  color: #45a42e !important;
  font-size: 2.8rem;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  transform: translateZ(0);
  animation: load6 1.4s infinite ease, round 1.4s infinite ease;
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.cid-tRIRNyxrm5 p {
  margin-bottom: 0 !important;
}
.cid-tRIRNzHHxd {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ececec;
}
.cid-tRIRNzHHxd .container-fluid {
  padding: 0 5rem;
}
.cid-tRIRNzHHxd .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNzHHxd .mbr-section-title {
  padding-bottom: 2rem;
  color: #232323;
}
.cid-tRIRNzHHxd .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tRIRNzHHxd .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tRIRNzHHxd .mbr-figure img {
    width: 100%;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .cid-tRIRNzHHxd .container-fluid {
    padding: 0 1rem;
  }
  .cid-tRIRNzHHxd .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tRIRNzHHxd .mbr-section-title {
    text-align: center !important;
  }
  .cid-tRIRNzHHxd .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tRIRNzHHxd .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tRIRNzHHxd .mbr-section-subtitle,
.cid-tRIRNzHHxd .mbr-section-btn {
  color: #444444;
}
.cid-tRIRNA4J1E {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tRIRNA4J1E .row-element,
.cid-tRIRNA4J1E .image-element {
  padding: 0;
}
.cid-tRIRNA4J1E .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tRIRNA4J1E .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tRIRNA4J1E .text-content {
  padding: 3rem;
}
.cid-tRIRNA4J1E .mbr-section-subtitle {
  color: #b2ccd2;
}
@media (max-width: 767px) {
  .cid-tRIRNA4J1E .text-content {
    padding: 2rem 1rem;
  }
  .cid-tRIRNA4J1E .mbr-title,
  .cid-tRIRNA4J1E .mbr-text,
  .cid-tRIRNA4J1E .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tRIRNA4J1E .mbr-title {
  color: #232323;
  text-align: left;
}
.cid-tRIRNA4J1E .mbr-text,
.cid-tRIRNA4J1E .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-tRIRNAksHp {
  overflow: hidden !important;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ececec;
}
.cid-tRIRNAksHp .container-fluid {
  padding: 0 5rem;
}
.cid-tRIRNAksHp .img-block {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNAksHp .mbr-section-title {
  padding-bottom: 2rem;
  color: #232323;
}
.cid-tRIRNAksHp .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-tRIRNAksHp .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-tRIRNAksHp .mbr-figure img {
    width: 100%;
    border-radius: 50px;
  }
}
@media (max-width: 991px) {
  .cid-tRIRNAksHp .container-fluid {
    padding: 0 1rem;
  }
  .cid-tRIRNAksHp .mbr-figure {
    margin-top: 1rem;
  }
  .cid-tRIRNAksHp .mbr-section-title {
    text-align: center !important;
  }
  .cid-tRIRNAksHp .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-tRIRNAksHp .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tRIRNAksHp .mbr-section-subtitle,
.cid-tRIRNAksHp .mbr-section-btn {
  color: #444444;
}
.cid-tRIRNACz9Q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #4c7a41;
}
.cid-tRIRNACz9Q .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-tRIRNACz9Q .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-tRIRNAQKpY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tRIRNAQKpY .content {
    text-align: center;
  }
  .cid-tRIRNAQKpY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tRIRNAQKpY .img-logo img {
  height: 6rem;
}
.cid-tRIRNAQKpY .footer-title {
  color: #45a42e;
}
.cid-tRIRNAQKpY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tRIRNAQKpY .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-tRIRNAQKpY .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-tRIRNAQKpY .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-tRIRNAQKpY .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRIRNAQKpY .social-list a:hover {
  opacity: 1;
}
.cid-tRIRNAQKpY .form-group {
  width: 100%;
}
.cid-tRIRNAQKpY .form-group input {
  width: 100%;
}
.cid-tRIRNAQKpY .form-group input:focus {
  outline: none;
}
.cid-tRIRNAQKpY .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-tRIRNAQKpY .form-control:focus {
  outline: none;
}
.cid-tRIRNAQKpY input::-webkit-input-placeholder {
  color: #767676;
}
.cid-tRIRNAQKpY input::-moz-placeholder {
  color: #767676;
}
.cid-tRIRNAQKpY textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-tRIRNAQKpY textarea::-moz-placeholder {
  color: #767676;
}
.cid-tRIRNAQKpY .list {
  list-style-type: none;
  padding: 0;
}
.cid-tRIRNAQKpY .list li {
  padding-bottom: .5rem;
}
.cid-tRIRNAQKpY .list li:last-child {
  padding-bottom: 0;
}
.cid-tRIRNAQKpY .mbr-footer-list,
.cid-tRIRNAQKpY .form-text {
  color: #000;
}
.cid-tRIRNAQKpY a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-tRIRNAQKpY a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-tRIRNAQKpY .mbr-footer-list,
  .cid-tRIRNAQKpY .form-text,
  .cid-tRIRNAQKpY .footer-title,
  .cid-tRIRNAQKpY .footer-main-title,
  .cid-tRIRNAQKpY .form-text,
  .cid-tRIRNAQKpY .list {
    text-align: center !important;
  }
  .cid-tRIRNAQKpY .form-inline,
  .cid-tRIRNAQKpY .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-ex .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-ex .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-ex .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-ex .primecase p {
  color: black;
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-ex .primecase img {
  width: 30px;
}
#custom-html-ex .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-ex .footer {
  clear: both;
  padding-top: 1em;
}
.cid-tRIRNBBALK.popup-builder {
  background-color: #ffffff;
}
.cid-tRIRNBBALK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tRIRNBBALK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tRIRNBBALK .modal-content,
.cid-tRIRNBBALK .modal-dialog {
  height: auto;
}
.cid-tRIRNBBALK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tRIRNBBALK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tRIRNBBALK .form-wrapper .input-group-btn .mbr-form .form-group,
  .cid-tRIRNBBALK .form-wrapper .input-group-btn .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tRIRNBBALK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tRIRNBBALK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNBBALK .mbr-text {
  text-align: left;
}
.cid-tRIRNBBALK .pt-0 {
  padding-top: 0 !important;
}
.cid-tRIRNBBALK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tRIRNBBALK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tRIRNBBALK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tRIRNBBALK .modal-open {
  overflow: hidden;
}
.cid-tRIRNBBALK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tRIRNBBALK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tRIRNBBALK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tRIRNBBALK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tRIRNBBALK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tRIRNBBALK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tRIRNBBALK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tRIRNBBALK .modal-content {
  background: transparent;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  left: 0.5rem;
}
.cid-tRIRNBBALK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tRIRNBBALK .modal-backdrop.fade {
  opacity: 0;
}
.cid-tRIRNBBALK .modal-backdrop.show {
  opacity: .5;
}
.cid-tRIRNBBALK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tRIRNBBALK .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tRIRNBBALK .modal-header .close:hover {
  opacity: 1;
}
.cid-tRIRNBBALK .modal-header .close:focus {
  outline: none;
}
.cid-tRIRNBBALK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff0000;
}
.cid-tRIRNBBALK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tRIRNBBALK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tRIRNBBALK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tRIRNBBALK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tRIRNBBALK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tRIRNBBALK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tRIRNBBALK .modal-sm {
    max-width: 300px;
  }
  .cid-tRIRNBBALK .container {
    max-width: 540px;
  }
}
.cid-tRIRNBBALK .close {
  right: 3.2em !important;
  top: 1.8em !important;
  z-index: 1;
  color: #fff !important;
}
@media (min-width: 992px) {
  .cid-tRIRNBBALK .modal-lg,
  .cid-tRIRNBBALK .modal-xl {
    max-width: 800px;
  }
  .cid-tRIRNBBALK .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tRIRNBBALK .modal-xl {
    max-width: 1140px;
  }
  .cid-tRIRNBBALK .container {
    max-width: 1140px;
  }
}
.cid-tRIRNBBALK .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tRIRNBBALK .container {
    max-width: 720px;
  }
}
.cid-tRIRNBBALK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tRIRNBBALK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tRIRNBBALK .form-group {
  margin-bottom: 1rem;
}
.cid-tRIRNBBALK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tRIRNBBALK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tRIRNBBALK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tRIRNBBALK .mbr-figure img {
  display: block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
  margin: auto;
  width: 80% !important;
}
@media (max-width: 796px) {
  .cid-tRIRNBBALK .close {
    right: 2.5em !important;
  }
  .cid-tRIRNBBALK .mbr-figure img {
    width: 82% !important;
  }
}
.cid-tRIRNBZCVo.popup-builder {
  background-color: #ffffff;
}
.cid-tRIRNBZCVo.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tRIRNBZCVo.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tRIRNBZCVo .modal-content,
.cid-tRIRNBZCVo .modal-dialog {
  height: auto;
}
.cid-tRIRNBZCVo .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tRIRNBZCVo .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tRIRNBZCVo .form-wrapper .mbr-form .form-group,
  .cid-tRIRNBZCVo .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tRIRNBZCVo .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tRIRNBZCVo .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNBZCVo .mbr-text {
  text-align: center;
}
.cid-tRIRNBZCVo .pt-0 {
  padding-top: 0 !important;
}
.cid-tRIRNBZCVo .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tRIRNBZCVo .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tRIRNBZCVo .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tRIRNBZCVo .modal-open {
  overflow: hidden;
}
.cid-tRIRNBZCVo .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tRIRNBZCVo .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tRIRNBZCVo .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tRIRNBZCVo .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tRIRNBZCVo .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tRIRNBZCVo .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tRIRNBZCVo .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tRIRNBZCVo .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tRIRNBZCVo .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tRIRNBZCVo .modal-backdrop.fade {
  opacity: 0;
}
.cid-tRIRNBZCVo .modal-backdrop.show {
  opacity: .5;
}
.cid-tRIRNBZCVo .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tRIRNBZCVo .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tRIRNBZCVo .modal-header .close:hover {
  opacity: 1;
}
.cid-tRIRNBZCVo .modal-header .close:focus {
  outline: none;
}
.cid-tRIRNBZCVo .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tRIRNBZCVo .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tRIRNBZCVo .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tRIRNBZCVo .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tRIRNBZCVo .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tRIRNBZCVo .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tRIRNBZCVo .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tRIRNBZCVo .modal-sm {
    max-width: 300px;
  }
  .cid-tRIRNBZCVo .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tRIRNBZCVo .modal-lg,
  .cid-tRIRNBZCVo .modal-xl {
    max-width: 800px;
  }
  .cid-tRIRNBZCVo .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tRIRNBZCVo .modal-xl {
    max-width: 1140px;
  }
  .cid-tRIRNBZCVo .container {
    max-width: 1140px;
  }
}
.cid-tRIRNBZCVo .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tRIRNBZCVo .container {
    max-width: 720px;
  }
}
.cid-tRIRNBZCVo .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tRIRNBZCVo .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tRIRNBZCVo .form-group {
  margin-bottom: 1rem;
}
.cid-tRIRNBZCVo .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tRIRNBZCVo .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tRIRNBZCVo .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tRIRNBZCVo .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-tRIRNBZCVo .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-tRIRNBZCVo .politicas {
    flex-direction: column;
  }
  .cid-tRIRNBZCVo .politicas a {
    width: 90%;
  }
}
.cid-tRIRNCnc48.popup-builder {
  background-color: #ffffff;
}
.cid-tRIRNCnc48.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tRIRNCnc48.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tRIRNCnc48 .modal-content,
.cid-tRIRNCnc48 .modal-dialog {
  height: auto;
}
.cid-tRIRNCnc48 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tRIRNCnc48 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tRIRNCnc48 .form-wrapper .mbr-form .form-group,
  .cid-tRIRNCnc48 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tRIRNCnc48 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tRIRNCnc48 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tRIRNCnc48 .mbr-text {
  text-align: left;
}
.cid-tRIRNCnc48 .pt-0 {
  padding-top: 0 !important;
}
.cid-tRIRNCnc48 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tRIRNCnc48 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tRIRNCnc48 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tRIRNCnc48 .modal-open {
  overflow: hidden;
}
.cid-tRIRNCnc48 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tRIRNCnc48 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tRIRNCnc48 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tRIRNCnc48 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tRIRNCnc48 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tRIRNCnc48 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tRIRNCnc48 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tRIRNCnc48 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tRIRNCnc48 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tRIRNCnc48 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tRIRNCnc48 .modal-backdrop.show {
  opacity: .5;
}
.cid-tRIRNCnc48 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-tRIRNCnc48 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tRIRNCnc48 .modal-header .close:hover {
  opacity: 1;
}
.cid-tRIRNCnc48 .modal-header .close:focus {
  outline: none;
}
.cid-tRIRNCnc48 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-tRIRNCnc48 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-tRIRNCnc48 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-tRIRNCnc48 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tRIRNCnc48 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tRIRNCnc48 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tRIRNCnc48 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tRIRNCnc48 .modal-sm {
    max-width: 300px;
  }
  .cid-tRIRNCnc48 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-tRIRNCnc48 .modal-lg,
  .cid-tRIRNCnc48 .modal-xl {
    max-width: 800px;
  }
  .cid-tRIRNCnc48 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-tRIRNCnc48 .modal-xl {
    max-width: 1140px;
  }
  .cid-tRIRNCnc48 .container {
    max-width: 1140px;
  }
}
.cid-tRIRNCnc48 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-tRIRNCnc48 .container {
    max-width: 720px;
  }
}
.cid-tRIRNCnc48 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tRIRNCnc48 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tRIRNCnc48 .form-group {
  margin-bottom: 1rem;
}
.cid-tRIRNCnc48 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tRIRNCnc48 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tRIRNCnc48 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGfR4.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YGfR4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YGfR4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YGfR4 .modal-content,
.cid-um1c3YGfR4 .modal-dialog {
  height: auto;
}
.cid-um1c3YGfR4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YGfR4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YGfR4 .form-wrapper .mbr-form .form-group,
  .cid-um1c3YGfR4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YGfR4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YGfR4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YGfR4 .mbr-text {
  text-align: center;
}
.cid-um1c3YGfR4 .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YGfR4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YGfR4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YGfR4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YGfR4 .modal-open {
  overflow: hidden;
}
.cid-um1c3YGfR4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YGfR4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YGfR4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YGfR4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YGfR4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YGfR4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YGfR4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YGfR4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YGfR4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YGfR4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YGfR4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YGfR4 .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YGfR4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YGfR4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGfR4 .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YGfR4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YGfR4 .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YGfR4 .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YGfR4 .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YGfR4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YGfR4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YGfR4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGfR4 .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YGfR4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YGfR4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YGfR4 .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YGfR4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YGfR4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YGfR4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YGfR4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YGfR4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YGfR4 .modal-lg,
  .cid-um1c3YGfR4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YGfR4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YGfR4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YGfR4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YGfR4 .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YGfR4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YGfR4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YGfR4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YGfR4 .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YGfR4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-t4SPNo8kku .dropdown-item:before {
  display: inline-block;
}
.cid-t4SPNo8kku .nav-item,
.cid-t4SPNo8kku .nav-link,
.cid-t4SPNo8kku .navbar-caption {
  font-weight: 500;
}
.cid-t4SPNo8kku .nav-item:focus,
.cid-t4SPNo8kku .nav-link:focus {
  outline: none;
}
.cid-t4SPNo8kku .apple {
  height: 3em;
}
.cid-t4SPNo8kku .android {
  height: 3em;
  margin-right: 14px;
}
.cid-t4SPNo8kku .collapse {
  margin-left: 2em;
}
.cid-t4SPNo8kku .box {
  background-color: #000 !important;
  width: 92vw !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .dropdown-menu {
  box-shadow: 0 0px 12px 0 #9e9b98  !important;
  width: 21em;
  background: #efefef !important;
  left: -2em;
  transition: 0.5s ease-in-out;
  border-radius: 20px;
}
.cid-t4SPNo8kku .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4SPNo8kku .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t4SPNo8kku .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-t4SPNo8kku .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4SPNo8kku .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 3.2rem;
  }
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-t4SPNo8kku .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4SPNo8kku .navbar.collapsed .dropdown-menu .dropdown-item {
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4SPNo8kku .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4SPNo8kku .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4SPNo8kku .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-t4SPNo8kku .navbar .navbar-logo img {
    height: 3.2rem !important;
  }
  .cid-t4SPNo8kku .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4SPNo8kku .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-t4SPNo8kku .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4SPNo8kku .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4SPNo8kku .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4SPNo8kku .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-t4SPNo8kku .navbar.navbar-short .navbar-logo img {
  height: 3.2rem !important;
}
.cid-t4SPNo8kku .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t4SPNo8kku .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4SPNo8kku .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4SPNo8kku .dropdown-item.active,
.cid-t4SPNo8kku .dropdown-item:active {
  background-color: transparent;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
  display: contents !important;
}
.cid-t4SPNo8kku .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t4SPNo8kku .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4SPNo8kku .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4SPNo8kku ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4SPNo8kku .navbar-buttons {
  text-align: center;
}
.cid-t4SPNo8kku button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a2a2a2;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4SPNo8kku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4SPNo8kku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4SPNo8kku .navbar-dropdown {
  position: fixed;
}
.cid-t4SPNo8kku a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-t4SPNo8kku .soc-item {
  margin: .5rem .3rem;
}
.cid-t4SPNo8kku .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t4SPNo8kku .hamburguer {
  background-color: #909090;
  height: 3px;
  width: 30px;
  position: absolute;
  right: 1.6em;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before,
.cid-t4SPNo8kku .hamburguer:after {
  background-color: #909090;
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2000;
  transition: 0.5s ease-in-out;
}
.cid-t4SPNo8kku .hamburguer:before {
  top: -10px;
}
.cid-t4SPNo8kku .hamburguer:after {
  bottom: -10px;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ label .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .card {
  background-color: rgba(0, 3, 9, 0.62) !important;
  width: 92vw !important;
  padding-top: 0;
  padding-bottom: 10px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 99.99vh;
  position: fixed;
  z-index: 7;
  border-bottom-left-radius: 0px !important;
  right: 0;
}
.cid-t4SPNo8kku .nav-link {
  cursor: pointer !importante;
}
.cid-t4SPNo8kku .tarja-superior {
  background-color: #000 !important;
  width: 100vw !important;
}
.cid-t4SPNo8kku .nav-item {
  padding: 0em 2em;
}
.cid-t4SPNo8kku .custom-menu li {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu a {
  color: #fff !important;
  transition: all 300ms ease-in-out;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span {
  display: inline !important;
  color: #b1e41e !important;
}
.cid-t4SPNo8kku .custom-menu .mbr-iconfont-span :before {
  border: none !important;
}
.cid-t4SPNo8kku .custom-menu .card ul {
  margin-top: -3rem;
}
.cid-t4SPNo8kku .custom-menu .card ul li {
  font-size: .875rem !important;
}
.cid-t4SPNo8kku .custom-menu span:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu span:hover .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover {
  color: #000 !important;
}
.cid-t4SPNo8kku .custom-menu a:hover span {
  display: inline;
}
.cid-t4SPNo8kku .custom-menu .btn-voltar {
  padding: 0px 1em;
  color: #fff !important;
  background: transparent !important;
  border: none !important;
  font-size: 20px !important;
  cursor: pointer !important;
  margin-left: -2.4rem !important;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer {
  transform: rotate(45deg);
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:before {
  transform: rotate(90deg);
  top: 0;
}
.cid-t4SPNo8kku input:checked ~ span .hamburguer:after {
  transform: rotate(90deg);
  bottom: 0;
}
.cid-t4SPNo8kku .menuEntrar:before {
  margin-top: -0.5rem !important;
}
.cid-t4SPNo8kku .menuEntrar:after {
  margin-top: 0.5rem !important;
}
.cid-t4SPNo8kku .menu-mobile {
  height: 2rem;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
.cid-t4SPNo8kku .image-logo {
  margin-bottom: 1.5rem;
}
.cid-t4SPNo8kku .image-logo img {
  height: 2.8rem !important;
  margin-top: 0rem !important;
}
.cid-t4SPNo8kku .image-logo span {
  margin-top: -0.8rem !important;
  margin-left: 0.5rem !important;
}
.cid-t4SPNo8kku .mbr-iconfont:before {
  border: none !important;
}
.cid-t4SPNo8kku .soc-item a span:before {
  border: 2px solid !important;
}
.cid-t4SPNo8kku .customLink span {
  position: relative;
  right: -84vw !important;
}
.cid-t4SPNo8kku .customLink {
  margin-left: -5rem !important;
  cursor: pointer !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4SPNo8kku .navbar {
    height: 77px;
  }
  .cid-t4SPNo8kku .navbar.opened {
    height: auto;
  }
  .cid-t4SPNo8kku .nav-item .nav-link:hover::before {
    max-width: calc(100% + 2rem);
  }
}
.cid-t4SPNo8kku .container-custom {
  margin-top: 0 !important;
  margin-bottom: 9px !important;
}
.cid-t4SPNo8kku .taxaRed {
  color: #FF0000;
}
.cid-t4SPNo8kku .taxasBlue {
  color: #9999f5;
}
.cid-t4SPNo8kku .taxasWhite {
  color: #fff;
}
.cid-t4SPNo8kku .custom-menu .nav-item {
  padding-top: 0em;
  padding-bottom: 0em;
}
.cid-t4SPNo8kku .custom-menu .nav {
  margin-top: -2em;
}
.cid-t4SPNo8kku .submenu {
  display: none;
  background-color: #000 !important;
  width: 90.9vw !important;
  padding-top: 10px !important;
  padding-bottom: 10px;
  padding-left: 30px !important;
  padding-right: 0 !important;
  height: 87.7vh;
  position: absolute !important;
  top: 4em;
  z-index: 6;
  margin-top: 0em !important;
}
.cid-t4SPNo8kku .submenu .customLink:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu span:hover {
  color: #fff !important;
}
.cid-t4SPNo8kku .submenu .mbr-iconfont-span {
  color: #444 !important;
}
.cid-t4SPNo8kku .submenu .nav-item {
  margin-top: 1.1em !important;
  padding: 0px 4.5em !important;
}
.cid-t4SPNo8kku .bandeira {
  padding-right: 8px !important;
  height: 1.5em !important;
  margin-bottom: 5px !important;
  border-radius: 5px !important;
}
@keyframes subMenuClose {
  from {
    right: 0em;
  }
  to {
    right: -30em;
  }
}
@keyframes subMenuOpen {
  from {
    right: -30em;
  }
  to {
    right: 0;
  }
}
@keyframes MenuCloseLine {
  0% {
    right: 0em;
  }
  100% {
    right: -70em;
  }
}
@keyframes MenuOpenLine {
  0% {
    right: -70em;
  }
  100% {
    right: 0em;
  }
}
.cid-t4SPNo8kku .menu-open {
  display: block;
  animation: subMenuOpen 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menu-close {
  display: block;
  animation: subMenuClose 300ms ease-in-out forwards;
}
.cid-t4SPNo8kku .menuprincipalClose {
  animation: MenuCloseLine 300ms ease-in-out forwards !important;
}
.cid-t4SPNo8kku .menuprincipalOpen {
  animation: MenuOpenLine 300ms ease-in-out forwards !important;
}
@media (min-width: 992px) {
  .cid-t4SPNo8kku .menu .navbar-nav.nav-dropdown {
    align-items: baseline !important;
  }
  .cid-t4SPNo8kku .icons-menu {
    display: none !important;
  }
  .cid-t4SPNo8kku h1 {
    margin-bottom: 0rem !important;
    padding-right: 26em !important;
  }
  .cid-t4SPNo8kku .justify-content-start {
    justify-content: space-around !important;
  }
  .cid-t4SPNo8kku .navbar-expand-lg,
  .cid-t4SPNo8kku .navbar-nav,
  .cid-t4SPNo8kku .nav-link {
    padding: 0;
  }
}
.cid-t4SPNo8kku li + li {
  margin-left: -2.8em;
}
@media (max-width: 796px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku li + li {
    margin-left: 0em;
  }
}
@media (max-width: 768px) and (max-height: 1024px) {
  .cid-t4SPNo8kku .container-custom {
    margin-top: 0em !important;
  }
  .cid-t4SPNo8kku .card,
  .cid-t4SPNo8kku .menuHanburger {
    display: block !important;
  }
}
.cid-t4SPNo8kku .mbr-col-md-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.cid-t4SPNo8kku .navbar-nav {
  align-items: baseline;
}
.cid-t4SPNo8kku .znv-float-button {
  background: #25a332 url(https://www.dgcambio.com.br/assets/images/icons8-whatsapp-1.svg) 7px no-repeat;
  background-size: 41px;
  border: none;
  border-radius: 50%;
  bottom: 15px;
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 86px;
  -webkit-transition: all 120ms ease-in-out;
  transition: all 120ms ease-in-out;
  width: 54px;
  z-index: 1;
}
.cid-t4SPNo8kku a {
  color: #e92c6c;
  text-decoration: none;
  font-weight: bold;
}
.cid-t4SPNo8kku [aria-label]::after {
  font-weight: 600;
  content: attr(aria-label);
  display: none;
  position: absolute;
  top: -100%;
  left: -155px;
  z-index: 5000;
  pointer-events: none;
  padding: 6px 8px;
  text-decoration: none;
  font-size: .9em;
  color: #fff;
  background-color: #25a332;
}
.cid-t4SPNo8kku [aria-label]:hover::after {
  display: block;
}
.cid-rGujYkugbg {
  overflow: hidden !important;
  background-image: url("../../images/maps-2000x133312.jpg");
}
.cid-rGujYkugbg .container-fluid {
  padding: 0 3rem;
}
.cid-rGujYkugbg .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-rGujYkugbg .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rGdZ1y1lQn {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rGdZ1y1lQn .form-control,
.cid-rGdZ1y1lQn .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-rGdZ1y1lQn .form-control:focus,
.cid-rGdZ1y1lQn .form-control:focus:focus {
  outline: none;
}
.cid-rGdZ1y1lQn .logoShopping {
  position: relative;
  height: 10em;
  left: -2.5vw;
  bottom: -2vh;
}
.cid-rGdZ1y1lQn input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rGdZ1y1lQn input::-moz-placeholder {
  color: #5b686b;
}
.cid-rGdZ1y1lQn textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-rGdZ1y1lQn textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-rGdZ1y1lQn .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rGdZ1y1lQn .input {
  margin-bottom: 15px;
}
.cid-rGdZ1y1lQn .map {
  width: 100%;
  height: 30rem;
}
.cid-rGdZ1y1lQn .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rGdZ1y1lQn .mbr-text {
  color: #767676;
}
.cid-rGdZ1y1lQn .input-group-btn {
  display: block;
}
.cid-rGdZ1y1lQn .google-map {
  height: 25rem;
  position: relative;
}
.cid-rGdZ1y1lQn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rGdZ1y1lQn .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rGdZ1y1lQn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rGdZ1y1lQn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rGdZ1y1lQn .block-content a {
  color: #767676 !important;
  transition: all 200ms ease-in-out;
}
.cid-rGdZ1y1lQn .block-content a:hover {
  color: #45a42e !important;
  font-weight: bold !important;
}
@media (max-width: 768px) {
  .cid-rGdZ1y1lQn .mbr-section-subtitle,
  .cid-rGdZ1y1lQn .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-rGdZ1y1lQn form.mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-rGdZ1y1lQn H4 {
  color: #767676;
}
.cid-rGdZ1y1lQn P {
  color: #767676;
}
.cid-rGuwq23CzP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../images/mbr-1-1920x12814.jpg");
}
.cid-rGuwq23CzP .mbr-section-subtitle {
  text-align: center;
  color: #efefef;
}
.cid-rGuwq23CzP .mbr-section-title {
  text-align: center;
  color: #efefef;
}
.cid-rWa5uEzxKh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rWa5uEzxKh .content {
    text-align: center;
  }
  .cid-rWa5uEzxKh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rWa5uEzxKh .img-logo img {
  height: 6rem;
}
.cid-rWa5uEzxKh .footer-title {
  color: #45a42e;
}
.cid-rWa5uEzxKh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rWa5uEzxKh .social-list .mbr-iconfont-social {
  font-size: 1rem;
  color: #fff;
}
.cid-rWa5uEzxKh .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-rWa5uEzxKh .social-list .soc-item {
  margin: 0 3px 15px 3px;
}
.cid-rWa5uEzxKh .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rWa5uEzxKh .social-list a:hover {
  opacity: 1;
}
.cid-rWa5uEzxKh .form-group {
  width: 100%;
}
.cid-rWa5uEzxKh .form-group input {
  width: 100%;
}
.cid-rWa5uEzxKh .form-group input:focus {
  outline: none;
}
.cid-rWa5uEzxKh .form-control {
  min-height: auto;
  color: #767676 !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #767676;
}
.cid-rWa5uEzxKh .form-control:focus {
  outline: none;
}
.cid-rWa5uEzxKh input::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5uEzxKh input::-moz-placeholder {
  color: #767676;
}
.cid-rWa5uEzxKh textarea::-webkit-input-placeholder {
  color: #767676;
}
.cid-rWa5uEzxKh textarea::-moz-placeholder {
  color: #767676;
}
.cid-rWa5uEzxKh .list {
  list-style-type: none;
  padding: 0;
}
.cid-rWa5uEzxKh .list li {
  padding-bottom: .5rem;
}
.cid-rWa5uEzxKh .list li:last-child {
  padding-bottom: 0;
}
.cid-rWa5uEzxKh .mbr-footer-list,
.cid-rWa5uEzxKh .form-text {
  color: #000;
}
.cid-rWa5uEzxKh a {
  color: #000!important;
  transition: 200ms linear all !important;
}
.cid-rWa5uEzxKh a:hover {
  font-weight: bold !important;
  color: #3a8041 !important;
}
@media (max-width: 767px) {
  .cid-rWa5uEzxKh .mbr-footer-list,
  .cid-rWa5uEzxKh .form-text,
  .cid-rWa5uEzxKh .footer-title,
  .cid-rWa5uEzxKh .footer-main-title,
  .cid-rWa5uEzxKh .form-text,
  .cid-rWa5uEzxKh .list {
    text-align: center !important;
  }
  .cid-rWa5uEzxKh .form-inline,
  .cid-rWa5uEzxKh .social-list {
    justify-content: center !important;
    -webkit-justify-content: center !important;
  }
}
#custom-html-1p .primecase {
  margin-top: -10px;
  color: #fff !important;
}
#custom-html-1p .primecase img {
  margin-bottom: 10px !important;
}
#custom-html-1p .espaco-logo-primecase {
  padding: 20px 0;
  width: 240px;
  margin: 0 auto;
}
#custom-html-1p .primecase p {
  font-weight: normal;
  line-height: 16px;
  margin-bottom: 0 !important;
}
#custom-html-1p .primecase img {
  width: 30px;
}
#custom-html-1p .primecase span {
  position: relative;
  bottom: 2.3px;
}
#custom-html-1p .footer {
  clear: both;
  padding-top: 1em;
}
.cid-s26IpcAvQT.popup-builder {
  background-color: #ffffff;
}
.cid-s26IpcAvQT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IpcAvQT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IpcAvQT .modal-content,
.cid-s26IpcAvQT .modal-dialog {
  height: auto;
}
.cid-s26IpcAvQT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IpcAvQT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IpcAvQT .form-wrapper .mbr-form .form-group,
  .cid-s26IpcAvQT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IpcAvQT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IpcAvQT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IpcAvQT .mbr-text {
  text-align: left;
}
.cid-s26IpcAvQT .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IpcAvQT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IpcAvQT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IpcAvQT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IpcAvQT .modal-open {
  overflow: hidden;
}
.cid-s26IpcAvQT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IpcAvQT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IpcAvQT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IpcAvQT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IpcAvQT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IpcAvQT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IpcAvQT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IpcAvQT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IpcAvQT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IpcAvQT .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IpcAvQT .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IpcAvQT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IpcAvQT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IpcAvQT .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IpcAvQT .modal-header .close:focus {
  outline: none;
}
.cid-s26IpcAvQT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: left;
}
.cid-s26IpcAvQT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IpcAvQT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IpcAvQT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IpcAvQT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IpcAvQT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IpcAvQT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IpcAvQT .modal-sm {
    max-width: 300px;
  }
  .cid-s26IpcAvQT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IpcAvQT .modal-lg,
  .cid-s26IpcAvQT .modal-xl {
    max-width: 800px;
  }
  .cid-s26IpcAvQT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IpcAvQT .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IpcAvQT .container {
    max-width: 1140px;
  }
}
.cid-s26IpcAvQT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IpcAvQT .container {
    max-width: 720px;
  }
}
.cid-s26IpcAvQT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IpcAvQT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IpcAvQT .form-group {
  margin-bottom: 1rem;
}
.cid-s26IpcAvQT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IpcAvQT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IpcAvQT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAMl8.popup-builder {
  background-color: #ffffff;
}
.cid-s26IGEAMl8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-s26IGEAMl8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-s26IGEAMl8 .modal-content,
.cid-s26IGEAMl8 .modal-dialog {
  height: auto;
}
.cid-s26IGEAMl8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-s26IGEAMl8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-s26IGEAMl8 .form-wrapper .mbr-form .form-group,
  .cid-s26IGEAMl8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-s26IGEAMl8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-s26IGEAMl8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s26IGEAMl8 .mbr-text {
  text-align: center;
}
.cid-s26IGEAMl8 .pt-0 {
  padding-top: 0 !important;
}
.cid-s26IGEAMl8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-s26IGEAMl8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-s26IGEAMl8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-s26IGEAMl8 .modal-open {
  overflow: hidden;
}
.cid-s26IGEAMl8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-s26IGEAMl8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-s26IGEAMl8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-s26IGEAMl8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-s26IGEAMl8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-s26IGEAMl8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-s26IGEAMl8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-s26IGEAMl8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-s26IGEAMl8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-s26IGEAMl8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-s26IGEAMl8 .modal-backdrop.show {
  opacity: .5;
}
.cid-s26IGEAMl8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-s26IGEAMl8 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-s26IGEAMl8 .modal-header .close:hover {
  opacity: 1;
}
.cid-s26IGEAMl8 .modal-header .close:focus {
  outline: none;
}
.cid-s26IGEAMl8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-s26IGEAMl8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-s26IGEAMl8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-s26IGEAMl8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-s26IGEAMl8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-s26IGEAMl8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-s26IGEAMl8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-s26IGEAMl8 .modal-sm {
    max-width: 300px;
  }
  .cid-s26IGEAMl8 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-s26IGEAMl8 .modal-lg,
  .cid-s26IGEAMl8 .modal-xl {
    max-width: 800px;
  }
  .cid-s26IGEAMl8 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-s26IGEAMl8 .modal-xl {
    max-width: 1140px;
  }
  .cid-s26IGEAMl8 .container {
    max-width: 1140px;
  }
}
.cid-s26IGEAMl8 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-s26IGEAMl8 .container {
    max-width: 720px;
  }
}
.cid-s26IGEAMl8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-s26IGEAMl8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-s26IGEAMl8 .form-group {
  margin-bottom: 1rem;
}
.cid-s26IGEAMl8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-s26IGEAMl8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-s26IGEAMl8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-s26IGEAMl8 .politicas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.cid-s26IGEAMl8 .politicas a {
  font-size: 13px !important;
  text-align: center;
}
@media (max-width: 767.98px) {
  .cid-s26IGEAMl8 .politicas {
    flex-direction: column;
  }
  .cid-s26IGEAMl8 .politicas a {
    width: 90%;
  }
}
.cid-um1c3YF2Bm.popup-builder {
  background-color: #ffffff;
}
.cid-um1c3YF2Bm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-um1c3YF2Bm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-um1c3YF2Bm .modal-content,
.cid-um1c3YF2Bm .modal-dialog {
  height: auto;
}
.cid-um1c3YF2Bm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-um1c3YF2Bm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-um1c3YF2Bm .form-wrapper .mbr-form .form-group,
  .cid-um1c3YF2Bm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-um1c3YF2Bm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-um1c3YF2Bm .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-um1c3YF2Bm .mbr-text {
  text-align: center;
}
.cid-um1c3YF2Bm .pt-0 {
  padding-top: 0 !important;
}
.cid-um1c3YF2Bm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-um1c3YF2Bm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-um1c3YF2Bm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-um1c3YF2Bm .modal-open {
  overflow: hidden;
}
.cid-um1c3YF2Bm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-um1c3YF2Bm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-um1c3YF2Bm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-um1c3YF2Bm .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-um1c3YF2Bm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-um1c3YF2Bm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-um1c3YF2Bm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-um1c3YF2Bm .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-um1c3YF2Bm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-um1c3YF2Bm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-um1c3YF2Bm .modal-backdrop.fade {
  opacity: 0;
}
.cid-um1c3YF2Bm .modal-backdrop.show {
  opacity: .5;
}
.cid-um1c3YF2Bm .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-um1c3YF2Bm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YF2Bm .modal-header {
    padding: 1rem;
  }
}
.cid-um1c3YF2Bm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-um1c3YF2Bm .modal-header .close svg {
  fill: #353535;
}
.cid-um1c3YF2Bm .modal-header .close:hover {
  opacity: 1;
}
.cid-um1c3YF2Bm .modal-header .close:focus {
  outline: none;
}
.cid-um1c3YF2Bm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-um1c3YF2Bm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-um1c3YF2Bm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YF2Bm .modal-body {
    padding: 1rem;
  }
}
.cid-um1c3YF2Bm .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-um1c3YF2Bm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-um1c3YF2Bm .modal-footer {
    padding: 1rem;
  }
}
.cid-um1c3YF2Bm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-um1c3YF2Bm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-um1c3YF2Bm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-um1c3YF2Bm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-um1c3YF2Bm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-um1c3YF2Bm .modal-lg,
  .cid-um1c3YF2Bm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-um1c3YF2Bm .modal-xl {
    max-width: 1140px;
  }
}
.cid-um1c3YF2Bm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-um1c3YF2Bm .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-um1c3YF2Bm .form-group {
  margin-bottom: 1rem;
}
.cid-um1c3YF2Bm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-um1c3YF2Bm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-um1c3YF2Bm .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-um1c3YF2Bm .mbr-section-btn {
  margin: 0;
}
.cid-um1c3YF2Bm .mbr-section-btn .btn {
  margin: 0;
}
