body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}
/* ---- 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.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #0222a9 !important;
}
.bg-success {
  background-color: #56abe7 !important;
}
.bg-info {
  background-color: #015cc7 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0222a9 !important;
  border-color: #0222a9 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #01135d !important;
  border-color: #01135d !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #01135d !important;
  border-color: #01135d !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #1293e7 !important;
  border-color: #1293e7 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #0c66a0 !important;
  border-color: #0c66a0 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0c66a0 !important;
  border-color: #0c66a0 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #015cc7 !important;
  border-color: #015cc7 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #01397b !important;
  border-color: #01397b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #01397b !important;
  border-color: #01397b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #56abe7 !important;
  border-color: #56abe7 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1e88d3 !important;
  border-color: #1e88d3 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1e88d3 !important;
  border-color: #1e88d3 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !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: #010e44;
  color: #010e44 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #0222a9;
  border-color: #0222a9;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0222a9 !important;
  border-color: #0222a9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0b5788;
  color: #0b5788 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #1293e7;
  border-color: #1293e7;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1293e7 !important;
  border-color: #1293e7 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #002d62;
  color: #002d62 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #015cc7;
  border-color: #015cc7;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #015cc7 !important;
  border-color: #015cc7 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #1b79bc;
  color: #1b79bc !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #56abe7;
  border-color: #56abe7;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #56abe7 !important;
  border-color: #56abe7 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !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: #0222a9 !important;
}
.text-secondary {
  color: #1293e7 !important;
}
.text-success {
  color: #56abe7 !important;
}
.text-info {
  color: #015cc7 !important;
}
.text-warning {
  color: #879a9f !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: #010e44 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #0b5788 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #1b79bc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #002d62 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !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: #56abe7;
}
.alert-info {
  background-color: #015cc7;
}
.alert-warning {
  background-color: #879a9f;
}
.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: #0222a9;
  border-color: #0222a9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0222a9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #2e56fd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #499cfe;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.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: 'Roboto', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #0222a9;
}
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: #0222a9;
  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: #0222a9;
  border-bottom-color: #0222a9;
}
.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: #0222a9 !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: #1293e7 !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='%230222a9' %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-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sTyok0pjJx {
  padding-top: 20rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/botox-1280x711.jpg");
}
.cid-sTyok0pjJx .mbr-section-title {
  color: #000000;
}
.cid-sTyok0pjJx .mbr-text,
.cid-sTyok0pjJx .mbr-section-btn {
  color: #ffffff;
}
.cid-sTyok0pjJx .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sTyok0pjJx .mbr-text2 {
  border-top: 2px solid #000000;
  padding-top: 4rem;
}
.cid-sTyok0pjJx .mbr-text2,
.cid-sTyok0pjJx .mbr-section-btn {
  color: #ffffff;
}
.cid-sLUN8lS9pN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo02.webp");
}
.cid-sLUN8lS9pN .mbr-section-head {
  margin-bottom: 2rem;
}
.cid-sLUN8lS9pN .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #1d2c35;
  margin-left: 1rem;
}
.cid-sLUN8lS9pN .panel-group {
  border: none;
}
.cid-sLUN8lS9pN .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sLUN8lS9pN .panel-body,
.cid-sLUN8lS9pN .card-header {
  padding: 1rem 0;
}
.cid-sLUN8lS9pN .panel-title-edit {
  color: #1d2c35;
  text-align: center;
}
.cid-sLUN8lS9pN .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sLUN8lS9pN .panel-title-edit DIV {
  text-align: center;
}
.cid-sLUN8lS9pN .panel-text {
  text-align: center;
}
.cid-t1FB95OBeQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo03.webp");
}
.cid-t1FB95OBeQ .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1FB95OBeQ .card .card-wrapper {
  background: #ffffff;
  height: 1%;
  border-radius: 20px;
}
.cid-t1FB95OBeQ .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.cid-t1FB95OBeQ .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t1FB95OBeQ .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t1FB95OBeQ .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t1FB95OBeQ .card .card-wrapper .card-box {
  padding: 1.5rem;
  border-radius: 20px;
}
.cid-t1FB95OBeQ .mbr-card-text {
  margin: 0;
}
.cid-t1FB95OBeQ .mbr-section-title {
  text-align: center;
  color: #0222a9;
}
.cid-t1FB95OBeQ .mbr-section-subtitle {
  text-align: center;
}
.cid-t1FB95OBeQ .mbr-title {
  color: #015cc7;
}
.cid-sEiFDh7d1t {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/corporal01-1400x565.jpg");
}
.cid-sEiFDh7d1t .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sEiFDh7d1t .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sEiFDh7d1t .card-img span {
  font-size: 100px;
}
.cid-sEiFDh7d1t .mbr-text,
.cid-sEiFDh7d1t .mbr-section-btn {
  color: #efefef;
  text-align: left;
}
.cid-t1GbHvSHRm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-t1GbHvSHRm .wrap-block {
  padding-right: 30px;
}
.cid-t1GbHvSHRm .cards {
  padding-left: 30px;
}
.cid-t1GbHvSHRm .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-t1GbHvSHRm .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-t1GbHvSHRm .wrap-block .contents .mbr-subtitle {
  color: #1293e7;
  margin-bottom: 14px;
}
.cid-t1GbHvSHRm .wrap-block .contents .mbr-section-title {
  margin-bottom: 5px;
  color: #0222a9;
}
.cid-t1GbHvSHRm .wrap-block .contents .mbr-text {
  margin-top: 17px;
}
.cid-t1GbHvSHRm .wrap-block .contents h3 {
  color: #015cc7;
}
.cid-t1GbHvSHRm .wrap-block .contents h4 {
  color: #015cc7;
}
.cid-t1GbHvSHRm .wrap-block .contents .mbr-section-btn .btn {
  margin-left: 0 !important;
}
.cid-t1GbHvSHRm .cards-wrap {
  flex-direction: column;
}
.cid-t1GbHvSHRm .wrapper {
  border-radius: 0.25rem;
  margin-bottom: 26px;
}
.cid-t1GbHvSHRm .wrapper .img {
  margin-bottom: 20px;
}
.cid-t1GbHvSHRm .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #1293e7;
  border-radius: 50%;
}
.cid-t1GbHvSHRm .wrapper .mbr-card-title {
  color: #0222a9;
  padding-bottom: 14px;
  margin-bottom: 10px;
}
.cid-t1GbHvSHRm .wrapper .mbr-text {
  margin-bottom: 19px;
  color: #015cc7;
}
@media (max-width: 767px) {
  .cid-t1GbHvSHRm * {
    text-align: left;
  }
}
.cid-t1GbHvSHRm .wrapper .mbr-card-title,
.cid-t1GbHvSHRm .img {
  color: #015cc7;
}
.cid-t1GbdIeI7L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fundo03.webp");
}
.cid-t1GbdIeI7L .mbr-overlay {
  background: #fafafa;
  opacity: 0.8;
}
.cid-t1GbdIeI7L img,
.cid-t1GbdIeI7L .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-t1GbdIeI7L .item:focus,
.cid-t1GbdIeI7L span:focus {
  outline: none;
}
.cid-t1GbdIeI7L .item-wrapper {
  position: relative;
}
.cid-t1GbdIeI7L .slide-content {
  position: relative;
  border-radius: 10px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1GbdIeI7L .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1GbdIeI7L .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t1GbdIeI7L .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1GbdIeI7L .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1GbdIeI7L .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1GbdIeI7L .mbr-section-title {
  color: #015cc7;
}
.cid-t1GbdIeI7L .mbr-text,
.cid-t1GbdIeI7L .mbr-section-btn {
  text-align: center;
}
.cid-t1GbdIeI7L .item-title {
  text-align: center;
  color: #1c378b;
}
.cid-t1GbdIeI7L .item-subtitle {
  text-align: left;
}
.cid-t1GbdIeI7L .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 350px;
  max-width: 350px;
}
@media (max-width: 768px) {
  .cid-t1GbdIeI7L .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t1GbdIeI7L .embla__button--next,
.cid-t1GbdIeI7L .embla__button--prev {
  display: flex;
}
.cid-t1GbdIeI7L .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-t1GbdIeI7L .embla__button {
    display: none;
  }
}
.cid-t1GbdIeI7L .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t1GbdIeI7L .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t1GbdIeI7L .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t1GbdIeI7L .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t1GbdIeI7L .embla__button {
    top: auto;
  }
}
.cid-t1GbdIeI7L .embla {
  position: relative;
  width: 100%;
}
.cid-t1GbdIeI7L .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t1GbdIeI7L .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t1GbdIeI7L .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t1GbdIeI7L .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sx8WvXcTij {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/o-que-e-visagismo-1200x801.jpg");
}
.cid-sx8WvXcTij .mbr-section-title {
  letter-spacing: .1em;
}
.cid-sx8WvXcTij .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-sx8WvXcTij .card-img span {
  font-size: 100px;
}
.cid-sx8WvXcTij .mbr-text,
.cid-sx8WvXcTij .mbr-section-btn {
  color: #efefef;
  text-align: right;
}
.cid-sTyIWL5nCW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f8f8f8;
  overflow: hidden;
}
.cid-sTyIWL5nCW .row {
  flex-direction: row-reverse;
}
.cid-sTyIWL5nCW svg {
  position: absolute;
  top: 50px;
  width: 1700px;
  right: -80px;
  transform: scaleX(1) scaleY(1.3) rotate(0deg);
  animation: 1.5s ease-in-out infinite alternate svg;
}
.cid-sTyIWL5nCW svg path {
  fill: #1293e7;
}
@media (max-width: 992px) {
  .cid-sTyIWL5nCW svg {
    width: 1500px;
  }
}
@media (max-width: 767px) {
  .cid-sTyIWL5nCW svg {
    width: 800px;
  }
}
@keyframes svg {
  from {
    transform: scaleX(1.2) scaleY(1.35) rotate(-1deg);
  }
  to {
    transform: scaleX(1) scaleY(1.3) rotate(0deg);
  }
}
.cid-sTyIWL5nCW .mbr-section-title {
  color: #1a449a;
}
@media (min-width: 1400px) {
  .cid-sTyIWL5nCW .col-12 {
    padding: 0 2rem;
  }
  .cid-sTyIWL5nCW .row {
    margin: 0 -2rem;
  }
}
.cid-sTyIWL5nCW .mbr-text,
.cid-sTyIWL5nCW .mbr-section-btn {
  color: #465052;
}
.cid-sTRaDPlZLP {
  background: #1293e7;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-sTRaDPlZLP .container-fluid {
  padding: 0 3rem;
}
.cid-sTRaDPlZLP .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-sTRaDPlZLP .container-fluid {
    padding: 0 1rem;
  }
  .cid-sTRaDPlZLP .video-block {
    width: 100% !important;
  }
}
.cid-sLVhpgiB33 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLVhpgiB33 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sLVhpgiB33 .card-img {
  padding-bottom: 2rem;
}
.cid-sLVhpgiB33 .mbr-text {
  color: #767676;
}
.cid-sLVhpgiB33 span {
  font-size: 14px;
  color: #ffffff;
}
.cid-sLVhpgiB33 .mbr-section-btn {
  margin-left: 0;
}
.cid-sLVhpgiB33 .date span {
  display: inline-block;
  background-color: #1293e7;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sLVhpgiB33 .card-title {
    text-align: center;
  }
  .cid-sLVhpgiB33 p.mbr-text,
  .cid-sLVhpgiB33 p.date {
    text-align: center;
  }
}
.cid-sLVhpgiB33 H2 {
  color: #0222a9;
}
.cid-sRLwaI618X {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-sRLwaI618X .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sRLwaI618X textarea {
  min-height: 150px;
}
.cid-sRLwaI618X .mbr-section-btn {
  margin: 0.4rem;
  padding-top: 1.5rem;
}
.cid-sRLwaI618X .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #0222a9;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-sRLwaI618X .form-control,
.cid-sRLwaI618X .field-input {
  padding: 0.5rem 1.2rem;
  background-color: #ffffff;
  border: 3px solid #ebeced;
  color: #767676;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  outline: none;
}
.cid-sRLwaI618X .form-control:hover,
.cid-sRLwaI618X .field-input:hover,
.cid-sRLwaI618X .form-control:focus,
.cid-sRLwaI618X .field-input:focus {
  background-color: #f5f5f7;
  border: 3px solid #ebeced;
  box-shadow: none;
  outline: none;
}
.cid-sRLwaI618X input::-webkit-input-placeholder,
.cid-sRLwaI618X textarea::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sRLwaI618X input:-moz-placeholder,
.cid-sRLwaI618X textarea:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sRLwaI618X .jq-selectbox li,
.cid-sRLwaI618X .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sRLwaI618X .jq-selectbox li:hover,
.cid-sRLwaI618X .jq-selectbox li.selected {
  background-color: #f5f5f7;
  color: #000000;
}
.cid-sRLwaI618X .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sRLwaI618X .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f7;
}
.cid-sRLwaI618X H2 {
  color: #1293e7;
}
.cid-sRLwaI618X .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
}
.cid-sRLwaI618X .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sRLwaI618X .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-sRLwaI618X .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sRLwaI618X .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-sRLwaI618X .md-pb {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sRLwaI618X .col-auto {
    margin: auto;
  }
}
.cid-sxcoavPLTB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sxcoavPLTB .content {
    text-align: center;
  }
  .cid-sxcoavPLTB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sxcoavPLTB .logo-subtitle {
  color: #8d97ad;
}
.cid-sxcoavPLTB .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sxcoavPLTB .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sxcoavPLTB .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sxcoavPLTB .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sxcoavPLTB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sxcoavPLTB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sxcoavPLTB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sxcoavPLTB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sxcoavPLTB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sxcoavPLTB .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sxcoavPLTB .list-item {
  display: flex;
}
.cid-sxcoavPLTB .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sxcoavPLTB ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sxcoavPLTB ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sxcoavPLTB ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sxcoavPLTB .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB P {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sxcoavPLTB .mbr-text DIV {
  text-align: left;
}
.cid-sxcoavPLTB .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sxcoavPLTB .logo-subtitle,
.cid-sxcoavPLTB .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sxcoavPLTB .mbr-text P {
  text-align: left;
}
.cid-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sxpsDzKF9F {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxpsDzKF9F .mbr-text {
  color: #767676;
}
.cid-sxpEp8S0px {
  padding-top: 18rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sxpEp8S0px .mbr-text,
.cid-sxpEp8S0px .mbr-section-btn {
  color: #015cc7;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sxpEp8S0px .mbr-section-title,
  .cid-sxpEp8S0px .mbr-section-btn,
  .cid-sxpEp8S0px .mbr-text {
    text-align: center;
  }
}
.cid-sxpEp8S0px .mbr-section-subtitle {
  color: #ffffff;
  letter-spacing: 6px;
}
.cid-sxpEp8S0px .mbr-section-btn {
  padding-top: 13rem;
}
.cid-sx8FerK7qQ .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sx8FerK7qQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sx8FerK7qQ a {
  font-style: normal;
}
.cid-sx8FerK7qQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sx8FerK7qQ .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sx8FerK7qQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .content-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sx8FerK7qQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sx8FerK7qQ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sx8FerK7qQ .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sx8FerK7qQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sx8FerK7qQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sx8FerK7qQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sx8FerK7qQ .content-right-side {
  text-align: center;
}
.cid-sx8FerK7qQ .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sx8FerK7qQ .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sx8FerK7qQ .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sx8FerK7qQ img {
    height: 1rem !important;
  }
  .cid-sx8FerK7qQ .btn {
    display: -webkit-flex;
  }
  .cid-sx8FerK7qQ button.navbar-toggler {
    display: block;
  }
  .cid-sx8FerK7qQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sx8FerK7qQ .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing,
  .cid-sx8FerK7qQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sx8FerK7qQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sx8FerK7qQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sx8FerK7qQ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sx8FerK7qQ .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sx8FerK7qQ .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sx8FerK7qQ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sx8FerK7qQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sx8FerK7qQ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sx8FerK7qQ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sx8FerK7qQ .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sx8FerK7qQ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sx8FerK7qQ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sx8FerK7qQ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sx8FerK7qQ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sx8FerK7qQ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sx8FerK7qQ .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sx8FerK7qQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sx8FerK7qQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sx8FerK7qQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sx8FerK7qQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sx8FerK7qQ .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sx8FerK7qQ .navbar-toggler {
    display: none;
  }
  .cid-sx8FerK7qQ .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sx8FerK7qQ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sx8FerK7qQ .menu-logo {
  margin-right: auto;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sx8FerK7qQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sx8FerK7qQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sx8FerK7qQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sx8FerK7qQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sx8FerK7qQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sx8FerK7qQ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sx8FerK7qQ .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sx8FerK7qQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sx8FerK7qQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sx8FerK7qQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sx8FerK7qQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sx8FerK7qQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sx8FerK7qQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sx8FerK7qQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sx8FerK7qQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sx8FerK7qQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sx8FerK7qQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sx8FerK7qQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sx8FerK7qQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sx8FerK7qQ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sx8FerK7qQ .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sx8FerK7qQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sx8FerK7qQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sx8FerK7qQ .nav-link:focus {
  outline: none;
}
.cid-sx8FerK7qQ .navbar-toggler {
  position: relative;
}
.cid-sx8FerK7qQ .dropdown-item.active,
.cid-sx8FerK7qQ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sx8FerK7qQ .nav-link:hover,
.cid-sx8FerK7qQ .dropdown-item:hover {
  color: #4284df;
}
.cid-sx8FerK7qQ .widget-title,
.cid-sx8FerK7qQ .widget-icon {
  color: #777d74;
}
.cid-sx8FerK7qQ .widget-text {
  color: #777d74;
}
.cid-sMcuYBtPRq .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sMcuYBtPRq .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sMcuYBtPRq a {
  font-style: normal;
}
.cid-sMcuYBtPRq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sMcuYBtPRq .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sMcuYBtPRq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcuYBtPRq .content-text {
  margin-bottom: 0;
}
.cid-sMcuYBtPRq .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sMcuYBtPRq .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sMcuYBtPRq .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sMcuYBtPRq .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sMcuYBtPRq .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sMcuYBtPRq .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sMcuYBtPRq .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sMcuYBtPRq .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sMcuYBtPRq .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMcuYBtPRq .nav-dropdown .link {
  font-weight: 400;
}
.cid-sMcuYBtPRq .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sMcuYBtPRq .content-right-side {
  text-align: center;
}
.cid-sMcuYBtPRq .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sMcuYBtPRq .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sMcuYBtPRq .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sMcuYBtPRq .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sMcuYBtPRq .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sMcuYBtPRq .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sMcuYBtPRq img {
    height: 1rem !important;
  }
  .cid-sMcuYBtPRq .btn {
    display: -webkit-flex;
  }
  .cid-sMcuYBtPRq button.navbar-toggler {
    display: block;
  }
  .cid-sMcuYBtPRq .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sMcuYBtPRq .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sMcuYBtPRq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing,
  .cid-sMcuYBtPRq .navbar-collapse.show {
    display: block !important;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing .navbar-nav,
  .cid-sMcuYBtPRq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sMcuYBtPRq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sMcuYBtPRq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing .navbar-buttons,
  .cid-sMcuYBtPRq .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sMcuYBtPRq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sMcuYBtPRq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sMcuYBtPRq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sMcuYBtPRq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sMcuYBtPRq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sMcuYBtPRq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sMcuYBtPRq .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sMcuYBtPRq .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sMcuYBtPRq .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sMcuYBtPRq .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sMcuYBtPRq .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sMcuYBtPRq .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sMcuYBtPRq .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sMcuYBtPRq .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sMcuYBtPRq .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sMcuYBtPRq .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcuYBtPRq .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sMcuYBtPRq .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sMcuYBtPRq .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sMcuYBtPRq .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sMcuYBtPRq .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sMcuYBtPRq .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sMcuYBtPRq .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sMcuYBtPRq .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sMcuYBtPRq .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sMcuYBtPRq .navbar {
    display: block;
    padding: 0;
  }
  .cid-sMcuYBtPRq .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sMcuYBtPRq .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sMcuYBtPRq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sMcuYBtPRq .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sMcuYBtPRq .navbar-toggler {
    display: none;
  }
  .cid-sMcuYBtPRq .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sMcuYBtPRq .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcuYBtPRq .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sMcuYBtPRq .menu-logo {
  margin-right: auto;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sMcuYBtPRq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sMcuYBtPRq .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sMcuYBtPRq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sMcuYBtPRq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMcuYBtPRq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sMcuYBtPRq .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcuYBtPRq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sMcuYBtPRq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMcuYBtPRq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sMcuYBtPRq .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sMcuYBtPRq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sMcuYBtPRq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sMcuYBtPRq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sMcuYBtPRq .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sMcuYBtPRq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMcuYBtPRq button.navbar-toggler:focus {
  outline: none;
}
.cid-sMcuYBtPRq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sMcuYBtPRq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sMcuYBtPRq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sMcuYBtPRq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sMcuYBtPRq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sMcuYBtPRq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMcuYBtPRq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sMcuYBtPRq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sMcuYBtPRq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMcuYBtPRq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMcuYBtPRq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMcuYBtPRq .collapsed .btn {
  display: -webkit-flex;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sMcuYBtPRq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sMcuYBtPRq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sMcuYBtPRq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sMcuYBtPRq .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sMcuYBtPRq .collapsed button.navbar-toggler {
  display: block;
}
.cid-sMcuYBtPRq .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sMcuYBtPRq .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sMcuYBtPRq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sMcuYBtPRq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sMcuYBtPRq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sMcuYBtPRq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sMcuYBtPRq .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMcuYBtPRq .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sMcuYBtPRq .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sMcuYBtPRq .nav-link:focus {
  outline: none;
}
.cid-sMcuYBtPRq .navbar-toggler {
  position: relative;
}
.cid-sMcuYBtPRq .dropdown-item.active,
.cid-sMcuYBtPRq .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sMcuYBtPRq .nav-link:hover,
.cid-sMcuYBtPRq .dropdown-item:hover {
  color: #4284df;
}
.cid-sMcuYBtPRq .widget-title,
.cid-sMcuYBtPRq .widget-icon {
  color: #777d74;
}
.cid-sMcuYBtPRq .widget-text {
  color: #777d74;
}
.cid-sMcuYCLSTp {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sMcuYCLSTp .mbr-section-title {
  text-align: center;
  color: #1293e7;
}
.cid-sMcvdnIuSs {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sMcvdnIuSs .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sMcvdnIuSs .form-group {
  margin-bottom: 30px;
}
.cid-sMcvdnIuSs input,
.cid-sMcvdnIuSs textarea {
  border-radius: 0;
  padding: 1.5rem !important;
}
.cid-sMcvdnIuSs input.form-control {
  min-height: 4.125rem;
}
.cid-sMcvdnIuSs .form-group {
  position: relative;
  z-index: 1;
}
.cid-sMcvdnIuSs .form-group:after {
  display: block;
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5px;
  height: 5px;
  width: 0px;
  background-color: #1293e7;
  transition: width 0.5s ease-in;
  z-index: 2;
}
.cid-sMcvdnIuSs .form-group:focus-within:after {
  width: calc(100% - 10px);
}
.cid-sMcvdnIuSs .form-control,
.cid-sMcvdnIuSs .field-input {
  padding: 0.5rem;
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #171717;
  font-size: 1rem;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sMcvdnIuSs .form-control:focus,
.cid-sMcvdnIuSs .field-input:focus {
  background-color: #1562a6;
  border-color: #f8f8f8;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sMcvdnIuSs input::-webkit-input-placeholder,
.cid-sMcvdnIuSs textarea::-webkit-input-placeholder {
  color: #999999;
}
.cid-sMcvdnIuSs input:-moz-placeholder,
.cid-sMcvdnIuSs textarea:-moz-placeholder {
  color: #999999;
}
.cid-sMcvdnIuSs .jq-selectbox li,
.cid-sMcvdnIuSs .jq-selectbox li {
  background-color: #f8f8f8;
  color: #000000;
}
.cid-sMcvdnIuSs .jq-selectbox li:hover,
.cid-sMcvdnIuSs .jq-selectbox li.selected {
  background-color: #1562a6;
  color: #ffffff;
}
.cid-sMcvdnIuSs .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f8f8f8;
}
.cid-sMcvdnIuSs .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #1562a6;
}
.cid-sMcvdnIuSs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sMcvdnIuSs .mbr-form {
  max-width: 990px;
}
.cid-sMcvdnIuSs textarea {
  min-height: 150px;
  resize: none;
}
.cid-sMcvdnIuSs .mbr-form .btn {
  width: auto;
  justify-content: space-between;
}
.cid-sMcvdnIuSs .mbr-form .btn .mbr-iconfont {
  order: 2;
  font-size: 1.5rem;
}
.cid-sMcuYEqArC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sMcuYEqArC .content {
    text-align: center;
  }
  .cid-sMcuYEqArC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sMcuYEqArC .logo-subtitle {
  color: #8d97ad;
}
.cid-sMcuYEqArC .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sMcuYEqArC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sMcuYEqArC .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sMcuYEqArC .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sMcuYEqArC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sMcuYEqArC .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sMcuYEqArC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sMcuYEqArC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sMcuYEqArC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sMcuYEqArC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sMcuYEqArC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMcuYEqArC .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sMcuYEqArC .list-item {
  display: flex;
}
.cid-sMcuYEqArC .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sMcuYEqArC ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sMcuYEqArC ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sMcuYEqArC ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sMcuYEqArC .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sMcuYEqArC P {
  color: #ffffff;
  text-align: left;
}
.cid-sMcuYEqArC .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sMcuYEqArC .mbr-text DIV {
  text-align: left;
}
.cid-sMcuYEqArC .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sMcuYEqArC .logo-subtitle,
.cid-sMcuYEqArC .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sMcuYEqArC .mbr-text P {
  text-align: left;
}
.cid-sMcgFUfPse .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sMcgFUfPse .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sMcgFUfPse a {
  font-style: normal;
}
.cid-sMcgFUfPse .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sMcgFUfPse .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sMcgFUfPse .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcgFUfPse .content-text {
  margin-bottom: 0;
}
.cid-sMcgFUfPse .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sMcgFUfPse .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sMcgFUfPse .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sMcgFUfPse .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sMcgFUfPse .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sMcgFUfPse .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sMcgFUfPse .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sMcgFUfPse .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sMcgFUfPse .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMcgFUfPse .nav-dropdown .link {
  font-weight: 400;
}
.cid-sMcgFUfPse .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sMcgFUfPse .content-right-side {
  text-align: center;
}
.cid-sMcgFUfPse .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sMcgFUfPse .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sMcgFUfPse .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sMcgFUfPse .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sMcgFUfPse .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sMcgFUfPse .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sMcgFUfPse img {
    height: 1rem !important;
  }
  .cid-sMcgFUfPse .btn {
    display: -webkit-flex;
  }
  .cid-sMcgFUfPse button.navbar-toggler {
    display: block;
  }
  .cid-sMcgFUfPse .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sMcgFUfPse .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sMcgFUfPse .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing,
  .cid-sMcgFUfPse .navbar-collapse.show {
    display: block !important;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing .navbar-nav,
  .cid-sMcgFUfPse .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sMcgFUfPse .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sMcgFUfPse .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing .navbar-buttons,
  .cid-sMcgFUfPse .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sMcgFUfPse .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sMcgFUfPse .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sMcgFUfPse .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sMcgFUfPse .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sMcgFUfPse .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sMcgFUfPse .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sMcgFUfPse .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sMcgFUfPse .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sMcgFUfPse .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sMcgFUfPse .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sMcgFUfPse .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sMcgFUfPse .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sMcgFUfPse .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sMcgFUfPse .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sMcgFUfPse .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sMcgFUfPse .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcgFUfPse .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sMcgFUfPse .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sMcgFUfPse .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sMcgFUfPse .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sMcgFUfPse .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sMcgFUfPse .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sMcgFUfPse .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sMcgFUfPse .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sMcgFUfPse .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sMcgFUfPse .navbar {
    display: block;
    padding: 0;
  }
  .cid-sMcgFUfPse .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sMcgFUfPse .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sMcgFUfPse .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sMcgFUfPse .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sMcgFUfPse .navbar-toggler {
    display: none;
  }
  .cid-sMcgFUfPse .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sMcgFUfPse .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcgFUfPse .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sMcgFUfPse .menu-logo {
  margin-right: auto;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sMcgFUfPse .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sMcgFUfPse .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sMcgFUfPse .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sMcgFUfPse .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMcgFUfPse .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sMcgFUfPse .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sMcgFUfPse .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sMcgFUfPse .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sMcgFUfPse .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMcgFUfPse .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sMcgFUfPse .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sMcgFUfPse .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sMcgFUfPse .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sMcgFUfPse .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sMcgFUfPse .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sMcgFUfPse button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sMcgFUfPse button.navbar-toggler:focus {
  outline: none;
}
.cid-sMcgFUfPse button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sMcgFUfPse button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sMcgFUfPse button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sMcgFUfPse button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sMcgFUfPse button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sMcgFUfPse nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMcgFUfPse nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sMcgFUfPse nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sMcgFUfPse nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sMcgFUfPse .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMcgFUfPse .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMcgFUfPse .collapsed .btn {
  display: -webkit-flex;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sMcgFUfPse .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sMcgFUfPse .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sMcgFUfPse .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sMcgFUfPse .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sMcgFUfPse .collapsed button.navbar-toggler {
  display: block;
}
.cid-sMcgFUfPse .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sMcgFUfPse .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sMcgFUfPse .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sMcgFUfPse .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sMcgFUfPse .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sMcgFUfPse .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sMcgFUfPse .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMcgFUfPse .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sMcgFUfPse .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sMcgFUfPse .nav-link:focus {
  outline: none;
}
.cid-sMcgFUfPse .navbar-toggler {
  position: relative;
}
.cid-sMcgFUfPse .dropdown-item.active,
.cid-sMcgFUfPse .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sMcgFUfPse .nav-link:hover,
.cid-sMcgFUfPse .dropdown-item:hover {
  color: #4284df;
}
.cid-sMcgFUfPse .widget-title,
.cid-sMcgFUfPse .widget-icon {
  color: #777d74;
}
.cid-sMcgFUfPse .widget-text {
  color: #777d74;
}
.cid-sMcgFVjGJ4 {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-2.webp");
}
.cid-sMcgFVjGJ4 .mbr-section-title {
  text-align: center;
  color: #0222a9;
}
.cid-sMciUTQPOI {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sMciUTQPOI .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sMciUTQPOI .row-element,
.cid-sMciUTQPOI .image-element {
  padding: 0;
}
.cid-sMciUTQPOI .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sMciUTQPOI .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sMciUTQPOI .text-content {
  padding: 3rem;
}
.cid-sMciUTQPOI .mbr-section-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-sMciUTQPOI .text-content {
    padding: 2rem 1rem;
  }
  .cid-sMciUTQPOI .mbr-title,
  .cid-sMciUTQPOI .underline,
  .cid-sMciUTQPOI .mbr-text,
  .cid-sMciUTQPOI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-sMciUTQPOI .mbr-text,
.cid-sMciUTQPOI .mbr-section-btn {
  text-align: left;
}
.cid-sU8E3xgChs {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #e1f3ff;
}
.cid-sU8E3xgChs img,
.cid-sU8E3xgChs .item-img {
  width: 100%;
  border-radius: 50%;
}
.cid-sU8E3xgChs .item:focus,
.cid-sU8E3xgChs span:focus {
  outline: none;
}
.cid-sU8E3xgChs .item {
  cursor: pointer;
  margin-bottom: 1rem;
}
.cid-sU8E3xgChs .item-wrapper {
  position: relative;
  border-radius: 50%;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sU8E3xgChs .item-wrapper .item-content {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sU8E3xgChs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sU8E3xgChs .item-wrapper {
  background: transparent;
}
.cid-sU8E3xgChs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sU8E3xgChs .mbr-section-title {
  color: #149dcc;
}
.cid-sU8E3xgChs .mbr-text,
.cid-sU8E3xgChs .mbr-section-btn {
  text-align: center;
}
.cid-sU8E3xgChs .item-title {
  text-align: center;
  color: #1293e7;
}
.cid-sU8E3xgChs .item-subtitle {
  text-align: center;
}
.cid-sU8E3xgChs .mbr-section-subtitle {
  color: #015cc7;
}
.cid-sTz251qWOs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e1f3ff;
}
.cid-sTz251qWOs .mbr-text {
  text-align: center;
}
.cid-sU8FCMI0Dk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/fundo04.webp");
}
.cid-sU8FCMI0Dk .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-sU8FCMI0Dk img,
.cid-sU8FCMI0Dk .item-img {
  width: 100%;
}
.cid-sU8FCMI0Dk .item:focus,
.cid-sU8FCMI0Dk span:focus {
  outline: none;
}
.cid-sU8FCMI0Dk .item-wrapper {
  position: relative;
}
.cid-sU8FCMI0Dk .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sU8FCMI0Dk .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sU8FCMI0Dk .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-sU8FCMI0Dk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sU8FCMI0Dk .mbr-section-title {
  color: #232323;
}
.cid-sU8FCMI0Dk .mbr-text,
.cid-sU8FCMI0Dk .mbr-section-btn {
  text-align: left;
}
.cid-sU8FCMI0Dk .item-title {
  text-align: left;
}
.cid-sU8FCMI0Dk .item-subtitle {
  text-align: left;
}
.cid-sU8FCMI0Dk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-sU8FCMI0Dk .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-sU8FCMI0Dk .embla__button--next,
.cid-sU8FCMI0Dk .embla__button--prev {
  display: flex;
}
.cid-sU8FCMI0Dk .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sU8FCMI0Dk .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-sU8FCMI0Dk .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-sU8FCMI0Dk .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sU8FCMI0Dk .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sU8FCMI0Dk .embla__button {
    top: auto;
  }
}
.cid-sU8FCMI0Dk .embla {
  position: relative;
  width: 100%;
}
.cid-sU8FCMI0Dk .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-sU8FCMI0Dk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sU8FCMI0Dk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sU8FCMI0Dk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sMcgFWU3HG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sMcgFWU3HG .content {
    text-align: center;
  }
  .cid-sMcgFWU3HG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sMcgFWU3HG .logo-subtitle {
  color: #8d97ad;
}
.cid-sMcgFWU3HG .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sMcgFWU3HG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sMcgFWU3HG .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sMcgFWU3HG .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sMcgFWU3HG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sMcgFWU3HG .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sMcgFWU3HG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sMcgFWU3HG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sMcgFWU3HG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sMcgFWU3HG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sMcgFWU3HG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMcgFWU3HG .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sMcgFWU3HG .list-item {
  display: flex;
}
.cid-sMcgFWU3HG .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sMcgFWU3HG ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sMcgFWU3HG ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sMcgFWU3HG ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sMcgFWU3HG .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sMcgFWU3HG P {
  color: #ffffff;
  text-align: left;
}
.cid-sMcgFWU3HG .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sMcgFWU3HG .mbr-text DIV {
  text-align: left;
}
.cid-sMcgFWU3HG .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sMcgFWU3HG .logo-subtitle,
.cid-sMcgFWU3HG .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sMcgFWU3HG .mbr-text P {
  text-align: left;
}
.cid-sRLODnBQTO {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sRLODnBQTO .mbr-section-title {
  text-align: center;
  color: #1293e7;
}
.cid-t1GxGjfMMd {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t1GxGjfMMd .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GxGjfMMd .card .card-wrapper {
  background: #ffffff;
  height: 1%;
  border-radius: 20px;
}
.cid-t1GxGjfMMd .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.cid-t1GxGjfMMd .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t1GxGjfMMd .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t1GxGjfMMd .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t1GxGjfMMd .card .card-wrapper .card-box {
  padding: 1.5rem;
  border-radius: 20px;
}
.cid-t1GxGjfMMd .mbr-card-text {
  margin: 0;
}
.cid-t1GxGjfMMd .mbr-section-title {
  text-align: center;
  color: #0222a9;
}
.cid-t1GxGjfMMd .mbr-section-subtitle {
  text-align: center;
}
.cid-t1GxGjfMMd .mbr-title {
  color: #015cc7;
}
.cid-sRLODoHfVA .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sRLODoHfVA .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sRLODoHfVA a {
  font-style: normal;
}
.cid-sRLODoHfVA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sRLODoHfVA .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sRLODoHfVA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRLODoHfVA .content-text {
  margin-bottom: 0;
}
.cid-sRLODoHfVA .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sRLODoHfVA .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sRLODoHfVA .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sRLODoHfVA .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sRLODoHfVA .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sRLODoHfVA .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sRLODoHfVA .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sRLODoHfVA .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sRLODoHfVA .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRLODoHfVA .nav-dropdown .link {
  font-weight: 400;
}
.cid-sRLODoHfVA .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sRLODoHfVA .content-right-side {
  text-align: center;
}
.cid-sRLODoHfVA .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sRLODoHfVA .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sRLODoHfVA .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sRLODoHfVA .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sRLODoHfVA .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sRLODoHfVA .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sRLODoHfVA img {
    height: 1rem !important;
  }
  .cid-sRLODoHfVA .btn {
    display: -webkit-flex;
  }
  .cid-sRLODoHfVA button.navbar-toggler {
    display: block;
  }
  .cid-sRLODoHfVA .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sRLODoHfVA .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sRLODoHfVA .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing,
  .cid-sRLODoHfVA .navbar-collapse.show {
    display: block !important;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing .navbar-nav,
  .cid-sRLODoHfVA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sRLODoHfVA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sRLODoHfVA .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing .navbar-buttons,
  .cid-sRLODoHfVA .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sRLODoHfVA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sRLODoHfVA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRLODoHfVA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sRLODoHfVA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sRLODoHfVA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sRLODoHfVA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sRLODoHfVA .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sRLODoHfVA .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sRLODoHfVA .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sRLODoHfVA .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sRLODoHfVA .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sRLODoHfVA .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sRLODoHfVA .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sRLODoHfVA .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sRLODoHfVA .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sRLODoHfVA .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRLODoHfVA .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sRLODoHfVA .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sRLODoHfVA .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sRLODoHfVA .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sRLODoHfVA .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sRLODoHfVA .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRLODoHfVA .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sRLODoHfVA .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sRLODoHfVA .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sRLODoHfVA .navbar {
    display: block;
    padding: 0;
  }
  .cid-sRLODoHfVA .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sRLODoHfVA .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sRLODoHfVA .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sRLODoHfVA .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sRLODoHfVA .navbar-toggler {
    display: none;
  }
  .cid-sRLODoHfVA .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sRLODoHfVA .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRLODoHfVA .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sRLODoHfVA .menu-logo {
  margin-right: auto;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sRLODoHfVA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sRLODoHfVA .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sRLODoHfVA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sRLODoHfVA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRLODoHfVA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sRLODoHfVA .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sRLODoHfVA .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRLODoHfVA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sRLODoHfVA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRLODoHfVA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sRLODoHfVA .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sRLODoHfVA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sRLODoHfVA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sRLODoHfVA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sRLODoHfVA .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sRLODoHfVA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRLODoHfVA button.navbar-toggler:focus {
  outline: none;
}
.cid-sRLODoHfVA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sRLODoHfVA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRLODoHfVA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRLODoHfVA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRLODoHfVA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRLODoHfVA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRLODoHfVA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRLODoHfVA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRLODoHfVA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRLODoHfVA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRLODoHfVA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRLODoHfVA .collapsed .btn {
  display: -webkit-flex;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sRLODoHfVA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sRLODoHfVA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRLODoHfVA .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sRLODoHfVA .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sRLODoHfVA .collapsed button.navbar-toggler {
  display: block;
}
.cid-sRLODoHfVA .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sRLODoHfVA .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sRLODoHfVA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sRLODoHfVA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sRLODoHfVA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sRLODoHfVA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sRLODoHfVA .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRLODoHfVA .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sRLODoHfVA .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sRLODoHfVA .nav-link:focus {
  outline: none;
}
.cid-sRLODoHfVA .navbar-toggler {
  position: relative;
}
.cid-sRLODoHfVA .dropdown-item.active,
.cid-sRLODoHfVA .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sRLODoHfVA .nav-link:hover,
.cid-sRLODoHfVA .dropdown-item:hover {
  color: #4284df;
}
.cid-sRLODoHfVA .widget-title,
.cid-sRLODoHfVA .widget-icon {
  color: #777d74;
}
.cid-sRLODoHfVA .widget-text {
  color: #777d74;
}
.cid-sRLODpe9Hh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sRLODpe9Hh .content {
    text-align: center;
  }
  .cid-sRLODpe9Hh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sRLODpe9Hh .logo-subtitle {
  color: #8d97ad;
}
.cid-sRLODpe9Hh .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sRLODpe9Hh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sRLODpe9Hh .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sRLODpe9Hh .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sRLODpe9Hh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sRLODpe9Hh .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sRLODpe9Hh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sRLODpe9Hh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sRLODpe9Hh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRLODpe9Hh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sRLODpe9Hh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRLODpe9Hh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sRLODpe9Hh .list-item {
  display: flex;
}
.cid-sRLODpe9Hh .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sRLODpe9Hh ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sRLODpe9Hh ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sRLODpe9Hh ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sRLODpe9Hh .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sRLODpe9Hh P {
  color: #ffffff;
  text-align: left;
}
.cid-sRLODpe9Hh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sRLODpe9Hh .mbr-text DIV {
  text-align: left;
}
.cid-sRLODpe9Hh .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sRLODpe9Hh .logo-subtitle,
.cid-sRLODpe9Hh .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sRLODpe9Hh .mbr-text P {
  text-align: left;
}
.cid-sRRCekjnFO {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sRRCekjnFO .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-sRRCelmNTr .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sRRCelmNTr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sRRCelmNTr a {
  font-style: normal;
}
.cid-sRRCelmNTr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sRRCelmNTr .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sRRCelmNTr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRRCelmNTr .content-text {
  margin-bottom: 0;
}
.cid-sRRCelmNTr .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sRRCelmNTr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sRRCelmNTr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sRRCelmNTr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sRRCelmNTr .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sRRCelmNTr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sRRCelmNTr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sRRCelmNTr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sRRCelmNTr .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRRCelmNTr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sRRCelmNTr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sRRCelmNTr .content-right-side {
  text-align: center;
}
.cid-sRRCelmNTr .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sRRCelmNTr .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sRRCelmNTr .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sRRCelmNTr .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sRRCelmNTr .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sRRCelmNTr .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sRRCelmNTr img {
    height: 1rem !important;
  }
  .cid-sRRCelmNTr .btn {
    display: -webkit-flex;
  }
  .cid-sRRCelmNTr button.navbar-toggler {
    display: block;
  }
  .cid-sRRCelmNTr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sRRCelmNTr .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sRRCelmNTr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing,
  .cid-sRRCelmNTr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing .navbar-nav,
  .cid-sRRCelmNTr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sRRCelmNTr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sRRCelmNTr .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sRRCelmNTr .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sRRCelmNTr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sRRCelmNTr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sRRCelmNTr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sRRCelmNTr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sRRCelmNTr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sRRCelmNTr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sRRCelmNTr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sRRCelmNTr .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sRRCelmNTr .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sRRCelmNTr .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sRRCelmNTr .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sRRCelmNTr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sRRCelmNTr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sRRCelmNTr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sRRCelmNTr .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sRRCelmNTr .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRRCelmNTr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sRRCelmNTr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sRRCelmNTr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sRRCelmNTr .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sRRCelmNTr .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sRRCelmNTr .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRRCelmNTr .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sRRCelmNTr .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sRRCelmNTr .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sRRCelmNTr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sRRCelmNTr .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sRRCelmNTr .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sRRCelmNTr .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sRRCelmNTr .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sRRCelmNTr .navbar-toggler {
    display: none;
  }
  .cid-sRRCelmNTr .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sRRCelmNTr .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRRCelmNTr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sRRCelmNTr .menu-logo {
  margin-right: auto;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sRRCelmNTr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sRRCelmNTr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sRRCelmNTr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sRRCelmNTr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRRCelmNTr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sRRCelmNTr .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sRRCelmNTr .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sRRCelmNTr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sRRCelmNTr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRRCelmNTr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sRRCelmNTr .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sRRCelmNTr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sRRCelmNTr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sRRCelmNTr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sRRCelmNTr .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sRRCelmNTr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRRCelmNTr button.navbar-toggler:focus {
  outline: none;
}
.cid-sRRCelmNTr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sRRCelmNTr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRRCelmNTr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRRCelmNTr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRRCelmNTr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRRCelmNTr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRRCelmNTr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRRCelmNTr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRRCelmNTr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRRCelmNTr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRRCelmNTr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRRCelmNTr .collapsed .btn {
  display: -webkit-flex;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sRRCelmNTr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sRRCelmNTr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sRRCelmNTr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sRRCelmNTr .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sRRCelmNTr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sRRCelmNTr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sRRCelmNTr .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sRRCelmNTr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sRRCelmNTr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sRRCelmNTr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sRRCelmNTr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sRRCelmNTr .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRRCelmNTr .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sRRCelmNTr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sRRCelmNTr .nav-link:focus {
  outline: none;
}
.cid-sRRCelmNTr .navbar-toggler {
  position: relative;
}
.cid-sRRCelmNTr .dropdown-item.active,
.cid-sRRCelmNTr .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sRRCelmNTr .nav-link:hover,
.cid-sRRCelmNTr .dropdown-item:hover {
  color: #4284df;
}
.cid-sRRCelmNTr .widget-title,
.cid-sRRCelmNTr .widget-icon {
  color: #777d74;
}
.cid-sRRCelmNTr .widget-text {
  color: #777d74;
}
.cid-sRRCxx5H5u {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-sRRCxx5H5u {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-sRRCxx5H5u {
    padding-top: 2.4rem;
    padding-bottom: 0rem;
  }
}
.cid-sRRCxx5H5u .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sRRCxx5H5u .f-row {
    flex-direction: row;
  }
}
.cid-sRRCxx5H5u .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sRRCxx5H5u .f-item {
    flex: 1 1 50%;
  }
}
.cid-sRRCxx5H5u .image-wrapper {
  height: 80%;
}
@media (min-width: 992px) {
  .cid-sRRCxx5H5u .image-wrapper {
    min-height: 400px;
  }
}
.cid-sRRCxx5H5u .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-sRRCxx5H5u .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-sRRCxx5H5u .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -4rem);
  }
}
@media (min-width: 1200px) {
  .cid-sRRCxx5H5u .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-sRRCxx5H5u .mbr-text {
  color: #ffffff;
}
.cid-sRRDam9xy7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sRRDam9xy7 .mbr-section-title,
  .cid-sRRDam9xy7 .mbr-section-subtitle,
  .cid-sRRDam9xy7 .mbr-section-btn,
  .cid-sRRDam9xy7 .mbr-text {
    text-align: center;
  }
}
.cid-sRRDam9xy7 .mbr-section-title {
  color: #015cc7;
}
.cid-sRRDam9xy7 .mbr-text,
.cid-sRRDam9xy7 .mbr-section-btn {
  color: #082c4e;
}
.cid-sRRDam9xy7 .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sRRDam9xy7 .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-sRRDam9xy7 .subtitle {
    text-align: center;
  }
}
.cid-sRRDam9xy7 .mbr-section-subtitle {
  color: #082c4e;
}
.cid-sRRDam9xy7 span {
  padding-right: 1rem;
}
.cid-sRRDam9xy7 .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-sRRDam9xy7 .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-sRRDam9xy7 .dot {
    padding-left: 0rem;
  }
  .cid-sRRDam9xy7 .dot:before {
    content: none;
  }
}
.cid-sRRCelRo2a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sRRCelRo2a .content {
    text-align: center;
  }
  .cid-sRRCelRo2a .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sRRCelRo2a .logo-subtitle {
  color: #8d97ad;
}
.cid-sRRCelRo2a .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sRRCelRo2a .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sRRCelRo2a .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sRRCelRo2a .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sRRCelRo2a .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sRRCelRo2a .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sRRCelRo2a .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sRRCelRo2a .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sRRCelRo2a .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sRRCelRo2a .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sRRCelRo2a .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sRRCelRo2a .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sRRCelRo2a .list-item {
  display: flex;
}
.cid-sRRCelRo2a .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sRRCelRo2a ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sRRCelRo2a ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sRRCelRo2a ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sRRCelRo2a .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sRRCelRo2a P {
  color: #ffffff;
  text-align: left;
}
.cid-sRRCelRo2a .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sRRCelRo2a .mbr-text DIV {
  text-align: left;
}
.cid-sRRCelRo2a .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sRRCelRo2a .logo-subtitle,
.cid-sRRCelRo2a .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sRRCelRo2a .mbr-text P {
  text-align: left;
}
.cid-sWjvIArrDD {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sWjvIArrDD .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-sWjvIB5ERd .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sWjvIB5ERd .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sWjvIB5ERd a {
  font-style: normal;
}
.cid-sWjvIB5ERd .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sWjvIB5ERd .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sWjvIB5ERd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sWjvIB5ERd .content-text {
  margin-bottom: 0;
}
.cid-sWjvIB5ERd .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sWjvIB5ERd .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sWjvIB5ERd .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sWjvIB5ERd .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sWjvIB5ERd .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sWjvIB5ERd .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sWjvIB5ERd .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sWjvIB5ERd .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sWjvIB5ERd .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sWjvIB5ERd .nav-dropdown .link {
  font-weight: 400;
}
.cid-sWjvIB5ERd .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sWjvIB5ERd .content-right-side {
  text-align: center;
}
.cid-sWjvIB5ERd .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sWjvIB5ERd .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sWjvIB5ERd .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sWjvIB5ERd .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sWjvIB5ERd .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sWjvIB5ERd .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sWjvIB5ERd img {
    height: 1rem !important;
  }
  .cid-sWjvIB5ERd .btn {
    display: -webkit-flex;
  }
  .cid-sWjvIB5ERd button.navbar-toggler {
    display: block;
  }
  .cid-sWjvIB5ERd .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sWjvIB5ERd .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sWjvIB5ERd .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing,
  .cid-sWjvIB5ERd .navbar-collapse.show {
    display: block !important;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing .navbar-nav,
  .cid-sWjvIB5ERd .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sWjvIB5ERd .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sWjvIB5ERd .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing .navbar-buttons,
  .cid-sWjvIB5ERd .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sWjvIB5ERd .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sWjvIB5ERd .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sWjvIB5ERd .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sWjvIB5ERd .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sWjvIB5ERd .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sWjvIB5ERd .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sWjvIB5ERd .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sWjvIB5ERd .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sWjvIB5ERd .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sWjvIB5ERd .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sWjvIB5ERd .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sWjvIB5ERd .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sWjvIB5ERd .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sWjvIB5ERd .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sWjvIB5ERd .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sWjvIB5ERd .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWjvIB5ERd .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sWjvIB5ERd .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sWjvIB5ERd .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sWjvIB5ERd .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sWjvIB5ERd .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sWjvIB5ERd .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sWjvIB5ERd .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sWjvIB5ERd .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sWjvIB5ERd .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sWjvIB5ERd .navbar {
    display: block;
    padding: 0;
  }
  .cid-sWjvIB5ERd .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sWjvIB5ERd .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sWjvIB5ERd .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sWjvIB5ERd .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sWjvIB5ERd .navbar-toggler {
    display: none;
  }
  .cid-sWjvIB5ERd .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWjvIB5ERd .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWjvIB5ERd .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sWjvIB5ERd .menu-logo {
  margin-right: auto;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sWjvIB5ERd .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sWjvIB5ERd .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sWjvIB5ERd .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sWjvIB5ERd .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sWjvIB5ERd .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sWjvIB5ERd .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sWjvIB5ERd .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sWjvIB5ERd .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sWjvIB5ERd .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sWjvIB5ERd .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sWjvIB5ERd .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sWjvIB5ERd .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sWjvIB5ERd .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sWjvIB5ERd .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sWjvIB5ERd button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sWjvIB5ERd button.navbar-toggler:focus {
  outline: none;
}
.cid-sWjvIB5ERd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sWjvIB5ERd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sWjvIB5ERd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sWjvIB5ERd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sWjvIB5ERd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sWjvIB5ERd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sWjvIB5ERd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sWjvIB5ERd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sWjvIB5ERd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sWjvIB5ERd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sWjvIB5ERd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sWjvIB5ERd .collapsed .btn {
  display: -webkit-flex;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sWjvIB5ERd .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sWjvIB5ERd .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sWjvIB5ERd .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sWjvIB5ERd .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sWjvIB5ERd .collapsed button.navbar-toggler {
  display: block;
}
.cid-sWjvIB5ERd .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sWjvIB5ERd .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sWjvIB5ERd .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sWjvIB5ERd .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sWjvIB5ERd .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sWjvIB5ERd .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sWjvIB5ERd .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sWjvIB5ERd .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sWjvIB5ERd .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sWjvIB5ERd .nav-link:focus {
  outline: none;
}
.cid-sWjvIB5ERd .navbar-toggler {
  position: relative;
}
.cid-sWjvIB5ERd .dropdown-item.active,
.cid-sWjvIB5ERd .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sWjvIB5ERd .nav-link:hover,
.cid-sWjvIB5ERd .dropdown-item:hover {
  color: #4284df;
}
.cid-sWjvIB5ERd .widget-title,
.cid-sWjvIB5ERd .widget-icon {
  color: #777d74;
}
.cid-sWjvIB5ERd .widget-text {
  color: #777d74;
}
.cid-sWjvIBAmeh {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-sWjvIBAmeh {
    padding-top: 4rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-sWjvIBAmeh {
    padding-top: 2.4rem;
    padding-bottom: 0rem;
  }
}
.cid-sWjvIBAmeh .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sWjvIBAmeh .f-row {
    flex-direction: row;
  }
}
.cid-sWjvIBAmeh .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sWjvIBAmeh .f-item {
    flex: 1 1 50%;
  }
}
.cid-sWjvIBAmeh .image-wrapper {
  height: 80%;
}
@media (min-width: 992px) {
  .cid-sWjvIBAmeh .image-wrapper {
    min-height: 400px;
  }
}
.cid-sWjvIBAmeh .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-sWjvIBAmeh .text-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-sWjvIBAmeh .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, -5rem);
  }
}
@media (min-width: 1200px) {
  .cid-sWjvIBAmeh .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-sWjvIBAmeh .mbr-text {
  color: #ffffff;
}
.cid-sWjvICds0W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sWjvICds0W .mbr-section-title,
  .cid-sWjvICds0W .mbr-section-subtitle,
  .cid-sWjvICds0W .mbr-section-btn,
  .cid-sWjvICds0W .mbr-text {
    text-align: center;
  }
}
.cid-sWjvICds0W .mbr-section-title {
  color: #015cc7;
}
.cid-sWjvICds0W .mbr-text,
.cid-sWjvICds0W .mbr-section-btn {
  color: #082c4e;
}
.cid-sWjvICds0W .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sWjvICds0W .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-sWjvICds0W .subtitle {
    text-align: center;
  }
}
.cid-sWjvICds0W .mbr-section-subtitle {
  color: #082c4e;
}
.cid-sWjvICds0W span {
  padding-right: 1rem;
}
.cid-sWjvICds0W .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-sWjvICds0W .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-sWjvICds0W .dot {
    padding-left: 0rem;
  }
  .cid-sWjvICds0W .dot:before {
    content: none;
  }
}
.cid-sWjvIDCL13 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sWjvIDCL13 .content {
    text-align: center;
  }
  .cid-sWjvIDCL13 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sWjvIDCL13 .logo-subtitle {
  color: #8d97ad;
}
.cid-sWjvIDCL13 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sWjvIDCL13 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sWjvIDCL13 .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sWjvIDCL13 .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sWjvIDCL13 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sWjvIDCL13 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sWjvIDCL13 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sWjvIDCL13 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sWjvIDCL13 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sWjvIDCL13 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sWjvIDCL13 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sWjvIDCL13 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sWjvIDCL13 .list-item {
  display: flex;
}
.cid-sWjvIDCL13 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sWjvIDCL13 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sWjvIDCL13 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sWjvIDCL13 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sWjvIDCL13 .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sWjvIDCL13 P {
  color: #ffffff;
  text-align: left;
}
.cid-sWjvIDCL13 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sWjvIDCL13 .mbr-text DIV {
  text-align: left;
}
.cid-sWjvIDCL13 .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sWjvIDCL13 .logo-subtitle,
.cid-sWjvIDCL13 .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sWjvIDCL13 .mbr-text P {
  text-align: left;
}
.cid-t1GCjzz5cF {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GCjzz5cF .mbr-section-title {
  text-align: center;
  color: #1293e7;
}
.cid-t1GCjA09RL {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-t1GCjA09RL .card {
  display: flex;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GCjA09RL .card .card-wrapper {
  background: #ffffff;
  height: 1%;
  border-radius: 20px;
}
.cid-t1GCjA09RL .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}
.cid-t1GCjA09RL .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-t1GCjA09RL .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1;
  border-radius: 100px;
  background-color: #66458e;
}
.cid-t1GCjA09RL .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-t1GCjA09RL .card .card-wrapper .card-box {
  padding: 1.5rem;
  border-radius: 20px;
}
.cid-t1GCjA09RL .mbr-card-text {
  margin: 0;
}
.cid-t1GCjA09RL .mbr-section-title {
  text-align: center;
  color: #0222a9;
}
.cid-t1GCjA09RL .mbr-section-subtitle {
  text-align: center;
}
.cid-t1GCjA09RL .mbr-title {
  color: #015cc7;
}
.cid-t1GCjABeq9 .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GCjABeq9 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GCjABeq9 a {
  font-style: normal;
}
.cid-t1GCjABeq9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GCjABeq9 .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GCjABeq9 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GCjABeq9 .content-text {
  margin-bottom: 0;
}
.cid-t1GCjABeq9 .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GCjABeq9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GCjABeq9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GCjABeq9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GCjABeq9 .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GCjABeq9 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GCjABeq9 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GCjABeq9 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GCjABeq9 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GCjABeq9 .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GCjABeq9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GCjABeq9 .content-right-side {
  text-align: center;
}
.cid-t1GCjABeq9 .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GCjABeq9 .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GCjABeq9 .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GCjABeq9 .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GCjABeq9 .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GCjABeq9 .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GCjABeq9 img {
    height: 1rem !important;
  }
  .cid-t1GCjABeq9 .btn {
    display: -webkit-flex;
  }
  .cid-t1GCjABeq9 button.navbar-toggler {
    display: block;
  }
  .cid-t1GCjABeq9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GCjABeq9 .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GCjABeq9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing,
  .cid-t1GCjABeq9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GCjABeq9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GCjABeq9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GCjABeq9 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GCjABeq9 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GCjABeq9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GCjABeq9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GCjABeq9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GCjABeq9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GCjABeq9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GCjABeq9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GCjABeq9 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GCjABeq9 .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GCjABeq9 .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GCjABeq9 .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GCjABeq9 .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GCjABeq9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GCjABeq9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GCjABeq9 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GCjABeq9 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GCjABeq9 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GCjABeq9 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GCjABeq9 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GCjABeq9 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GCjABeq9 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GCjABeq9 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GCjABeq9 .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GCjABeq9 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GCjABeq9 .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GCjABeq9 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GCjABeq9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GCjABeq9 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GCjABeq9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GCjABeq9 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GCjABeq9 .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GCjABeq9 .navbar-toggler {
    display: none;
  }
  .cid-t1GCjABeq9 .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GCjABeq9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GCjABeq9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GCjABeq9 .menu-logo {
  margin-right: auto;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GCjABeq9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GCjABeq9 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GCjABeq9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GCjABeq9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GCjABeq9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GCjABeq9 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GCjABeq9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GCjABeq9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GCjABeq9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GCjABeq9 .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GCjABeq9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GCjABeq9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GCjABeq9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GCjABeq9 .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GCjABeq9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GCjABeq9 button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GCjABeq9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GCjABeq9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GCjABeq9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GCjABeq9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GCjABeq9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GCjABeq9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GCjABeq9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GCjABeq9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GCjABeq9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GCjABeq9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GCjABeq9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GCjABeq9 .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GCjABeq9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GCjABeq9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GCjABeq9 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GCjABeq9 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GCjABeq9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GCjABeq9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GCjABeq9 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GCjABeq9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GCjABeq9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GCjABeq9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GCjABeq9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GCjABeq9 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GCjABeq9 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GCjABeq9 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GCjABeq9 .nav-link:focus {
  outline: none;
}
.cid-t1GCjABeq9 .navbar-toggler {
  position: relative;
}
.cid-t1GCjABeq9 .dropdown-item.active,
.cid-t1GCjABeq9 .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GCjABeq9 .nav-link:hover,
.cid-t1GCjABeq9 .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GCjABeq9 .widget-title,
.cid-t1GCjABeq9 .widget-icon {
  color: #777d74;
}
.cid-t1GCjABeq9 .widget-text {
  color: #777d74;
}
.cid-t1GCjBa1k0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GCjBa1k0 .content {
    text-align: center;
  }
  .cid-t1GCjBa1k0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GCjBa1k0 .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GCjBa1k0 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GCjBa1k0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GCjBa1k0 .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GCjBa1k0 .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GCjBa1k0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GCjBa1k0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GCjBa1k0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GCjBa1k0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GCjBa1k0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GCjBa1k0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GCjBa1k0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GCjBa1k0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GCjBa1k0 .list-item {
  display: flex;
}
.cid-t1GCjBa1k0 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GCjBa1k0 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GCjBa1k0 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GCjBa1k0 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GCjBa1k0 .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GCjBa1k0 P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GCjBa1k0 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GCjBa1k0 .mbr-text DIV {
  text-align: left;
}
.cid-t1GCjBa1k0 .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GCjBa1k0 .logo-subtitle,
.cid-t1GCjBa1k0 .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GCjBa1k0 .mbr-text P {
  text-align: left;
}
.cid-sTztDVAbzq {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sTztDVAbzq .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-sTztDWiaMG .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sTztDWiaMG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sTztDWiaMG a {
  font-style: normal;
}
.cid-sTztDWiaMG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sTztDWiaMG .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sTztDWiaMG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTztDWiaMG .content-text {
  margin-bottom: 0;
}
.cid-sTztDWiaMG .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sTztDWiaMG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sTztDWiaMG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sTztDWiaMG .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sTztDWiaMG .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sTztDWiaMG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTztDWiaMG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTztDWiaMG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sTztDWiaMG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTztDWiaMG .nav-dropdown .link {
  font-weight: 400;
}
.cid-sTztDWiaMG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sTztDWiaMG .content-right-side {
  text-align: center;
}
.cid-sTztDWiaMG .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sTztDWiaMG .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sTztDWiaMG .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sTztDWiaMG .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sTztDWiaMG .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sTztDWiaMG .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sTztDWiaMG img {
    height: 1rem !important;
  }
  .cid-sTztDWiaMG .btn {
    display: -webkit-flex;
  }
  .cid-sTztDWiaMG button.navbar-toggler {
    display: block;
  }
  .cid-sTztDWiaMG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sTztDWiaMG .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sTztDWiaMG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing,
  .cid-sTztDWiaMG .navbar-collapse.show {
    display: block !important;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing .navbar-nav,
  .cid-sTztDWiaMG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sTztDWiaMG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sTztDWiaMG .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing .navbar-buttons,
  .cid-sTztDWiaMG .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sTztDWiaMG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sTztDWiaMG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTztDWiaMG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sTztDWiaMG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sTztDWiaMG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sTztDWiaMG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sTztDWiaMG .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sTztDWiaMG .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sTztDWiaMG .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sTztDWiaMG .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sTztDWiaMG .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sTztDWiaMG .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sTztDWiaMG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sTztDWiaMG .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sTztDWiaMG .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sTztDWiaMG .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTztDWiaMG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sTztDWiaMG .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sTztDWiaMG .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sTztDWiaMG .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sTztDWiaMG .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sTztDWiaMG .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sTztDWiaMG .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sTztDWiaMG .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTztDWiaMG .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sTztDWiaMG .navbar {
    display: block;
    padding: 0;
  }
  .cid-sTztDWiaMG .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTztDWiaMG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sTztDWiaMG .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sTztDWiaMG .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sTztDWiaMG .navbar-toggler {
    display: none;
  }
  .cid-sTztDWiaMG .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTztDWiaMG .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTztDWiaMG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sTztDWiaMG .menu-logo {
  margin-right: auto;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sTztDWiaMG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sTztDWiaMG .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sTztDWiaMG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sTztDWiaMG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTztDWiaMG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sTztDWiaMG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sTztDWiaMG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTztDWiaMG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sTztDWiaMG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTztDWiaMG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sTztDWiaMG .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sTztDWiaMG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sTztDWiaMG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sTztDWiaMG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sTztDWiaMG .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sTztDWiaMG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTztDWiaMG button.navbar-toggler:focus {
  outline: none;
}
.cid-sTztDWiaMG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sTztDWiaMG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sTztDWiaMG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sTztDWiaMG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sTztDWiaMG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sTztDWiaMG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTztDWiaMG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sTztDWiaMG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sTztDWiaMG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTztDWiaMG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTztDWiaMG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTztDWiaMG .collapsed .btn {
  display: -webkit-flex;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sTztDWiaMG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sTztDWiaMG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sTztDWiaMG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sTztDWiaMG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTztDWiaMG .collapsed button.navbar-toggler {
  display: block;
}
.cid-sTztDWiaMG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sTztDWiaMG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sTztDWiaMG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sTztDWiaMG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sTztDWiaMG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sTztDWiaMG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sTztDWiaMG .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTztDWiaMG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sTztDWiaMG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sTztDWiaMG .nav-link:focus {
  outline: none;
}
.cid-sTztDWiaMG .navbar-toggler {
  position: relative;
}
.cid-sTztDWiaMG .dropdown-item.active,
.cid-sTztDWiaMG .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sTztDWiaMG .nav-link:hover,
.cid-sTztDWiaMG .dropdown-item:hover {
  color: #4284df;
}
.cid-sTztDWiaMG .widget-title,
.cid-sTztDWiaMG .widget-icon {
  color: #777d74;
}
.cid-sTztDWiaMG .widget-text {
  color: #777d74;
}
.cid-sTztDWVBkZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-sTztDWVBkZ {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-sTztDWVBkZ {
    padding-top: 1.2rem;
    padding-bottom: 0.9rem;
  }
}
.cid-sTztDWVBkZ .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sTztDWVBkZ .f-row {
    flex-direction: row;
  }
}
.cid-sTztDWVBkZ .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sTztDWVBkZ .f-item {
    flex: 1 1 50%;
  }
}
.cid-sTztDWVBkZ .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-sTztDWVBkZ .image-wrapper {
    min-height: 500px;
  }
}
.cid-sTztDWVBkZ .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-sTztDWVBkZ .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-sTztDWVBkZ .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, -1rem);
  }
}
@media (min-width: 1200px) {
  .cid-sTztDWVBkZ .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-sTztDWVBkZ .mbr-text {
  color: #ffffff;
}
.cid-sTztDXeAA5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTztDXeAA5 .mbr-section-title,
  .cid-sTztDXeAA5 .mbr-section-subtitle,
  .cid-sTztDXeAA5 .mbr-section-btn,
  .cid-sTztDXeAA5 .mbr-text {
    text-align: center;
  }
}
.cid-sTztDXeAA5 .mbr-section-title {
  color: #015cc7;
}
.cid-sTztDXeAA5 .mbr-text,
.cid-sTztDXeAA5 .mbr-section-btn {
  color: #082c4e;
}
.cid-sTztDXeAA5 .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sTztDXeAA5 .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-sTztDXeAA5 .subtitle {
    text-align: center;
  }
}
.cid-sTztDXeAA5 .mbr-section-subtitle {
  color: #082c4e;
}
.cid-sTztDXeAA5 span {
  padding-right: 1rem;
}
.cid-sTztDXeAA5 .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-sTztDXeAA5 .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-sTztDXeAA5 .dot {
    padding-left: 0rem;
  }
  .cid-sTztDXeAA5 .dot:before {
    content: none;
  }
}
.cid-sTztDYVRcz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sTztDYVRcz .content {
    text-align: center;
  }
  .cid-sTztDYVRcz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sTztDYVRcz .logo-subtitle {
  color: #8d97ad;
}
.cid-sTztDYVRcz .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sTztDYVRcz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sTztDYVRcz .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sTztDYVRcz .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sTztDYVRcz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sTztDYVRcz .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sTztDYVRcz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sTztDYVRcz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sTztDYVRcz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sTztDYVRcz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sTztDYVRcz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sTztDYVRcz .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTztDYVRcz .list-item {
  display: flex;
}
.cid-sTztDYVRcz .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sTztDYVRcz ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sTztDYVRcz ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sTztDYVRcz ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sTztDYVRcz .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sTztDYVRcz P {
  color: #ffffff;
  text-align: left;
}
.cid-sTztDYVRcz .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sTztDYVRcz .mbr-text DIV {
  text-align: left;
}
.cid-sTztDYVRcz .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sTztDYVRcz .logo-subtitle,
.cid-sTztDYVRcz .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sTztDYVRcz .mbr-text P {
  text-align: left;
}
.cid-t1GGE8uxfn {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GGE8uxfn .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GGE9iVYU .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GGE9iVYU .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GGE9iVYU a {
  font-style: normal;
}
.cid-t1GGE9iVYU .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GGE9iVYU .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GGE9iVYU .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GGE9iVYU .content-text {
  margin-bottom: 0;
}
.cid-t1GGE9iVYU .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GGE9iVYU .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GGE9iVYU .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GGE9iVYU .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GGE9iVYU .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GGE9iVYU .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GGE9iVYU .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GGE9iVYU .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GGE9iVYU .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GGE9iVYU .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GGE9iVYU .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GGE9iVYU .content-right-side {
  text-align: center;
}
.cid-t1GGE9iVYU .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GGE9iVYU .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GGE9iVYU .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GGE9iVYU .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GGE9iVYU .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GGE9iVYU .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GGE9iVYU img {
    height: 1rem !important;
  }
  .cid-t1GGE9iVYU .btn {
    display: -webkit-flex;
  }
  .cid-t1GGE9iVYU button.navbar-toggler {
    display: block;
  }
  .cid-t1GGE9iVYU .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GGE9iVYU .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GGE9iVYU .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing,
  .cid-t1GGE9iVYU .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GGE9iVYU .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GGE9iVYU .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GGE9iVYU .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GGE9iVYU .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GGE9iVYU .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GGE9iVYU .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GGE9iVYU .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GGE9iVYU .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GGE9iVYU .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GGE9iVYU .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GGE9iVYU .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GGE9iVYU .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GGE9iVYU .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GGE9iVYU .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GGE9iVYU .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GGE9iVYU .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GGE9iVYU .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GGE9iVYU .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GGE9iVYU .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GGE9iVYU .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GGE9iVYU .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GGE9iVYU .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GGE9iVYU .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GGE9iVYU .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GGE9iVYU .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GGE9iVYU .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GGE9iVYU .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GGE9iVYU .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GGE9iVYU .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GGE9iVYU .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GGE9iVYU .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GGE9iVYU .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GGE9iVYU .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GGE9iVYU .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GGE9iVYU .navbar-toggler {
    display: none;
  }
  .cid-t1GGE9iVYU .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GGE9iVYU .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GGE9iVYU .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GGE9iVYU .menu-logo {
  margin-right: auto;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GGE9iVYU .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GGE9iVYU .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GGE9iVYU .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GGE9iVYU .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GGE9iVYU .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GGE9iVYU .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GGE9iVYU .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GGE9iVYU .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GGE9iVYU .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GGE9iVYU .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GGE9iVYU .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GGE9iVYU .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GGE9iVYU .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GGE9iVYU .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GGE9iVYU button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GGE9iVYU button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GGE9iVYU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GGE9iVYU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GGE9iVYU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GGE9iVYU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GGE9iVYU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GGE9iVYU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GGE9iVYU nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GGE9iVYU nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GGE9iVYU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GGE9iVYU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GGE9iVYU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GGE9iVYU .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GGE9iVYU .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GGE9iVYU .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GGE9iVYU .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GGE9iVYU .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GGE9iVYU .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GGE9iVYU .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GGE9iVYU .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GGE9iVYU .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GGE9iVYU .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GGE9iVYU .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GGE9iVYU .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GGE9iVYU .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GGE9iVYU .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GGE9iVYU .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GGE9iVYU .nav-link:focus {
  outline: none;
}
.cid-t1GGE9iVYU .navbar-toggler {
  position: relative;
}
.cid-t1GGE9iVYU .dropdown-item.active,
.cid-t1GGE9iVYU .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GGE9iVYU .nav-link:hover,
.cid-t1GGE9iVYU .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GGE9iVYU .widget-title,
.cid-t1GGE9iVYU .widget-icon {
  color: #777d74;
}
.cid-t1GGE9iVYU .widget-text {
  color: #777d74;
}
.cid-t1GGEa0GA2 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GGEa0GA2 {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GGEa0GA2 {
    padding-top: 1.2rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GGEa0GA2 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GGEa0GA2 .f-row {
    flex-direction: row;
  }
}
.cid-t1GGEa0GA2 .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GGEa0GA2 .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GGEa0GA2 .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GGEa0GA2 .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GGEa0GA2 .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GGEa0GA2 .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GGEa0GA2 .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, -1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GGEa0GA2 .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GGEa0GA2 .mbr-text {
  color: #ffffff;
}
.cid-t1GGEarKBv {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GGEarKBv .mbr-section-title,
  .cid-t1GGEarKBv .mbr-section-subtitle,
  .cid-t1GGEarKBv .mbr-section-btn,
  .cid-t1GGEarKBv .mbr-text {
    text-align: center;
  }
}
.cid-t1GGEarKBv .mbr-section-title {
  color: #015cc7;
}
.cid-t1GGEarKBv .mbr-text,
.cid-t1GGEarKBv .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GGEarKBv .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GGEarKBv .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GGEarKBv .subtitle {
    text-align: center;
  }
}
.cid-t1GGEarKBv .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GGEarKBv span {
  padding-right: 1rem;
}
.cid-t1GGEarKBv .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GGEarKBv .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GGEarKBv .dot {
    padding-left: 0rem;
  }
  .cid-t1GGEarKBv .dot:before {
    content: none;
  }
}
.cid-t1GGEaTQoY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GGEaTQoY .content {
    text-align: center;
  }
  .cid-t1GGEaTQoY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GGEaTQoY .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GGEaTQoY .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GGEaTQoY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GGEaTQoY .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GGEaTQoY .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GGEaTQoY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GGEaTQoY .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GGEaTQoY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GGEaTQoY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GGEaTQoY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GGEaTQoY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GGEaTQoY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GGEaTQoY .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GGEaTQoY .list-item {
  display: flex;
}
.cid-t1GGEaTQoY .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GGEaTQoY ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GGEaTQoY ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GGEaTQoY ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GGEaTQoY .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GGEaTQoY P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GGEaTQoY .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GGEaTQoY .mbr-text DIV {
  text-align: left;
}
.cid-t1GGEaTQoY .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GGEaTQoY .logo-subtitle,
.cid-t1GGEaTQoY .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GGEaTQoY .mbr-text P {
  text-align: left;
}
.cid-t1GHlcPQcD {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GHlcPQcD .mbr-section-title {
  text-align: center;
  color: #1293e7;
}
.cid-t1GHGbQPss {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t1GHGbQPss img,
.cid-t1GHGbQPss .item-img {
  width: 100%;
}
.cid-t1GHGbQPss .item:focus,
.cid-t1GHGbQPss span:focus {
  outline: none;
}
.cid-t1GHGbQPss .item {
  cursor: pointer;
  margin-bottom: 1rem;
}
.cid-t1GHGbQPss .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1GHGbQPss .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1GHGbQPss .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t1GHGbQPss .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1GHGbQPss .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1GHGbQPss .item-wrapper {
  background: transparent;
}
.cid-t1GHGbQPss .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1GHGbQPss .mbr-section-title {
  color: #232323;
}
.cid-t1GHGbQPss .mbr-text,
.cid-t1GHGbQPss .mbr-section-btn {
  text-align: center;
}
.cid-t1GHGbQPss .item-title {
  text-align: center;
  color: #0222a9;
}
.cid-t1GHGbQPss .item-subtitle {
  text-align: center;
}
.cid-t1GHleeK0p .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GHleeK0p .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GHleeK0p a {
  font-style: normal;
}
.cid-t1GHleeK0p .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GHleeK0p .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GHleeK0p .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GHleeK0p .content-text {
  margin-bottom: 0;
}
.cid-t1GHleeK0p .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GHleeK0p .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GHleeK0p .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GHleeK0p .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GHleeK0p .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GHleeK0p .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GHleeK0p .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GHleeK0p .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GHleeK0p .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GHleeK0p .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GHleeK0p .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GHleeK0p .content-right-side {
  text-align: center;
}
.cid-t1GHleeK0p .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GHleeK0p .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GHleeK0p .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GHleeK0p .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GHleeK0p .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GHleeK0p .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GHleeK0p img {
    height: 1rem !important;
  }
  .cid-t1GHleeK0p .btn {
    display: -webkit-flex;
  }
  .cid-t1GHleeK0p button.navbar-toggler {
    display: block;
  }
  .cid-t1GHleeK0p .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GHleeK0p .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GHleeK0p .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing,
  .cid-t1GHleeK0p .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GHleeK0p .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GHleeK0p .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GHleeK0p .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GHleeK0p .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GHleeK0p .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GHleeK0p .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GHleeK0p .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GHleeK0p .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GHleeK0p .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GHleeK0p .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GHleeK0p .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GHleeK0p .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GHleeK0p .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GHleeK0p .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GHleeK0p .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GHleeK0p .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GHleeK0p .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GHleeK0p .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GHleeK0p .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GHleeK0p .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GHleeK0p .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GHleeK0p .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GHleeK0p .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GHleeK0p .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GHleeK0p .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GHleeK0p .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GHleeK0p .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GHleeK0p .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GHleeK0p .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GHleeK0p .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GHleeK0p .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GHleeK0p .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GHleeK0p .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GHleeK0p .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GHleeK0p .navbar-toggler {
    display: none;
  }
  .cid-t1GHleeK0p .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GHleeK0p .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GHleeK0p .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GHleeK0p .menu-logo {
  margin-right: auto;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GHleeK0p .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GHleeK0p .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GHleeK0p .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GHleeK0p .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GHleeK0p .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GHleeK0p .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GHleeK0p .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GHleeK0p .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GHleeK0p .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GHleeK0p .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GHleeK0p .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GHleeK0p .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GHleeK0p .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GHleeK0p .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GHleeK0p .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GHleeK0p button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GHleeK0p button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GHleeK0p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GHleeK0p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GHleeK0p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GHleeK0p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GHleeK0p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GHleeK0p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GHleeK0p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GHleeK0p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GHleeK0p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GHleeK0p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GHleeK0p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GHleeK0p .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GHleeK0p .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GHleeK0p .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GHleeK0p .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GHleeK0p .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GHleeK0p .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GHleeK0p .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GHleeK0p .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GHleeK0p .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GHleeK0p .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GHleeK0p .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GHleeK0p .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GHleeK0p .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GHleeK0p .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GHleeK0p .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GHleeK0p .nav-link:focus {
  outline: none;
}
.cid-t1GHleeK0p .navbar-toggler {
  position: relative;
}
.cid-t1GHleeK0p .dropdown-item.active,
.cid-t1GHleeK0p .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GHleeK0p .nav-link:hover,
.cid-t1GHleeK0p .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GHleeK0p .widget-title,
.cid-t1GHleeK0p .widget-icon {
  color: #777d74;
}
.cid-t1GHleeK0p .widget-text {
  color: #777d74;
}
.cid-t1GHleN9Oy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GHleN9Oy .content {
    text-align: center;
  }
  .cid-t1GHleN9Oy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GHleN9Oy .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GHleN9Oy .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GHleN9Oy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GHleN9Oy .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GHleN9Oy .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GHleN9Oy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GHleN9Oy .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GHleN9Oy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GHleN9Oy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GHleN9Oy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GHleN9Oy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GHleN9Oy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GHleN9Oy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GHleN9Oy .list-item {
  display: flex;
}
.cid-t1GHleN9Oy .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GHleN9Oy ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GHleN9Oy ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GHleN9Oy ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GHleN9Oy .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GHleN9Oy P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GHleN9Oy .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GHleN9Oy .mbr-text DIV {
  text-align: left;
}
.cid-t1GHleN9Oy .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GHleN9Oy .logo-subtitle,
.cid-t1GHleN9Oy .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GHleN9Oy .mbr-text P {
  text-align: left;
}
.cid-sTzxIxSSaB {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-sTzxIxSSaB .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-sTzxIyCsJs .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-sTzxIyCsJs .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sTzxIyCsJs a {
  font-style: normal;
}
.cid-sTzxIyCsJs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-sTzxIyCsJs .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-sTzxIyCsJs .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTzxIyCsJs .content-text {
  margin-bottom: 0;
}
.cid-sTzxIyCsJs .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sTzxIyCsJs .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sTzxIyCsJs .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sTzxIyCsJs .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sTzxIyCsJs .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-sTzxIyCsJs .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTzxIyCsJs .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sTzxIyCsJs .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sTzxIyCsJs .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTzxIyCsJs .nav-dropdown .link {
  font-weight: 400;
}
.cid-sTzxIyCsJs .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sTzxIyCsJs .content-right-side {
  text-align: center;
}
.cid-sTzxIyCsJs .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-sTzxIyCsJs .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-sTzxIyCsJs .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-sTzxIyCsJs .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-sTzxIyCsJs .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-sTzxIyCsJs .menu-bottom {
    justify-content: flex-end;
  }
  .cid-sTzxIyCsJs img {
    height: 1rem !important;
  }
  .cid-sTzxIyCsJs .btn {
    display: -webkit-flex;
  }
  .cid-sTzxIyCsJs button.navbar-toggler {
    display: block;
  }
  .cid-sTzxIyCsJs .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-sTzxIyCsJs .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sTzxIyCsJs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing,
  .cid-sTzxIyCsJs .navbar-collapse.show {
    display: block !important;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing .navbar-nav,
  .cid-sTzxIyCsJs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sTzxIyCsJs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sTzxIyCsJs .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing .navbar-buttons,
  .cid-sTzxIyCsJs .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sTzxIyCsJs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sTzxIyCsJs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTzxIyCsJs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-sTzxIyCsJs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sTzxIyCsJs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sTzxIyCsJs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sTzxIyCsJs .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-sTzxIyCsJs .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sTzxIyCsJs .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-sTzxIyCsJs .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-sTzxIyCsJs .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-sTzxIyCsJs .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sTzxIyCsJs .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sTzxIyCsJs .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sTzxIyCsJs .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-sTzxIyCsJs .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTzxIyCsJs .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sTzxIyCsJs .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sTzxIyCsJs .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sTzxIyCsJs .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-sTzxIyCsJs .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-sTzxIyCsJs .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sTzxIyCsJs .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-sTzxIyCsJs .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTzxIyCsJs .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-sTzxIyCsJs .navbar {
    display: block;
    padding: 0;
  }
  .cid-sTzxIyCsJs .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sTzxIyCsJs .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-sTzxIyCsJs .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sTzxIyCsJs .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-sTzxIyCsJs .navbar-toggler {
    display: none;
  }
  .cid-sTzxIyCsJs .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTzxIyCsJs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTzxIyCsJs .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sTzxIyCsJs .menu-logo {
  margin-right: auto;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sTzxIyCsJs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sTzxIyCsJs .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sTzxIyCsJs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-sTzxIyCsJs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTzxIyCsJs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sTzxIyCsJs .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sTzxIyCsJs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sTzxIyCsJs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTzxIyCsJs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-sTzxIyCsJs .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-sTzxIyCsJs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sTzxIyCsJs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sTzxIyCsJs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sTzxIyCsJs .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-sTzxIyCsJs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTzxIyCsJs button.navbar-toggler:focus {
  outline: none;
}
.cid-sTzxIyCsJs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-sTzxIyCsJs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sTzxIyCsJs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sTzxIyCsJs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sTzxIyCsJs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sTzxIyCsJs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTzxIyCsJs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sTzxIyCsJs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sTzxIyCsJs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sTzxIyCsJs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sTzxIyCsJs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sTzxIyCsJs .collapsed .btn {
  display: -webkit-flex;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-sTzxIyCsJs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sTzxIyCsJs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sTzxIyCsJs .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-sTzxIyCsJs .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-sTzxIyCsJs .collapsed button.navbar-toggler {
  display: block;
}
.cid-sTzxIyCsJs .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-sTzxIyCsJs .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sTzxIyCsJs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-sTzxIyCsJs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sTzxIyCsJs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sTzxIyCsJs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sTzxIyCsJs .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sTzxIyCsJs .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sTzxIyCsJs .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-sTzxIyCsJs .nav-link:focus {
  outline: none;
}
.cid-sTzxIyCsJs .navbar-toggler {
  position: relative;
}
.cid-sTzxIyCsJs .dropdown-item.active,
.cid-sTzxIyCsJs .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-sTzxIyCsJs .nav-link:hover,
.cid-sTzxIyCsJs .dropdown-item:hover {
  color: #4284df;
}
.cid-sTzxIyCsJs .widget-title,
.cid-sTzxIyCsJs .widget-icon {
  color: #777d74;
}
.cid-sTzxIyCsJs .widget-text {
  color: #777d74;
}
.cid-sTzxIzgUxu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-sTzxIzgUxu {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-sTzxIzgUxu {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-sTzxIzgUxu .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sTzxIzgUxu .f-row {
    flex-direction: row;
  }
}
.cid-sTzxIzgUxu .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-sTzxIzgUxu .f-item {
    flex: 1 1 50%;
  }
}
.cid-sTzxIzgUxu .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-sTzxIzgUxu .image-wrapper {
    min-height: 500px;
  }
}
.cid-sTzxIzgUxu .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-sTzxIzgUxu .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-sTzxIzgUxu .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-sTzxIzgUxu .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-sTzxIzgUxu .mbr-text {
  color: #ffffff;
}
.cid-sTzyuMbdWp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sTzyuMbdWp .mbr-section-title,
  .cid-sTzyuMbdWp .mbr-section-subtitle,
  .cid-sTzyuMbdWp .mbr-section-btn,
  .cid-sTzyuMbdWp .mbr-text {
    text-align: center;
  }
}
.cid-sTzyuMbdWp .mbr-section-title {
  color: #015cc7;
}
.cid-sTzyuMbdWp .mbr-text,
.cid-sTzyuMbdWp .mbr-section-btn {
  color: #082c4e;
}
.cid-sTzyuMbdWp .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-sTzyuMbdWp .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-sTzyuMbdWp .subtitle {
    text-align: center;
  }
}
.cid-sTzyuMbdWp .mbr-section-subtitle {
  color: #082c4e;
}
.cid-sTzyuMbdWp span {
  padding-right: 1rem;
}
.cid-sTzyuMbdWp .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-sTzyuMbdWp .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-sTzyuMbdWp .dot {
    padding-left: 0rem;
  }
  .cid-sTzyuMbdWp .dot:before {
    content: none;
  }
}
.cid-sTzxIAIbbQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-sTzxIAIbbQ .content {
    text-align: center;
  }
  .cid-sTzxIAIbbQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sTzxIAIbbQ .logo-subtitle {
  color: #8d97ad;
}
.cid-sTzxIAIbbQ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sTzxIAIbbQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sTzxIAIbbQ .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-sTzxIAIbbQ .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-sTzxIAIbbQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sTzxIAIbbQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-sTzxIAIbbQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sTzxIAIbbQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-sTzxIAIbbQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-sTzxIAIbbQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sTzxIAIbbQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sTzxIAIbbQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTzxIAIbbQ .list-item {
  display: flex;
}
.cid-sTzxIAIbbQ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-sTzxIAIbbQ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-sTzxIAIbbQ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-sTzxIAIbbQ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-sTzxIAIbbQ .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-sTzxIAIbbQ P {
  color: #ffffff;
  text-align: left;
}
.cid-sTzxIAIbbQ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-sTzxIAIbbQ .mbr-text DIV {
  text-align: left;
}
.cid-sTzxIAIbbQ .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-sTzxIAIbbQ .logo-subtitle,
.cid-sTzxIAIbbQ .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sTzxIAIbbQ .mbr-text P {
  text-align: left;
}
.cid-t1GLeSMKbj {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GLeSMKbj .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GLeTzziM .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GLeTzziM .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GLeTzziM a {
  font-style: normal;
}
.cid-t1GLeTzziM .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GLeTzziM .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GLeTzziM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLeTzziM .content-text {
  margin-bottom: 0;
}
.cid-t1GLeTzziM .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GLeTzziM .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GLeTzziM .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GLeTzziM .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GLeTzziM .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GLeTzziM .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GLeTzziM .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GLeTzziM .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GLeTzziM .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GLeTzziM .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GLeTzziM .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GLeTzziM .content-right-side {
  text-align: center;
}
.cid-t1GLeTzziM .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GLeTzziM .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GLeTzziM .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GLeTzziM .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GLeTzziM .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GLeTzziM .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GLeTzziM img {
    height: 1rem !important;
  }
  .cid-t1GLeTzziM .btn {
    display: -webkit-flex;
  }
  .cid-t1GLeTzziM button.navbar-toggler {
    display: block;
  }
  .cid-t1GLeTzziM .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GLeTzziM .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GLeTzziM .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing,
  .cid-t1GLeTzziM .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GLeTzziM .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GLeTzziM .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GLeTzziM .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GLeTzziM .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GLeTzziM .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GLeTzziM .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GLeTzziM .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GLeTzziM .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GLeTzziM .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GLeTzziM .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GLeTzziM .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GLeTzziM .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GLeTzziM .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GLeTzziM .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GLeTzziM .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GLeTzziM .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GLeTzziM .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GLeTzziM .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GLeTzziM .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GLeTzziM .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLeTzziM .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GLeTzziM .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GLeTzziM .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GLeTzziM .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GLeTzziM .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GLeTzziM .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GLeTzziM .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GLeTzziM .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GLeTzziM .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GLeTzziM .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GLeTzziM .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GLeTzziM .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GLeTzziM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GLeTzziM .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GLeTzziM .navbar-toggler {
    display: none;
  }
  .cid-t1GLeTzziM .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GLeTzziM .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLeTzziM .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GLeTzziM .menu-logo {
  margin-right: auto;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GLeTzziM .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GLeTzziM .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GLeTzziM .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GLeTzziM .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GLeTzziM .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GLeTzziM .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GLeTzziM .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLeTzziM .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GLeTzziM .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GLeTzziM .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GLeTzziM .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GLeTzziM .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GLeTzziM .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GLeTzziM .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GLeTzziM .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GLeTzziM button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GLeTzziM button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GLeTzziM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GLeTzziM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GLeTzziM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GLeTzziM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GLeTzziM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GLeTzziM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GLeTzziM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GLeTzziM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GLeTzziM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GLeTzziM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GLeTzziM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GLeTzziM .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GLeTzziM .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GLeTzziM .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GLeTzziM .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GLeTzziM .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GLeTzziM .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GLeTzziM .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GLeTzziM .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GLeTzziM .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GLeTzziM .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GLeTzziM .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GLeTzziM .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GLeTzziM .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GLeTzziM .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GLeTzziM .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GLeTzziM .nav-link:focus {
  outline: none;
}
.cid-t1GLeTzziM .navbar-toggler {
  position: relative;
}
.cid-t1GLeTzziM .dropdown-item.active,
.cid-t1GLeTzziM .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GLeTzziM .nav-link:hover,
.cid-t1GLeTzziM .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GLeTzziM .widget-title,
.cid-t1GLeTzziM .widget-icon {
  color: #777d74;
}
.cid-t1GLeTzziM .widget-text {
  color: #777d74;
}
.cid-t1GLeUfTCB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GLeUfTCB {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GLeUfTCB {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GLeUfTCB .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GLeUfTCB .f-row {
    flex-direction: row;
  }
}
.cid-t1GLeUfTCB .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GLeUfTCB .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GLeUfTCB .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GLeUfTCB .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GLeUfTCB .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GLeUfTCB .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GLeUfTCB .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GLeUfTCB .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GLeUfTCB .mbr-text {
  color: #ffffff;
}
.cid-t1GLeUC0Cs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GLeUC0Cs .mbr-section-title,
  .cid-t1GLeUC0Cs .mbr-section-subtitle,
  .cid-t1GLeUC0Cs .mbr-section-btn,
  .cid-t1GLeUC0Cs .mbr-text {
    text-align: center;
  }
}
.cid-t1GLeUC0Cs .mbr-section-title {
  color: #015cc7;
}
.cid-t1GLeUC0Cs .mbr-text,
.cid-t1GLeUC0Cs .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GLeUC0Cs .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GLeUC0Cs .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GLeUC0Cs .subtitle {
    text-align: center;
  }
}
.cid-t1GLeUC0Cs .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GLeUC0Cs span {
  padding-right: 1rem;
}
.cid-t1GLeUC0Cs .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GLeUC0Cs .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GLeUC0Cs .dot {
    padding-left: 0rem;
  }
  .cid-t1GLeUC0Cs .dot:before {
    content: none;
  }
}
.cid-t1GLeV39Wh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GLeV39Wh .content {
    text-align: center;
  }
  .cid-t1GLeV39Wh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GLeV39Wh .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GLeV39Wh .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GLeV39Wh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GLeV39Wh .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GLeV39Wh .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GLeV39Wh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GLeV39Wh .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GLeV39Wh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GLeV39Wh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GLeV39Wh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GLeV39Wh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GLeV39Wh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GLeV39Wh .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GLeV39Wh .list-item {
  display: flex;
}
.cid-t1GLeV39Wh .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GLeV39Wh ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GLeV39Wh ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GLeV39Wh ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GLeV39Wh .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLeV39Wh P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLeV39Wh .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLeV39Wh .mbr-text DIV {
  text-align: left;
}
.cid-t1GLeV39Wh .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GLeV39Wh .logo-subtitle,
.cid-t1GLeV39Wh .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GLeV39Wh .mbr-text P {
  text-align: left;
}
.cid-t1GLHNxPrj {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GLHNxPrj .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GLHOeUDX .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GLHOeUDX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GLHOeUDX a {
  font-style: normal;
}
.cid-t1GLHOeUDX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GLHOeUDX .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GLHOeUDX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLHOeUDX .content-text {
  margin-bottom: 0;
}
.cid-t1GLHOeUDX .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GLHOeUDX .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GLHOeUDX .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GLHOeUDX .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GLHOeUDX .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GLHOeUDX .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GLHOeUDX .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GLHOeUDX .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GLHOeUDX .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GLHOeUDX .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GLHOeUDX .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GLHOeUDX .content-right-side {
  text-align: center;
}
.cid-t1GLHOeUDX .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GLHOeUDX .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GLHOeUDX .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GLHOeUDX .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GLHOeUDX .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GLHOeUDX .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GLHOeUDX img {
    height: 1rem !important;
  }
  .cid-t1GLHOeUDX .btn {
    display: -webkit-flex;
  }
  .cid-t1GLHOeUDX button.navbar-toggler {
    display: block;
  }
  .cid-t1GLHOeUDX .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GLHOeUDX .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GLHOeUDX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing,
  .cid-t1GLHOeUDX .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GLHOeUDX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GLHOeUDX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GLHOeUDX .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GLHOeUDX .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GLHOeUDX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GLHOeUDX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GLHOeUDX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GLHOeUDX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GLHOeUDX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GLHOeUDX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GLHOeUDX .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GLHOeUDX .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GLHOeUDX .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GLHOeUDX .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GLHOeUDX .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GLHOeUDX .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GLHOeUDX .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GLHOeUDX .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GLHOeUDX .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GLHOeUDX .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLHOeUDX .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GLHOeUDX .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GLHOeUDX .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GLHOeUDX .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GLHOeUDX .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GLHOeUDX .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GLHOeUDX .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GLHOeUDX .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GLHOeUDX .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GLHOeUDX .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GLHOeUDX .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GLHOeUDX .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GLHOeUDX .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GLHOeUDX .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GLHOeUDX .navbar-toggler {
    display: none;
  }
  .cid-t1GLHOeUDX .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GLHOeUDX .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLHOeUDX .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GLHOeUDX .menu-logo {
  margin-right: auto;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GLHOeUDX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GLHOeUDX .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GLHOeUDX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GLHOeUDX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GLHOeUDX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GLHOeUDX .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GLHOeUDX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GLHOeUDX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GLHOeUDX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GLHOeUDX .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GLHOeUDX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GLHOeUDX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GLHOeUDX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GLHOeUDX .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GLHOeUDX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GLHOeUDX button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GLHOeUDX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GLHOeUDX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GLHOeUDX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GLHOeUDX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GLHOeUDX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GLHOeUDX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GLHOeUDX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GLHOeUDX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GLHOeUDX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GLHOeUDX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GLHOeUDX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GLHOeUDX .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GLHOeUDX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GLHOeUDX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GLHOeUDX .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GLHOeUDX .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GLHOeUDX .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GLHOeUDX .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GLHOeUDX .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GLHOeUDX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GLHOeUDX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GLHOeUDX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GLHOeUDX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GLHOeUDX .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GLHOeUDX .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GLHOeUDX .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GLHOeUDX .nav-link:focus {
  outline: none;
}
.cid-t1GLHOeUDX .navbar-toggler {
  position: relative;
}
.cid-t1GLHOeUDX .dropdown-item.active,
.cid-t1GLHOeUDX .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GLHOeUDX .nav-link:hover,
.cid-t1GLHOeUDX .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GLHOeUDX .widget-title,
.cid-t1GLHOeUDX .widget-icon {
  color: #777d74;
}
.cid-t1GLHOeUDX .widget-text {
  color: #777d74;
}
.cid-t1GLHOP10H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GLHOP10H {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GLHOP10H {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GLHOP10H .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GLHOP10H .f-row {
    flex-direction: row;
  }
}
.cid-t1GLHOP10H .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GLHOP10H .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GLHOP10H .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GLHOP10H .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GLHOP10H .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GLHOP10H .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GLHOP10H .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GLHOP10H .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GLHOP10H .mbr-text {
  color: #ffffff;
}
.cid-t1GLHPdRfH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GLHPdRfH .mbr-section-title,
  .cid-t1GLHPdRfH .mbr-section-subtitle,
  .cid-t1GLHPdRfH .mbr-section-btn,
  .cid-t1GLHPdRfH .mbr-text {
    text-align: center;
  }
}
.cid-t1GLHPdRfH .mbr-section-title {
  color: #015cc7;
}
.cid-t1GLHPdRfH .mbr-text,
.cid-t1GLHPdRfH .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GLHPdRfH .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GLHPdRfH .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GLHPdRfH .subtitle {
    text-align: center;
  }
}
.cid-t1GLHPdRfH .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GLHPdRfH span {
  padding-right: 1rem;
}
.cid-t1GLHPdRfH .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GLHPdRfH .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GLHPdRfH .dot {
    padding-left: 0rem;
  }
  .cid-t1GLHPdRfH .dot:before {
    content: none;
  }
}
.cid-t1GLHPEJLx {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GLHPEJLx .content {
    text-align: center;
  }
  .cid-t1GLHPEJLx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GLHPEJLx .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GLHPEJLx .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GLHPEJLx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GLHPEJLx .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GLHPEJLx .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GLHPEJLx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GLHPEJLx .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GLHPEJLx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GLHPEJLx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GLHPEJLx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GLHPEJLx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GLHPEJLx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GLHPEJLx .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GLHPEJLx .list-item {
  display: flex;
}
.cid-t1GLHPEJLx .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GLHPEJLx ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GLHPEJLx ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GLHPEJLx ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GLHPEJLx .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLHPEJLx P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLHPEJLx .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GLHPEJLx .mbr-text DIV {
  text-align: left;
}
.cid-t1GLHPEJLx .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GLHPEJLx .logo-subtitle,
.cid-t1GLHPEJLx .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GLHPEJLx .mbr-text P {
  text-align: left;
}
.cid-t1GM1locBw {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GM1locBw .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GM1m9Mg8 .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GM1m9Mg8 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GM1m9Mg8 a {
  font-style: normal;
}
.cid-t1GM1m9Mg8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GM1m9Mg8 .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GM1m9Mg8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GM1m9Mg8 .content-text {
  margin-bottom: 0;
}
.cid-t1GM1m9Mg8 .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GM1m9Mg8 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GM1m9Mg8 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GM1m9Mg8 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GM1m9Mg8 .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GM1m9Mg8 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GM1m9Mg8 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GM1m9Mg8 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GM1m9Mg8 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GM1m9Mg8 .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GM1m9Mg8 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GM1m9Mg8 .content-right-side {
  text-align: center;
}
.cid-t1GM1m9Mg8 .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GM1m9Mg8 .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GM1m9Mg8 .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GM1m9Mg8 .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GM1m9Mg8 .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GM1m9Mg8 .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GM1m9Mg8 img {
    height: 1rem !important;
  }
  .cid-t1GM1m9Mg8 .btn {
    display: -webkit-flex;
  }
  .cid-t1GM1m9Mg8 button.navbar-toggler {
    display: block;
  }
  .cid-t1GM1m9Mg8 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GM1m9Mg8 .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing,
  .cid-t1GM1m9Mg8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GM1m9Mg8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GM1m9Mg8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GM1m9Mg8 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GM1m9Mg8 .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GM1m9Mg8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GM1m9Mg8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GM1m9Mg8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GM1m9Mg8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GM1m9Mg8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GM1m9Mg8 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GM1m9Mg8 .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GM1m9Mg8 .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GM1m9Mg8 .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GM1m9Mg8 .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GM1m9Mg8 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GM1m9Mg8 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GM1m9Mg8 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GM1m9Mg8 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GM1m9Mg8 .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GM1m9Mg8 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GM1m9Mg8 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GM1m9Mg8 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GM1m9Mg8 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GM1m9Mg8 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GM1m9Mg8 .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GM1m9Mg8 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GM1m9Mg8 .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GM1m9Mg8 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GM1m9Mg8 .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GM1m9Mg8 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GM1m9Mg8 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GM1m9Mg8 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GM1m9Mg8 .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GM1m9Mg8 .navbar-toggler {
    display: none;
  }
  .cid-t1GM1m9Mg8 .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GM1m9Mg8 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GM1m9Mg8 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GM1m9Mg8 .menu-logo {
  margin-right: auto;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GM1m9Mg8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GM1m9Mg8 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GM1m9Mg8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GM1m9Mg8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GM1m9Mg8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GM1m9Mg8 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GM1m9Mg8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GM1m9Mg8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GM1m9Mg8 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GM1m9Mg8 .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GM1m9Mg8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GM1m9Mg8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GM1m9Mg8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GM1m9Mg8 .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GM1m9Mg8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GM1m9Mg8 button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GM1m9Mg8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GM1m9Mg8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GM1m9Mg8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GM1m9Mg8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GM1m9Mg8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GM1m9Mg8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GM1m9Mg8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GM1m9Mg8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GM1m9Mg8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GM1m9Mg8 .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GM1m9Mg8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GM1m9Mg8 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GM1m9Mg8 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GM1m9Mg8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GM1m9Mg8 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GM1m9Mg8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GM1m9Mg8 .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GM1m9Mg8 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GM1m9Mg8 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GM1m9Mg8 .nav-link:focus {
  outline: none;
}
.cid-t1GM1m9Mg8 .navbar-toggler {
  position: relative;
}
.cid-t1GM1m9Mg8 .dropdown-item.active,
.cid-t1GM1m9Mg8 .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GM1m9Mg8 .nav-link:hover,
.cid-t1GM1m9Mg8 .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GM1m9Mg8 .widget-title,
.cid-t1GM1m9Mg8 .widget-icon {
  color: #777d74;
}
.cid-t1GM1m9Mg8 .widget-text {
  color: #777d74;
}
.cid-t1GM1mS1xY {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GM1mS1xY {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GM1mS1xY {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GM1mS1xY .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GM1mS1xY .f-row {
    flex-direction: row;
  }
}
.cid-t1GM1mS1xY .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GM1mS1xY .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GM1mS1xY .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GM1mS1xY .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GM1mS1xY .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GM1mS1xY .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GM1mS1xY .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GM1mS1xY .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GM1mS1xY .mbr-text {
  color: #ffffff;
}
.cid-t1GM1nfBwR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GM1nfBwR .mbr-section-title,
  .cid-t1GM1nfBwR .mbr-section-subtitle,
  .cid-t1GM1nfBwR .mbr-section-btn,
  .cid-t1GM1nfBwR .mbr-text {
    text-align: center;
  }
}
.cid-t1GM1nfBwR .mbr-section-title {
  color: #015cc7;
}
.cid-t1GM1nfBwR .mbr-text,
.cid-t1GM1nfBwR .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GM1nfBwR .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GM1nfBwR .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GM1nfBwR .subtitle {
    text-align: center;
  }
}
.cid-t1GM1nfBwR .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GM1nfBwR span {
  padding-right: 1rem;
}
.cid-t1GM1nfBwR .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GM1nfBwR .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GM1nfBwR .dot {
    padding-left: 0rem;
  }
  .cid-t1GM1nfBwR .dot:before {
    content: none;
  }
}
.cid-t1GM1nKdG6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GM1nKdG6 .content {
    text-align: center;
  }
  .cid-t1GM1nKdG6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GM1nKdG6 .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GM1nKdG6 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GM1nKdG6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GM1nKdG6 .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GM1nKdG6 .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GM1nKdG6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GM1nKdG6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GM1nKdG6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GM1nKdG6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GM1nKdG6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GM1nKdG6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GM1nKdG6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GM1nKdG6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GM1nKdG6 .list-item {
  display: flex;
}
.cid-t1GM1nKdG6 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GM1nKdG6 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GM1nKdG6 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GM1nKdG6 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GM1nKdG6 .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GM1nKdG6 P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GM1nKdG6 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GM1nKdG6 .mbr-text DIV {
  text-align: left;
}
.cid-t1GM1nKdG6 .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GM1nKdG6 .logo-subtitle,
.cid-t1GM1nKdG6 .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GM1nKdG6 .mbr-text P {
  text-align: left;
}
.cid-t1GMkDugl6 {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GMkDugl6 .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GMkDYAtv .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GMkDYAtv .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GMkDYAtv a {
  font-style: normal;
}
.cid-t1GMkDYAtv .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GMkDYAtv .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GMkDYAtv .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GMkDYAtv .content-text {
  margin-bottom: 0;
}
.cid-t1GMkDYAtv .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GMkDYAtv .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GMkDYAtv .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GMkDYAtv .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GMkDYAtv .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GMkDYAtv .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GMkDYAtv .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GMkDYAtv .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GMkDYAtv .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GMkDYAtv .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GMkDYAtv .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GMkDYAtv .content-right-side {
  text-align: center;
}
.cid-t1GMkDYAtv .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GMkDYAtv .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GMkDYAtv .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GMkDYAtv .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GMkDYAtv .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GMkDYAtv .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GMkDYAtv img {
    height: 1rem !important;
  }
  .cid-t1GMkDYAtv .btn {
    display: -webkit-flex;
  }
  .cid-t1GMkDYAtv button.navbar-toggler {
    display: block;
  }
  .cid-t1GMkDYAtv .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GMkDYAtv .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GMkDYAtv .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing,
  .cid-t1GMkDYAtv .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GMkDYAtv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GMkDYAtv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GMkDYAtv .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GMkDYAtv .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GMkDYAtv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GMkDYAtv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GMkDYAtv .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GMkDYAtv .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GMkDYAtv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GMkDYAtv .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GMkDYAtv .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GMkDYAtv .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GMkDYAtv .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GMkDYAtv .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GMkDYAtv .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GMkDYAtv .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GMkDYAtv .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GMkDYAtv .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GMkDYAtv .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GMkDYAtv .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GMkDYAtv .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GMkDYAtv .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GMkDYAtv .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GMkDYAtv .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GMkDYAtv .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GMkDYAtv .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GMkDYAtv .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GMkDYAtv .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GMkDYAtv .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GMkDYAtv .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GMkDYAtv .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GMkDYAtv .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GMkDYAtv .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GMkDYAtv .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GMkDYAtv .navbar-toggler {
    display: none;
  }
  .cid-t1GMkDYAtv .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GMkDYAtv .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GMkDYAtv .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GMkDYAtv .menu-logo {
  margin-right: auto;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GMkDYAtv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GMkDYAtv .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GMkDYAtv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GMkDYAtv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GMkDYAtv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GMkDYAtv .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GMkDYAtv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GMkDYAtv .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GMkDYAtv .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GMkDYAtv .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GMkDYAtv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GMkDYAtv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GMkDYAtv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GMkDYAtv .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GMkDYAtv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GMkDYAtv button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GMkDYAtv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GMkDYAtv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GMkDYAtv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GMkDYAtv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GMkDYAtv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GMkDYAtv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GMkDYAtv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GMkDYAtv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GMkDYAtv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GMkDYAtv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GMkDYAtv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GMkDYAtv .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GMkDYAtv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GMkDYAtv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GMkDYAtv .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GMkDYAtv .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GMkDYAtv .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GMkDYAtv .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GMkDYAtv .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GMkDYAtv .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GMkDYAtv .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GMkDYAtv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GMkDYAtv .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GMkDYAtv .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GMkDYAtv .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GMkDYAtv .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GMkDYAtv .nav-link:focus {
  outline: none;
}
.cid-t1GMkDYAtv .navbar-toggler {
  position: relative;
}
.cid-t1GMkDYAtv .dropdown-item.active,
.cid-t1GMkDYAtv .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GMkDYAtv .nav-link:hover,
.cid-t1GMkDYAtv .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GMkDYAtv .widget-title,
.cid-t1GMkDYAtv .widget-icon {
  color: #777d74;
}
.cid-t1GMkDYAtv .widget-text {
  color: #777d74;
}
.cid-t1GMkExjGB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GMkExjGB {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GMkExjGB {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GMkExjGB .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GMkExjGB .f-row {
    flex-direction: row;
  }
}
.cid-t1GMkExjGB .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GMkExjGB .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GMkExjGB .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GMkExjGB .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GMkExjGB .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GMkExjGB .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GMkExjGB .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GMkExjGB .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GMkExjGB .mbr-text {
  color: #ffffff;
}
.cid-t1GMkEYYhM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GMkEYYhM .mbr-section-title,
  .cid-t1GMkEYYhM .mbr-section-subtitle,
  .cid-t1GMkEYYhM .mbr-section-btn,
  .cid-t1GMkEYYhM .mbr-text {
    text-align: center;
  }
}
.cid-t1GMkEYYhM .mbr-section-title {
  color: #015cc7;
}
.cid-t1GMkEYYhM .mbr-text,
.cid-t1GMkEYYhM .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GMkEYYhM .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GMkEYYhM .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GMkEYYhM .subtitle {
    text-align: center;
  }
}
.cid-t1GMkEYYhM .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GMkEYYhM span {
  padding-right: 1rem;
}
.cid-t1GMkEYYhM .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GMkEYYhM .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GMkEYYhM .dot {
    padding-left: 0rem;
  }
  .cid-t1GMkEYYhM .dot:before {
    content: none;
  }
}
.cid-t1GMkFr8Ty {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GMkFr8Ty .content {
    text-align: center;
  }
  .cid-t1GMkFr8Ty .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GMkFr8Ty .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GMkFr8Ty .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GMkFr8Ty .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GMkFr8Ty .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GMkFr8Ty .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GMkFr8Ty .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GMkFr8Ty .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GMkFr8Ty .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GMkFr8Ty .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GMkFr8Ty .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GMkFr8Ty .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GMkFr8Ty .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GMkFr8Ty .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GMkFr8Ty .list-item {
  display: flex;
}
.cid-t1GMkFr8Ty .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GMkFr8Ty ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GMkFr8Ty ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GMkFr8Ty ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GMkFr8Ty .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GMkFr8Ty P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GMkFr8Ty .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GMkFr8Ty .mbr-text DIV {
  text-align: left;
}
.cid-t1GMkFr8Ty .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GMkFr8Ty .logo-subtitle,
.cid-t1GMkFr8Ty .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GMkFr8Ty .mbr-text P {
  text-align: left;
}
.cid-t1GOTtGMgh {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GOTtGMgh .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GOTur7Si .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GOTur7Si .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GOTur7Si a {
  font-style: normal;
}
.cid-t1GOTur7Si .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GOTur7Si .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GOTur7Si .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GOTur7Si .content-text {
  margin-bottom: 0;
}
.cid-t1GOTur7Si .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GOTur7Si .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GOTur7Si .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GOTur7Si .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GOTur7Si .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GOTur7Si .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GOTur7Si .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GOTur7Si .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GOTur7Si .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GOTur7Si .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GOTur7Si .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GOTur7Si .content-right-side {
  text-align: center;
}
.cid-t1GOTur7Si .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GOTur7Si .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GOTur7Si .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GOTur7Si .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GOTur7Si .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GOTur7Si .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GOTur7Si img {
    height: 1rem !important;
  }
  .cid-t1GOTur7Si .btn {
    display: -webkit-flex;
  }
  .cid-t1GOTur7Si button.navbar-toggler {
    display: block;
  }
  .cid-t1GOTur7Si .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GOTur7Si .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GOTur7Si .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing,
  .cid-t1GOTur7Si .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GOTur7Si .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GOTur7Si .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GOTur7Si .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GOTur7Si .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GOTur7Si .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GOTur7Si .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GOTur7Si .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GOTur7Si .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GOTur7Si .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GOTur7Si .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GOTur7Si .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GOTur7Si .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GOTur7Si .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GOTur7Si .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GOTur7Si .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GOTur7Si .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GOTur7Si .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GOTur7Si .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GOTur7Si .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GOTur7Si .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GOTur7Si .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GOTur7Si .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GOTur7Si .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GOTur7Si .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GOTur7Si .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GOTur7Si .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GOTur7Si .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GOTur7Si .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GOTur7Si .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GOTur7Si .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GOTur7Si .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GOTur7Si .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GOTur7Si .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GOTur7Si .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GOTur7Si .navbar-toggler {
    display: none;
  }
  .cid-t1GOTur7Si .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GOTur7Si .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GOTur7Si .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GOTur7Si .menu-logo {
  margin-right: auto;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GOTur7Si .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GOTur7Si .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GOTur7Si .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GOTur7Si .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GOTur7Si .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GOTur7Si .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GOTur7Si .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GOTur7Si .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GOTur7Si .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GOTur7Si .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GOTur7Si .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GOTur7Si .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GOTur7Si .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GOTur7Si .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GOTur7Si .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GOTur7Si button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GOTur7Si button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GOTur7Si button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GOTur7Si button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GOTur7Si button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GOTur7Si button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GOTur7Si button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GOTur7Si nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GOTur7Si nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GOTur7Si nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GOTur7Si nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GOTur7Si .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GOTur7Si .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GOTur7Si .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GOTur7Si .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GOTur7Si .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GOTur7Si .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GOTur7Si .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GOTur7Si .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GOTur7Si .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GOTur7Si .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GOTur7Si .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GOTur7Si .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GOTur7Si .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GOTur7Si .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GOTur7Si .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GOTur7Si .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GOTur7Si .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GOTur7Si .nav-link:focus {
  outline: none;
}
.cid-t1GOTur7Si .navbar-toggler {
  position: relative;
}
.cid-t1GOTur7Si .dropdown-item.active,
.cid-t1GOTur7Si .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GOTur7Si .nav-link:hover,
.cid-t1GOTur7Si .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GOTur7Si .widget-title,
.cid-t1GOTur7Si .widget-icon {
  color: #777d74;
}
.cid-t1GOTur7Si .widget-text {
  color: #777d74;
}
.cid-t1GOTv62K6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GOTv62K6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GOTv62K6 {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GOTv62K6 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GOTv62K6 .f-row {
    flex-direction: row;
  }
}
.cid-t1GOTv62K6 .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GOTv62K6 .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GOTv62K6 .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GOTv62K6 .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GOTv62K6 .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GOTv62K6 .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GOTv62K6 .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GOTv62K6 .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GOTv62K6 .mbr-text {
  color: #ffffff;
}
.cid-t1GOTvtI2R {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GOTvtI2R .mbr-section-title,
  .cid-t1GOTvtI2R .mbr-section-subtitle,
  .cid-t1GOTvtI2R .mbr-section-btn,
  .cid-t1GOTvtI2R .mbr-text {
    text-align: center;
  }
}
.cid-t1GOTvtI2R .mbr-section-title {
  color: #015cc7;
}
.cid-t1GOTvtI2R .mbr-text,
.cid-t1GOTvtI2R .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GOTvtI2R .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GOTvtI2R .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GOTvtI2R .subtitle {
    text-align: center;
  }
}
.cid-t1GOTvtI2R .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GOTvtI2R span {
  padding-right: 1rem;
}
.cid-t1GOTvtI2R .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GOTvtI2R .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GOTvtI2R .dot {
    padding-left: 0rem;
  }
  .cid-t1GOTvtI2R .dot:before {
    content: none;
  }
}
.cid-t1GOTvVLo3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GOTvVLo3 .content {
    text-align: center;
  }
  .cid-t1GOTvVLo3 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GOTvVLo3 .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GOTvVLo3 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GOTvVLo3 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GOTvVLo3 .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GOTvVLo3 .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GOTvVLo3 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GOTvVLo3 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GOTvVLo3 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GOTvVLo3 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GOTvVLo3 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GOTvVLo3 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GOTvVLo3 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GOTvVLo3 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GOTvVLo3 .list-item {
  display: flex;
}
.cid-t1GOTvVLo3 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GOTvVLo3 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GOTvVLo3 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GOTvVLo3 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GOTvVLo3 .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GOTvVLo3 P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GOTvVLo3 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GOTvVLo3 .mbr-text DIV {
  text-align: left;
}
.cid-t1GOTvVLo3 .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GOTvVLo3 .logo-subtitle,
.cid-t1GOTvVLo3 .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GOTvVLo3 .mbr-text P {
  text-align: left;
}
.cid-t1GPggbguq {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GPggbguq .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GPggU1pg .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GPggU1pg .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GPggU1pg a {
  font-style: normal;
}
.cid-t1GPggU1pg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GPggU1pg .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GPggU1pg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPggU1pg .content-text {
  margin-bottom: 0;
}
.cid-t1GPggU1pg .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GPggU1pg .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GPggU1pg .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GPggU1pg .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GPggU1pg .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GPggU1pg .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GPggU1pg .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GPggU1pg .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GPggU1pg .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GPggU1pg .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GPggU1pg .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GPggU1pg .content-right-side {
  text-align: center;
}
.cid-t1GPggU1pg .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GPggU1pg .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GPggU1pg .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GPggU1pg .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GPggU1pg .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GPggU1pg .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GPggU1pg img {
    height: 1rem !important;
  }
  .cid-t1GPggU1pg .btn {
    display: -webkit-flex;
  }
  .cid-t1GPggU1pg button.navbar-toggler {
    display: block;
  }
  .cid-t1GPggU1pg .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GPggU1pg .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GPggU1pg .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing,
  .cid-t1GPggU1pg .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GPggU1pg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GPggU1pg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GPggU1pg .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GPggU1pg .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GPggU1pg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GPggU1pg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GPggU1pg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GPggU1pg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GPggU1pg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GPggU1pg .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GPggU1pg .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GPggU1pg .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GPggU1pg .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GPggU1pg .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GPggU1pg .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GPggU1pg .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GPggU1pg .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GPggU1pg .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GPggU1pg .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GPggU1pg .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPggU1pg .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GPggU1pg .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GPggU1pg .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GPggU1pg .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GPggU1pg .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GPggU1pg .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GPggU1pg .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GPggU1pg .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GPggU1pg .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GPggU1pg .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GPggU1pg .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GPggU1pg .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GPggU1pg .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GPggU1pg .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GPggU1pg .navbar-toggler {
    display: none;
  }
  .cid-t1GPggU1pg .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GPggU1pg .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPggU1pg .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GPggU1pg .menu-logo {
  margin-right: auto;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GPggU1pg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GPggU1pg .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GPggU1pg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GPggU1pg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GPggU1pg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GPggU1pg .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GPggU1pg .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPggU1pg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GPggU1pg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GPggU1pg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GPggU1pg .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GPggU1pg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GPggU1pg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GPggU1pg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GPggU1pg .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GPggU1pg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GPggU1pg button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GPggU1pg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GPggU1pg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GPggU1pg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GPggU1pg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GPggU1pg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GPggU1pg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GPggU1pg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GPggU1pg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GPggU1pg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GPggU1pg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GPggU1pg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GPggU1pg .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GPggU1pg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GPggU1pg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GPggU1pg .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GPggU1pg .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GPggU1pg .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GPggU1pg .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GPggU1pg .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GPggU1pg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GPggU1pg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GPggU1pg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GPggU1pg .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GPggU1pg .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GPggU1pg .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GPggU1pg .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GPggU1pg .nav-link:focus {
  outline: none;
}
.cid-t1GPggU1pg .navbar-toggler {
  position: relative;
}
.cid-t1GPggU1pg .dropdown-item.active,
.cid-t1GPggU1pg .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GPggU1pg .nav-link:hover,
.cid-t1GPggU1pg .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GPggU1pg .widget-title,
.cid-t1GPggU1pg .widget-icon {
  color: #777d74;
}
.cid-t1GPggU1pg .widget-text {
  color: #777d74;
}
.cid-t1GPghBItP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GPghBItP {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GPghBItP {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GPghBItP .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GPghBItP .f-row {
    flex-direction: row;
  }
}
.cid-t1GPghBItP .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GPghBItP .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GPghBItP .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GPghBItP .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GPghBItP .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GPghBItP .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GPghBItP .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GPghBItP .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GPghBItP .mbr-text {
  color: #ffffff;
}
.cid-t1GPghY5nW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GPghY5nW .mbr-section-title,
  .cid-t1GPghY5nW .mbr-section-subtitle,
  .cid-t1GPghY5nW .mbr-section-btn,
  .cid-t1GPghY5nW .mbr-text {
    text-align: center;
  }
}
.cid-t1GPghY5nW .mbr-section-title {
  color: #015cc7;
}
.cid-t1GPghY5nW .mbr-text,
.cid-t1GPghY5nW .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GPghY5nW .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GPghY5nW .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GPghY5nW .subtitle {
    text-align: center;
  }
}
.cid-t1GPghY5nW .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GPghY5nW span {
  padding-right: 1rem;
}
.cid-t1GPghY5nW .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GPghY5nW .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GPghY5nW .dot {
    padding-left: 0rem;
  }
  .cid-t1GPghY5nW .dot:before {
    content: none;
  }
}
.cid-t1GPgiq5tF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GPgiq5tF .content {
    text-align: center;
  }
  .cid-t1GPgiq5tF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GPgiq5tF .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GPgiq5tF .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GPgiq5tF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GPgiq5tF .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GPgiq5tF .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GPgiq5tF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GPgiq5tF .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GPgiq5tF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GPgiq5tF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GPgiq5tF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GPgiq5tF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GPgiq5tF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GPgiq5tF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GPgiq5tF .list-item {
  display: flex;
}
.cid-t1GPgiq5tF .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GPgiq5tF ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GPgiq5tF ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GPgiq5tF ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GPgiq5tF .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPgiq5tF P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPgiq5tF .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPgiq5tF .mbr-text DIV {
  text-align: left;
}
.cid-t1GPgiq5tF .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GPgiq5tF .logo-subtitle,
.cid-t1GPgiq5tF .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GPgiq5tF .mbr-text P {
  text-align: left;
}
.cid-t1GPxlv7UL {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t1GPxlv7UL .mbr-section-title {
  text-align: center;
  color: #015cc7;
}
.cid-t1GPxlYiop .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t1GPxlYiop .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t1GPxlYiop a {
  font-style: normal;
}
.cid-t1GPxlYiop .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t1GPxlYiop .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t1GPxlYiop .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPxlYiop .content-text {
  margin-bottom: 0;
}
.cid-t1GPxlYiop .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t1GPxlYiop .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t1GPxlYiop .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t1GPxlYiop .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t1GPxlYiop .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t1GPxlYiop .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GPxlYiop .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t1GPxlYiop .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t1GPxlYiop .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GPxlYiop .nav-dropdown .link {
  font-weight: 400;
}
.cid-t1GPxlYiop .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t1GPxlYiop .content-right-side {
  text-align: center;
}
.cid-t1GPxlYiop .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t1GPxlYiop .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t1GPxlYiop .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t1GPxlYiop .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t1GPxlYiop .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t1GPxlYiop .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t1GPxlYiop img {
    height: 1rem !important;
  }
  .cid-t1GPxlYiop .btn {
    display: -webkit-flex;
  }
  .cid-t1GPxlYiop button.navbar-toggler {
    display: block;
  }
  .cid-t1GPxlYiop .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t1GPxlYiop .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t1GPxlYiop .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing,
  .cid-t1GPxlYiop .navbar-collapse.show {
    display: block !important;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing .navbar-nav,
  .cid-t1GPxlYiop .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t1GPxlYiop .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t1GPxlYiop .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing .navbar-buttons,
  .cid-t1GPxlYiop .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t1GPxlYiop .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t1GPxlYiop .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t1GPxlYiop .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t1GPxlYiop .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t1GPxlYiop .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t1GPxlYiop .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t1GPxlYiop .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t1GPxlYiop .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GPxlYiop .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t1GPxlYiop .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t1GPxlYiop .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t1GPxlYiop .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t1GPxlYiop .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t1GPxlYiop .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t1GPxlYiop .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t1GPxlYiop .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPxlYiop .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t1GPxlYiop .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t1GPxlYiop .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t1GPxlYiop .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t1GPxlYiop .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t1GPxlYiop .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GPxlYiop .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t1GPxlYiop .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GPxlYiop .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t1GPxlYiop .navbar {
    display: block;
    padding: 0;
  }
  .cid-t1GPxlYiop .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t1GPxlYiop .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t1GPxlYiop .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t1GPxlYiop .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t1GPxlYiop .navbar-toggler {
    display: none;
  }
  .cid-t1GPxlYiop .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GPxlYiop .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPxlYiop .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t1GPxlYiop .menu-logo {
  margin-right: auto;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t1GPxlYiop .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t1GPxlYiop .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t1GPxlYiop .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t1GPxlYiop .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GPxlYiop .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t1GPxlYiop .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t1GPxlYiop .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t1GPxlYiop .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t1GPxlYiop .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1GPxlYiop .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t1GPxlYiop .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t1GPxlYiop .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t1GPxlYiop .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t1GPxlYiop .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t1GPxlYiop .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t1GPxlYiop button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t1GPxlYiop button.navbar-toggler:focus {
  outline: none;
}
.cid-t1GPxlYiop button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t1GPxlYiop button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t1GPxlYiop button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GPxlYiop button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t1GPxlYiop button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t1GPxlYiop nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GPxlYiop nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t1GPxlYiop nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t1GPxlYiop nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t1GPxlYiop .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1GPxlYiop .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1GPxlYiop .collapsed .btn {
  display: -webkit-flex;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t1GPxlYiop .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t1GPxlYiop .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t1GPxlYiop .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t1GPxlYiop .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t1GPxlYiop .collapsed button.navbar-toggler {
  display: block;
}
.cid-t1GPxlYiop .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t1GPxlYiop .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t1GPxlYiop .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t1GPxlYiop .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t1GPxlYiop .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t1GPxlYiop .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t1GPxlYiop .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t1GPxlYiop .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t1GPxlYiop .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t1GPxlYiop .nav-link:focus {
  outline: none;
}
.cid-t1GPxlYiop .navbar-toggler {
  position: relative;
}
.cid-t1GPxlYiop .dropdown-item.active,
.cid-t1GPxlYiop .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t1GPxlYiop .nav-link:hover,
.cid-t1GPxlYiop .dropdown-item:hover {
  color: #4284df;
}
.cid-t1GPxlYiop .widget-title,
.cid-t1GPxlYiop .widget-icon {
  color: #777d74;
}
.cid-t1GPxlYiop .widget-text {
  color: #777d74;
}
.cid-t1GPxmva0g {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo05.webp");
}
@media (max-width: 1000px) {
  .cid-t1GPxmva0g {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-t1GPxmva0g {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-t1GPxmva0g .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t1GPxmva0g .f-row {
    flex-direction: row;
  }
}
.cid-t1GPxmva0g .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-t1GPxmva0g .f-item {
    flex: 1 1 50%;
  }
}
.cid-t1GPxmva0g .image-wrapper {
  height: 70%;
}
@media (min-width: 992px) {
  .cid-t1GPxmva0g .image-wrapper {
    min-height: 500px;
  }
}
.cid-t1GPxmva0g .image-wrapper img {
  min-height: 100%;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}
.cid-t1GPxmva0g .text-wrapper {
  width: 100%;
  background: #56abe7;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-t1GPxmva0g .text-wrapper {
    padding: 1rem;
    transform: translate(-12%, 1rem);
  }
}
@media (min-width: 1200px) {
  .cid-t1GPxmva0g .text-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-t1GPxmva0g .mbr-text {
  color: #ffffff;
}
.cid-t1GPxmRajb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-t1GPxmRajb .mbr-section-title,
  .cid-t1GPxmRajb .mbr-section-subtitle,
  .cid-t1GPxmRajb .mbr-section-btn,
  .cid-t1GPxmRajb .mbr-text {
    text-align: center;
  }
}
.cid-t1GPxmRajb .mbr-section-title {
  color: #015cc7;
}
.cid-t1GPxmRajb .mbr-text,
.cid-t1GPxmRajb .mbr-section-btn {
  color: #082c4e;
}
.cid-t1GPxmRajb .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-t1GPxmRajb .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-t1GPxmRajb .subtitle {
    text-align: center;
  }
}
.cid-t1GPxmRajb .mbr-section-subtitle {
  color: #082c4e;
}
.cid-t1GPxmRajb span {
  padding-right: 1rem;
}
.cid-t1GPxmRajb .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-t1GPxmRajb .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0222a9;
}
@media (max-width: 767px) {
  .cid-t1GPxmRajb .dot {
    padding-left: 0rem;
  }
  .cid-t1GPxmRajb .dot:before {
    content: none;
  }
}
.cid-t1GPxnkcdk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t1GPxnkcdk .content {
    text-align: center;
  }
  .cid-t1GPxnkcdk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t1GPxnkcdk .logo-subtitle {
  color: #8d97ad;
}
.cid-t1GPxnkcdk .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t1GPxnkcdk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t1GPxnkcdk .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t1GPxnkcdk .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t1GPxnkcdk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t1GPxnkcdk .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t1GPxnkcdk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t1GPxnkcdk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t1GPxnkcdk .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t1GPxnkcdk .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t1GPxnkcdk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t1GPxnkcdk .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t1GPxnkcdk .list-item {
  display: flex;
}
.cid-t1GPxnkcdk .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t1GPxnkcdk ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t1GPxnkcdk ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t1GPxnkcdk ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t1GPxnkcdk .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPxnkcdk P {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPxnkcdk .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t1GPxnkcdk .mbr-text DIV {
  text-align: left;
}
.cid-t1GPxnkcdk .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t1GPxnkcdk .logo-subtitle,
.cid-t1GPxnkcdk .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t1GPxnkcdk .mbr-text P {
  text-align: left;
}
.cid-t6MsbTpRhd {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo03-3.webp");
}
.cid-t6MsbTpRhd .mbr-section-title {
  text-align: center;
  color: #1293e7;
}
.cid-t6MwDozvFq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/lipoaspiracao-enzimatica-de-papada-o-que-voce-precisa-saber-sobre-como-ser-livrar-desse-incomodo.webp");
}
.cid-t6MwDozvFq .card-wrapper {
  background: #015cc7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-t6MwDozvFq .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-t6MwDozvFq .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-t6MwDozvFq .card-wrapper {
    padding: 4rem;
  }
}
.cid-t6MwDozvFq .mbr-text,
.cid-t6MwDozvFq .mbr-section-btn {
  color: #ffffff;
}
.cid-t6MwDozvFq .card-title,
.cid-t6MwDozvFq .card-box {
  text-align: left;
}
.cid-t6MwcrLfiQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/fundo01-2-1920x600.jpeg");
}
.cid-t6MwcrLfiQ .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-t6MwcrLfiQ img,
.cid-t6MwcrLfiQ .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-t6MwcrLfiQ .item:focus,
.cid-t6MwcrLfiQ span:focus {
  outline: none;
}
.cid-t6MwcrLfiQ .item-wrapper {
  position: relative;
}
.cid-t6MwcrLfiQ .slide-content {
  position: relative;
  border-radius: 20px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t6MwcrLfiQ .slide-content .item-content {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t6MwcrLfiQ .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-t6MwcrLfiQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t6MwcrLfiQ .mbr-section-title {
  color: #0e27b3;
}
.cid-t6MwcrLfiQ .mbr-text,
.cid-t6MwcrLfiQ .mbr-section-btn {
  text-align: center;
}
.cid-t6MwcrLfiQ .item-title {
  text-align: center;
  color: #0e27b3;
}
.cid-t6MwcrLfiQ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-t6MwcrLfiQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-t6MwcrLfiQ .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-t6MwcrLfiQ .embla__button--next,
.cid-t6MwcrLfiQ .embla__button--prev {
  display: flex;
}
.cid-t6MwcrLfiQ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t6MwcrLfiQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-t6MwcrLfiQ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-t6MwcrLfiQ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t6MwcrLfiQ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t6MwcrLfiQ .embla__button {
    top: auto;
  }
}
.cid-t6MwcrLfiQ .embla {
  position: relative;
  width: 100%;
}
.cid-t6MwcrLfiQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t6MwcrLfiQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t6MwcrLfiQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t6MwcrLfiQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-t6MwcrLfiQ .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-t6MwcrLfiQ .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-t6MwcrLfiQ .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-t6MsbUg24g .navbar {
  padding: .3rem 0;
  background: #ffffff;
  transition: none;
  min-height: 45px;
}
.cid-t6MsbUg24g .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t6MsbUg24g a {
  font-style: normal;
}
.cid-t6MsbUg24g .nav-item span {
  padding-right: 0.4em;
  line-height: 0.3em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.4em;
  text-decoration: none;
}
.cid-t6MsbUg24g .nav-item a {
  padding: 0.2rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-t6MsbUg24g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.3rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t6MsbUg24g .content-text {
  margin-bottom: 0;
}
.cid-t6MsbUg24g .navbar-nav {
  position: relative;
  min-height: 45px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-t6MsbUg24g .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 2px solid #0222a9;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-t6MsbUg24g .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-t6MsbUg24g .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-t6MsbUg24g .navbar-nav .nav-item a {
  margin: 0 1.1rem !important;
}
.cid-t6MsbUg24g .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t6MsbUg24g .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-t6MsbUg24g .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-t6MsbUg24g .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t6MsbUg24g .nav-dropdown .link {
  font-weight: 400;
}
.cid-t6MsbUg24g .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-t6MsbUg24g .content-right-side {
  text-align: center;
}
.cid-t6MsbUg24g .menu-content-top {
  padding: 0 1rem;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
@media (max-width: 991px) {
  .cid-t6MsbUg24g .menu-content-top {
    width: 100%;
    display: flex;
  }
  .cid-t6MsbUg24g .menu-content-top .menu-content-right {
    display: block;
    position: absolute;
    visibility: hidden;
    width: 100%;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: 0s all 0s;
  }
  .cid-t6MsbUg24g .menu-content-top .menu-content-right .info-widget {
    padding: 1rem 0;
    text-align: center;
  }
  .cid-t6MsbUg24g .navbar.opened .menu-content-right {
    visibility: visible;
    transition: 0s all 0.3s;
  }
  .cid-t6MsbUg24g .menu-bottom {
    justify-content: flex-end;
  }
  .cid-t6MsbUg24g img {
    height: 1rem !important;
  }
  .cid-t6MsbUg24g .btn {
    display: -webkit-flex;
  }
  .cid-t6MsbUg24g button.navbar-toggler {
    display: block;
  }
  .cid-t6MsbUg24g .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .3rem;
  }
  .cid-t6MsbUg24g .navbar {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-t6MsbUg24g .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing,
  .cid-t6MsbUg24g .navbar-collapse.show {
    display: block !important;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing .navbar-nav,
  .cid-t6MsbUg24g .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t6MsbUg24g .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t6MsbUg24g .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing .navbar-buttons,
  .cid-t6MsbUg24g .navbar-collapse.show .navbar-buttons {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-t6MsbUg24g .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t6MsbUg24g .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t6MsbUg24g .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-t6MsbUg24g .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t6MsbUg24g .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t6MsbUg24g .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t6MsbUg24g .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .cid-t6MsbUg24g .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t6MsbUg24g .navbar .navbar-collapse {
    max-height: calc(100vh - 8rem - 80px);
  }
}
@media (max-width: 575px) {
  .cid-t6MsbUg24g .navbar.opened {
    padding-bottom: 8rem;
  }
  .cid-t6MsbUg24g .navbar .navbar-collapse {
    max-height: calc(100vh - 10rem - 80px);
  }
}
.cid-t6MsbUg24g .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-t6MsbUg24g .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-t6MsbUg24g .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-t6MsbUg24g .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-t6MsbUg24g .menu-content-right {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t6MsbUg24g .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-t6MsbUg24g .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-t6MsbUg24g .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-t6MsbUg24g .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-t6MsbUg24g .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-t6MsbUg24g .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-t6MsbUg24g .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-t6MsbUg24g .content-right-side {
    display: flex;
    text-align: right;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t6MsbUg24g .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-t6MsbUg24g .navbar {
    display: block;
    padding: 0;
  }
  .cid-t6MsbUg24g .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-t6MsbUg24g .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-t6MsbUg24g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-t6MsbUg24g .navbar-short .menu-content-top {
    height: 0;
    min-height: 0;
    border: none;
  }
  .cid-t6MsbUg24g .navbar-toggler {
    display: none;
  }
  .cid-t6MsbUg24g .navbar-collapse {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t6MsbUg24g .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t6MsbUg24g .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-t6MsbUg24g .menu-logo {
  margin-right: auto;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand .navbar-logo {
  font-size: 3rem;
  transition: font-size 0.25s;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t6MsbUg24g .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t6MsbUg24g .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-t6MsbUg24g .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-t6MsbUg24g .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6MsbUg24g .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t6MsbUg24g .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-t6MsbUg24g .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-t6MsbUg24g .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t6MsbUg24g .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6MsbUg24g .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-t6MsbUg24g .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-t6MsbUg24g .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t6MsbUg24g .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t6MsbUg24g .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t6MsbUg24g .navbar.navbar-short .navbar-brand {
  min-height: 2rem;
}
.cid-t6MsbUg24g button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6MsbUg24g button.navbar-toggler:focus {
  outline: none;
}
.cid-t6MsbUg24g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #333333;
}
.cid-t6MsbUg24g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6MsbUg24g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6MsbUg24g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6MsbUg24g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6MsbUg24g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6MsbUg24g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t6MsbUg24g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t6MsbUg24g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6MsbUg24g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t6MsbUg24g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t6MsbUg24g .collapsed .btn {
  display: -webkit-flex;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.cid-t6MsbUg24g .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t6MsbUg24g .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-t6MsbUg24g .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 4.5rem - 1.5rem);
  }
  .cid-t6MsbUg24g .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-t6MsbUg24g .collapsed button.navbar-toggler {
  display: block;
}
.cid-t6MsbUg24g .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-t6MsbUg24g .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-t6MsbUg24g .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-t6MsbUg24g .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t6MsbUg24g .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t6MsbUg24g .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t6MsbUg24g .collapsed .menu-bottom {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t6MsbUg24g .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-t6MsbUg24g .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-t6MsbUg24g .nav-link:focus {
  outline: none;
}
.cid-t6MsbUg24g .navbar-toggler {
  position: relative;
}
.cid-t6MsbUg24g .dropdown-item.active,
.cid-t6MsbUg24g .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-t6MsbUg24g .nav-link:hover,
.cid-t6MsbUg24g .dropdown-item:hover {
  color: #4284df;
}
.cid-t6MsbUg24g .widget-title,
.cid-t6MsbUg24g .widget-icon {
  color: #777d74;
}
.cid-t6MsbUg24g .widget-text {
  color: #777d74;
}
.cid-t6MsbUGPxQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/fundo04.webp");
}
@media (max-width: 1400px) {
  .cid-t6MsbUGPxQ .content {
    text-align: center;
  }
  .cid-t6MsbUGPxQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-t6MsbUGPxQ .logo-subtitle {
  color: #8d97ad;
}
.cid-t6MsbUGPxQ .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-t6MsbUGPxQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-t6MsbUGPxQ .media-wrap .mbr-iconfont-logo {
  font-size: 4rem;
  color: #f36;
}
.cid-t6MsbUGPxQ .media-wrap img {
  height: 8rem;
  display: inline-block;
  width: auto;
}
@media (max-width: 767px) {
  .cid-t6MsbUGPxQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-t6MsbUGPxQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-t6MsbUGPxQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t6MsbUGPxQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-t6MsbUGPxQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t6MsbUGPxQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t6MsbUGPxQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t6MsbUGPxQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t6MsbUGPxQ .list-item {
  display: flex;
}
.cid-t6MsbUGPxQ .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 18px;
  color: #188ef4;
}
.cid-t6MsbUGPxQ ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-t6MsbUGPxQ ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-t6MsbUGPxQ ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-t6MsbUGPxQ .column-title {
  color: #ffffff;
  text-align: left;
}
.cid-t6MsbUGPxQ P {
  color: #ffffff;
  text-align: left;
}
.cid-t6MsbUGPxQ .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-t6MsbUGPxQ .mbr-text DIV {
  text-align: left;
}
.cid-t6MsbUGPxQ .copyright > p {
  text-align: left;
  color: #ffffff;
}
.cid-t6MsbUGPxQ .logo-subtitle,
.cid-t6MsbUGPxQ .media-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t6MsbUGPxQ .mbr-text P {
  text-align: left;
}
