body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #058046 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #058046 !important;
  border-color: #058046 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #022d18 !important;
  border-color: #022d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #022d18 !important;
  border-color: #022d18 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #058046;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #022d18 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #058046 !important;
  border-color: #058046 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #058046 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #011e10 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #058046;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #058046;
  border-color: #058046;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #058046;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0ff689;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #058046 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #058046;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #058046;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #058046;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #058046;
  border-bottom-color: #058046;
}
.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: #058046 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23058046' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-uVdFkyJ6XM {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVdFkyJ6XM nav.navbar {
  position: fixed;
}
.cid-uVdFkyJ6XM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVdFkyJ6XM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVdFkyJ6XM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVdFkyJ6XM .dropdown-item:hover,
.cid-uVdFkyJ6XM .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVdFkyJ6XM .dropdown-item:hover span {
  color: white;
}
.cid-uVdFkyJ6XM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVdFkyJ6XM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVdFkyJ6XM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVdFkyJ6XM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVdFkyJ6XM .nav-link {
  position: relative;
}
.cid-uVdFkyJ6XM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVdFkyJ6XM .container {
    flex-wrap: nowrap;
  }
}
.cid-uVdFkyJ6XM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVdFkyJ6XM .dropdown-menu,
.cid-uVdFkyJ6XM .navbar.opened {
  background: #ffffff !important;
}
.cid-uVdFkyJ6XM .nav-item:focus,
.cid-uVdFkyJ6XM .nav-link:focus {
  outline: none;
}
.cid-uVdFkyJ6XM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVdFkyJ6XM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVdFkyJ6XM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVdFkyJ6XM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVdFkyJ6XM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVdFkyJ6XM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVdFkyJ6XM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVdFkyJ6XM .navbar.opened {
  transition: all 0.3s;
}
.cid-uVdFkyJ6XM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVdFkyJ6XM .navbar .navbar-logo img {
  width: auto;
}
.cid-uVdFkyJ6XM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVdFkyJ6XM .navbar.collapsed {
  justify-content: center;
}
.cid-uVdFkyJ6XM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVdFkyJ6XM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVdFkyJ6XM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVdFkyJ6XM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVdFkyJ6XM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVdFkyJ6XM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVdFkyJ6XM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVdFkyJ6XM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVdFkyJ6XM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVdFkyJ6XM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVdFkyJ6XM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVdFkyJ6XM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVdFkyJ6XM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVdFkyJ6XM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVdFkyJ6XM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVdFkyJ6XM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVdFkyJ6XM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVdFkyJ6XM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVdFkyJ6XM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVdFkyJ6XM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVdFkyJ6XM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVdFkyJ6XM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVdFkyJ6XM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVdFkyJ6XM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVdFkyJ6XM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVdFkyJ6XM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVdFkyJ6XM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVdFkyJ6XM .dropdown-item.active,
.cid-uVdFkyJ6XM .dropdown-item:active {
  background-color: transparent;
}
.cid-uVdFkyJ6XM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVdFkyJ6XM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVdFkyJ6XM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVdFkyJ6XM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVdFkyJ6XM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVdFkyJ6XM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVdFkyJ6XM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVdFkyJ6XM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVdFkyJ6XM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVdFkyJ6XM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVdFkyJ6XM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVdFkyJ6XM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVdFkyJ6XM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVdFkyJ6XM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVdFkyJ6XM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVdFkyJ6XM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVdFkyJ6XM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVdFkyJ6XM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVdFkyJ6XM .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVdFkyJ6XM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVdFkyJ6XM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVdFkyJ6XM .navbar {
    height: 70px;
  }
  .cid-uVdFkyJ6XM .navbar.opened {
    height: auto;
  }
  .cid-uVdFkyJ6XM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8S8u1WoUo {
  background-image: url("../../../assets/images/panoramica-home-4-1200x1600.jpeg");
}
.cid-v8S8u1WoUo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8S8u1WoUo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8S8u1WoUo .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v8S8u1WoUo .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v8S8u1WoUo .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v8S8u1WoUo .mbr-section-title {
  color: #ffffff;
}
.cid-v6wLkbqo8Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v6wLkbqo8Y .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v6wLkbqo8Y .carousel {
    min-height: 600px;
  }
  .cid-v6wLkbqo8Y .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v6wLkbqo8Y .carousel {
    min-height: 390px;
  }
  .cid-v6wLkbqo8Y .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v6wLkbqo8Y .carousel {
    min-height: 330px;
  }
  .cid-v6wLkbqo8Y .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v6wLkbqo8Y .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v6wLkbqo8Y .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v6wLkbqo8Y .carousel,
.cid-v6wLkbqo8Y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v6wLkbqo8Y .item-wrapper {
  width: 100%;
}
.cid-v6wLkbqo8Y .carousel-caption {
  bottom: 40px;
}
.cid-v6wLkbqo8Y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v6wLkbqo8Y .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v6wLkbqo8Y .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v6wLkbqo8Y .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v6wLkbqo8Y .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v6wLkbqo8Y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v6wLkbqo8Y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v6wLkbqo8Y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v6wLkbqo8Y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v6wLkbqo8Y .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v6wLkbqo8Y .carousel-indicators li.active,
.cid-v6wLkbqo8Y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v6wLkbqo8Y .carousel-indicators li::after,
.cid-v6wLkbqo8Y .carousel-indicators li::before {
  content: none;
}
.cid-v6wLkbqo8Y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v6wLkbqo8Y .carousel-indicators {
    display: none !important;
  }
}
.cid-uVgK4tyWnp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-uVgK4tyWnp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVgK4tyWnp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVizVVB5xA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uVizVVB5xA img,
.cid-uVizVVB5xA .item-img {
  width: 100%;
}
.cid-uVizVVB5xA .item:focus,
.cid-uVizVVB5xA span:focus {
  outline: none;
}
.cid-uVizVVB5xA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVizVVB5xA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVizVVB5xA .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uVizVVB5xA .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVizVVB5xA .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uVizVVB5xA .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uVizVVB5xA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVizVVB5xA .mbr-section-title {
  color: #232323;
}
.cid-uVizVVB5xA .mbr-text,
.cid-uVizVVB5xA .mbr-section-btn {
  text-align: center;
}
.cid-uVizVVB5xA .item-title {
  text-align: center;
}
.cid-uVizVVB5xA .item-subtitle {
  text-align: left;
}
.cid-uVgLksM8nz {
  background-image: url("../../../assets/images/totem-do-sol-1599x899.jpeg");
}
.cid-uVgLksM8nz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVgLksM8nz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVgLksM8nz .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVgLksM8nz .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVgLksM8nz .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVgSFpFrE1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uVgSFpFrE1 img,
.cid-uVgSFpFrE1 .item-img {
  width: 100%;
}
.cid-uVgSFpFrE1 .item:focus,
.cid-uVgSFpFrE1 span:focus {
  outline: none;
}
.cid-uVgSFpFrE1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVgSFpFrE1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVgSFpFrE1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uVgSFpFrE1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVgSFpFrE1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uVgSFpFrE1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uVgSFpFrE1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVgSFpFrE1 .mbr-section-title {
  color: #232323;
}
.cid-uVgSFpFrE1 .mbr-text,
.cid-uVgSFpFrE1 .mbr-section-btn {
  text-align: center;
}
.cid-uVgSFpFrE1 .item-title {
  text-align: center;
}
.cid-uVgSFpFrE1 .item-subtitle {
  text-align: left;
}
.cid-uW4jNhfVT5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW4jNhfVT5 img,
.cid-uW4jNhfVT5 .item-img {
  width: 100%;
}
.cid-uW4jNhfVT5 .item:focus,
.cid-uW4jNhfVT5 span:focus {
  outline: none;
}
.cid-uW4jNhfVT5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW4jNhfVT5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW4jNhfVT5 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uW4jNhfVT5 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW4jNhfVT5 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uW4jNhfVT5 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uW4jNhfVT5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW4jNhfVT5 .mbr-section-title {
  color: #232323;
}
.cid-uW4jNhfVT5 .mbr-text,
.cid-uW4jNhfVT5 .mbr-section-btn {
  text-align: center;
}
.cid-uW4jNhfVT5 .item-title {
  text-align: center;
}
.cid-uW4jNhfVT5 .item-subtitle {
  text-align: left;
}
.cid-uW4ku5GCwP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW4ku5GCwP img,
.cid-uW4ku5GCwP .item-img {
  width: 100%;
}
.cid-uW4ku5GCwP .item:focus,
.cid-uW4ku5GCwP span:focus {
  outline: none;
}
.cid-uW4ku5GCwP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW4ku5GCwP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW4ku5GCwP .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uW4ku5GCwP .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW4ku5GCwP .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uW4ku5GCwP .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uW4ku5GCwP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW4ku5GCwP .mbr-section-title {
  color: #232323;
}
.cid-uW4ku5GCwP .mbr-text,
.cid-uW4ku5GCwP .mbr-section-btn {
  text-align: center;
}
.cid-uW4ku5GCwP .item-title {
  text-align: center;
}
.cid-uW4ku5GCwP .item-subtitle {
  text-align: left;
}
.cid-uViDVc83EF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-uViDVc83EF img,
.cid-uViDVc83EF .item-img {
  width: 100%;
}
.cid-uViDVc83EF .item:focus,
.cid-uViDVc83EF span:focus {
  outline: none;
}
.cid-uViDVc83EF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uViDVc83EF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uViDVc83EF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uViDVc83EF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uViDVc83EF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uViDVc83EF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uViDVc83EF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uViDVc83EF .mbr-section-title {
  color: #232323;
}
.cid-uViDVc83EF .mbr-text,
.cid-uViDVc83EF .mbr-section-btn {
  text-align: center;
}
.cid-uViDVc83EF .item-title {
  text-align: center;
}
.cid-uViDVc83EF .item-subtitle {
  text-align: left;
}
.cid-v8KMIIpFHm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v8KMIIpFHm img,
.cid-v8KMIIpFHm .item-img {
  width: 100%;
}
.cid-v8KMIIpFHm .item:focus,
.cid-v8KMIIpFHm span:focus {
  outline: none;
}
.cid-v8KMIIpFHm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8KMIIpFHm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8KMIIpFHm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8KMIIpFHm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8KMIIpFHm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8KMIIpFHm .mbr-section-title {
  color: #232323;
}
.cid-v8KMIIpFHm .mbr-text,
.cid-v8KMIIpFHm .mbr-section-btn {
  text-align: center;
}
.cid-v8KMIIpFHm .item-title {
  text-align: center;
}
.cid-v8KMIIpFHm .item-subtitle {
  text-align: left;
}
.cid-v8BU8nOSnE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v8BU8nOSnE img,
.cid-v8BU8nOSnE .item-img {
  width: 100%;
}
.cid-v8BU8nOSnE .item:focus,
.cid-v8BU8nOSnE span:focus {
  outline: none;
}
.cid-v8BU8nOSnE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BU8nOSnE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BU8nOSnE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BU8nOSnE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BU8nOSnE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BU8nOSnE .mbr-section-title {
  color: #232323;
}
.cid-v8BU8nOSnE .mbr-text,
.cid-v8BU8nOSnE .mbr-section-btn {
  text-align: center;
}
.cid-v8BU8nOSnE .item-title {
  text-align: center;
}
.cid-v8BU8nOSnE .item-subtitle {
  text-align: left;
}
.cid-uViIIraw7S {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-uViIIraw7S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uViIIraw7S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVgJ8IhkBA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVgJ8IhkBA nav.navbar {
  position: fixed;
}
.cid-uVgJ8IhkBA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVgJ8IhkBA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVgJ8IhkBA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVgJ8IhkBA .dropdown-item:hover,
.cid-uVgJ8IhkBA .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVgJ8IhkBA .dropdown-item:hover span {
  color: white;
}
.cid-uVgJ8IhkBA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVgJ8IhkBA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVgJ8IhkBA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVgJ8IhkBA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVgJ8IhkBA .nav-link {
  position: relative;
}
.cid-uVgJ8IhkBA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVgJ8IhkBA .container {
    flex-wrap: nowrap;
  }
}
.cid-uVgJ8IhkBA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVgJ8IhkBA .dropdown-menu,
.cid-uVgJ8IhkBA .navbar.opened {
  background: #ffffff !important;
}
.cid-uVgJ8IhkBA .nav-item:focus,
.cid-uVgJ8IhkBA .nav-link:focus {
  outline: none;
}
.cid-uVgJ8IhkBA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVgJ8IhkBA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVgJ8IhkBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVgJ8IhkBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVgJ8IhkBA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVgJ8IhkBA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVgJ8IhkBA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVgJ8IhkBA .navbar.opened {
  transition: all 0.3s;
}
.cid-uVgJ8IhkBA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVgJ8IhkBA .navbar .navbar-logo img {
  width: auto;
}
.cid-uVgJ8IhkBA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVgJ8IhkBA .navbar.collapsed {
  justify-content: center;
}
.cid-uVgJ8IhkBA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVgJ8IhkBA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVgJ8IhkBA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVgJ8IhkBA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVgJ8IhkBA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVgJ8IhkBA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVgJ8IhkBA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVgJ8IhkBA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVgJ8IhkBA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVgJ8IhkBA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVgJ8IhkBA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVgJ8IhkBA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVgJ8IhkBA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVgJ8IhkBA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVgJ8IhkBA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVgJ8IhkBA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVgJ8IhkBA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVgJ8IhkBA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVgJ8IhkBA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVgJ8IhkBA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVgJ8IhkBA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVgJ8IhkBA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVgJ8IhkBA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVgJ8IhkBA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVgJ8IhkBA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVgJ8IhkBA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVgJ8IhkBA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVgJ8IhkBA .dropdown-item.active,
.cid-uVgJ8IhkBA .dropdown-item:active {
  background-color: transparent;
}
.cid-uVgJ8IhkBA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVgJ8IhkBA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVgJ8IhkBA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVgJ8IhkBA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVgJ8IhkBA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVgJ8IhkBA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVgJ8IhkBA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVgJ8IhkBA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVgJ8IhkBA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVgJ8IhkBA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVgJ8IhkBA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVgJ8IhkBA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVgJ8IhkBA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVgJ8IhkBA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVgJ8IhkBA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVgJ8IhkBA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVgJ8IhkBA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVgJ8IhkBA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVgJ8IhkBA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVgJ8IhkBA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVgJ8IhkBA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVgJ8IhkBA .navbar {
    height: 70px;
  }
  .cid-uVgJ8IhkBA .navbar.opened {
    height: auto;
  }
  .cid-uVgJ8IhkBA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVgJ8JifGs {
  background-image: url("../../../assets/images/foto-topo-de-aba-faleconosco-1599x1055.jpg");
}
.cid-uVgJ8JifGs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVgJ8JifGs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVgJ8JifGs .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVgJ8JifGs .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVgJ8JifGs .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVgJ8JifGs .mbr-section-title {
  color: #ffffff;
}
.cid-uVgJ8Kh9Bs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5fd08b;
}
.cid-uVgJ8Kh9Bs .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uVgJ8Kh9Bs form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uVgJ8Kh9Bs form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uVgJ8Kh9Bs form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uVA2SoxovJ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVA2SoxovJ nav.navbar {
  position: fixed;
}
.cid-uVA2SoxovJ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVA2SoxovJ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVA2SoxovJ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVA2SoxovJ .dropdown-item:hover,
.cid-uVA2SoxovJ .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVA2SoxovJ .dropdown-item:hover span {
  color: white;
}
.cid-uVA2SoxovJ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVA2SoxovJ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVA2SoxovJ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVA2SoxovJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVA2SoxovJ .nav-link {
  position: relative;
}
.cid-uVA2SoxovJ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVA2SoxovJ .container {
    flex-wrap: nowrap;
  }
}
.cid-uVA2SoxovJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVA2SoxovJ .dropdown-menu,
.cid-uVA2SoxovJ .navbar.opened {
  background: #ffffff !important;
}
.cid-uVA2SoxovJ .nav-item:focus,
.cid-uVA2SoxovJ .nav-link:focus {
  outline: none;
}
.cid-uVA2SoxovJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVA2SoxovJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVA2SoxovJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVA2SoxovJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVA2SoxovJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVA2SoxovJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVA2SoxovJ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVA2SoxovJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uVA2SoxovJ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVA2SoxovJ .navbar .navbar-logo img {
  width: auto;
}
.cid-uVA2SoxovJ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVA2SoxovJ .navbar.collapsed {
  justify-content: center;
}
.cid-uVA2SoxovJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVA2SoxovJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVA2SoxovJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVA2SoxovJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVA2SoxovJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVA2SoxovJ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVA2SoxovJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVA2SoxovJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVA2SoxovJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVA2SoxovJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVA2SoxovJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVA2SoxovJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVA2SoxovJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVA2SoxovJ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVA2SoxovJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVA2SoxovJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVA2SoxovJ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVA2SoxovJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVA2SoxovJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVA2SoxovJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVA2SoxovJ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVA2SoxovJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVA2SoxovJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVA2SoxovJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVA2SoxovJ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVA2SoxovJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVA2SoxovJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVA2SoxovJ .dropdown-item.active,
.cid-uVA2SoxovJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uVA2SoxovJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVA2SoxovJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVA2SoxovJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVA2SoxovJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVA2SoxovJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVA2SoxovJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVA2SoxovJ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVA2SoxovJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVA2SoxovJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVA2SoxovJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVA2SoxovJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVA2SoxovJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVA2SoxovJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVA2SoxovJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVA2SoxovJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVA2SoxovJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVA2SoxovJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVA2SoxovJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVA2SoxovJ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVA2SoxovJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVA2SoxovJ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVA2SoxovJ .navbar {
    height: 70px;
  }
  .cid-uVA2SoxovJ .navbar.opened {
    height: auto;
  }
  .cid-uVA2SoxovJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVA2Spi1tU {
  background-image: url("../../../assets/images/aapluz-4-960x720.jpg");
}
.cid-uVA2Spi1tU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVA2Spi1tU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVA2Spi1tU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVA2Spi1tU .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVA2Spi1tU .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVA2Spi1tU .mbr-section-title {
  color: #ffffff;
}
.cid-uVA9EyLbD8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uVA9EyLbD8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVA9EyLbD8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVA9EyLbD8 .mbr-section-title {
  color: #232323;
}
.cid-uVA9EyLbD8 .mbr-section-subtitle {
  color: #232323;
}
.cid-uVA9ILvvRy {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-uVA9ILvvRy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVA9ILvvRy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVA9ILvvRy .mbr-section-title {
  color: #232323;
}
.cid-uVA9ILvvRy .mbr-section-subtitle {
  color: #232323;
}
.cid-uVA9MiuKWD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #98dee8;
}
.cid-uVA9MiuKWD img,
.cid-uVA9MiuKWD .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uVA9MiuKWD .item:focus,
.cid-uVA9MiuKWD span:focus {
  outline: none;
}
.cid-uVA9MiuKWD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVA9MiuKWD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVA9MiuKWD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVA9MiuKWD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVA9MiuKWD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVA9MiuKWD .mbr-section-title {
  color: #232323;
}
.cid-uVA9MiuKWD .mbr-text,
.cid-uVA9MiuKWD .mbr-section-btn {
  text-align: center;
}
.cid-uVA9MiuKWD .item-title {
  text-align: left;
  color: #6592e6;
}
.cid-uVA9MiuKWD .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uVA9QjwMCP {
  background-color: #c9dafb;
}
.cid-uVA9QjwMCP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVA9QjwMCP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVA9QjwMCP .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVA9QjwMCP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVA9QjwMCP .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVA9QjwMCP .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVA9QjwMCP .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uVA9QjwMCP .mbr-text,
.cid-uVA9QjwMCP .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-v2bAcE8rLE {
  background-color: #9fdbf8;
}
.cid-v2bAcE8rLE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2bAcE8rLE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v2bAcE8rLE .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2bAcE8rLE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v2bAcE8rLE .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v2bAcE8rLE .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v2bAcE8rLE .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-v2bAcE8rLE .mbr-text,
.cid-v2bAcE8rLE .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-vasp0OcuxU {
  background-color: #c9dafb;
}
.cid-vasp0OcuxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vasp0OcuxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vasp0OcuxU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vasp0OcuxU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vasp0OcuxU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vasp0OcuxU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vasp0OcuxU .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-vasp0OcuxU .mbr-text,
.cid-vasp0OcuxU .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-vat2DjTFmL {
  background-color: #9fdbf8;
}
.cid-vat2DjTFmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vat2DjTFmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vat2DjTFmL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vat2DjTFmL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vat2DjTFmL .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vat2DjTFmL .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vat2DjTFmL .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-vat2DjTFmL .mbr-text,
.cid-vat2DjTFmL .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uVA9ThmaGX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVA9ThmaGX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVA9ThmaGX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uVA9ThmaGX .container {
    max-width: 1400px;
  }
}
.cid-uVA9ThmaGX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uVA9ThmaGX .row {
  justify-content: center;
}
.cid-v8C0tnCqMS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8C0tnCqMS img,
.cid-v8C0tnCqMS .item-img {
  width: 100%;
}
.cid-v8C0tnCqMS .item:focus,
.cid-v8C0tnCqMS span:focus {
  outline: none;
}
.cid-v8C0tnCqMS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8C0tnCqMS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8C0tnCqMS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8C0tnCqMS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8C0tnCqMS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8C0tnCqMS .mbr-section-title {
  color: #232323;
}
.cid-v8C0tnCqMS .mbr-text,
.cid-v8C0tnCqMS .mbr-section-btn {
  text-align: center;
}
.cid-v8C0tnCqMS .item-title {
  text-align: center;
}
.cid-v8C0tnCqMS .item-subtitle {
  text-align: left;
}
.cid-v1xjLoPw7Y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v1xjLoPw7Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xjLoPw7Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAboUjhWi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVAboUjhWi nav.navbar {
  position: fixed;
}
.cid-uVAboUjhWi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVAboUjhWi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVAboUjhWi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVAboUjhWi .dropdown-item:hover,
.cid-uVAboUjhWi .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVAboUjhWi .dropdown-item:hover span {
  color: white;
}
.cid-uVAboUjhWi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVAboUjhWi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVAboUjhWi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVAboUjhWi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVAboUjhWi .nav-link {
  position: relative;
}
.cid-uVAboUjhWi .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVAboUjhWi .container {
    flex-wrap: nowrap;
  }
}
.cid-uVAboUjhWi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVAboUjhWi .dropdown-menu,
.cid-uVAboUjhWi .navbar.opened {
  background: #ffffff !important;
}
.cid-uVAboUjhWi .nav-item:focus,
.cid-uVAboUjhWi .nav-link:focus {
  outline: none;
}
.cid-uVAboUjhWi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVAboUjhWi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVAboUjhWi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVAboUjhWi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVAboUjhWi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVAboUjhWi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVAboUjhWi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVAboUjhWi .navbar.opened {
  transition: all 0.3s;
}
.cid-uVAboUjhWi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVAboUjhWi .navbar .navbar-logo img {
  width: auto;
}
.cid-uVAboUjhWi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVAboUjhWi .navbar.collapsed {
  justify-content: center;
}
.cid-uVAboUjhWi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVAboUjhWi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVAboUjhWi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVAboUjhWi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVAboUjhWi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVAboUjhWi .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVAboUjhWi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVAboUjhWi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVAboUjhWi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVAboUjhWi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVAboUjhWi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVAboUjhWi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVAboUjhWi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVAboUjhWi .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVAboUjhWi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVAboUjhWi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVAboUjhWi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVAboUjhWi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVAboUjhWi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVAboUjhWi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVAboUjhWi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVAboUjhWi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVAboUjhWi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVAboUjhWi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVAboUjhWi .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVAboUjhWi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVAboUjhWi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVAboUjhWi .dropdown-item.active,
.cid-uVAboUjhWi .dropdown-item:active {
  background-color: transparent;
}
.cid-uVAboUjhWi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVAboUjhWi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVAboUjhWi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVAboUjhWi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVAboUjhWi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVAboUjhWi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVAboUjhWi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVAboUjhWi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVAboUjhWi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVAboUjhWi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVAboUjhWi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVAboUjhWi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVAboUjhWi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVAboUjhWi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVAboUjhWi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVAboUjhWi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVAboUjhWi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVAboUjhWi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVAboUjhWi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVAboUjhWi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVAboUjhWi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVAboUjhWi .navbar {
    height: 70px;
  }
  .cid-uVAboUjhWi .navbar.opened {
    height: auto;
  }
  .cid-uVAboUjhWi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVAboWfrIW {
  background-image: url("../../../assets/images/aba-memorial-1601x902.jpeg");
}
.cid-uVAboWfrIW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAboWfrIW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAboWfrIW .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVAboWfrIW .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVAboWfrIW .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVAboWfrIW .mbr-section-title {
  color: #ffffff;
}
.cid-uVAboXO8UO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVAboXO8UO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAboXO8UO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAboXO8UO .mbr-section-title {
  color: #232323;
}
.cid-uVAboXO8UO .mbr-section-subtitle {
  color: #232323;
}
.cid-uVAeHrER9t {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uVAeHrER9t img,
.cid-uVAeHrER9t .item-img {
  width: 100%;
}
.cid-uVAeHrER9t .item:focus,
.cid-uVAeHrER9t span:focus {
  outline: none;
}
.cid-uVAeHrER9t .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAeHrER9t .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAeHrER9t .item {
  padding: 0;
  margin: 0;
}
.cid-uVAeHrER9t .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAeHrER9t .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAeHrER9t .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAeHrER9t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAeHrER9t .mbr-section-title {
  color: #232323;
}
.cid-uVAeHrER9t .mbr-text,
.cid-uVAeHrER9t .mbr-section-btn {
  text-align: left;
}
.cid-uVAeHrER9t .item-title {
  text-align: left;
}
.cid-uVAeHrER9t .item-subtitle {
  text-align: left;
}
.cid-uVAgNxvdo6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uVAgNxvdo6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAgNxvdo6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAgNxvdo6 .mbr-section-title {
  color: #232323;
}
.cid-uVAgNxvdo6 .mbr-section-subtitle {
  color: #232323;
}
.cid-uVAhSdt173 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uVAhSdt173 img,
.cid-uVAhSdt173 .item-img {
  width: 100%;
}
.cid-uVAhSdt173 .item:focus,
.cid-uVAhSdt173 span:focus {
  outline: none;
}
.cid-uVAhSdt173 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAhSdt173 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAhSdt173 .item {
  padding: 0;
  margin: 0;
}
.cid-uVAhSdt173 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAhSdt173 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAhSdt173 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAhSdt173 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAhSdt173 .mbr-section-title {
  color: #232323;
}
.cid-uVAhSdt173 .mbr-text,
.cid-uVAhSdt173 .mbr-section-btn {
  text-align: left;
}
.cid-uVAhSdt173 .item-title {
  text-align: left;
}
.cid-uVAhSdt173 .item-subtitle {
  text-align: left;
}
.cid-uVAiSJqKaq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVAiSJqKaq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAiSJqKaq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAiSJqKaq .mbr-section-title {
  color: #232323;
}
.cid-uVAiSJqKaq .mbr-section-subtitle {
  color: #232323;
}
.cid-uVAjTOCYia {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVAjTOCYia img,
.cid-uVAjTOCYia .item-img {
  width: 100%;
}
.cid-uVAjTOCYia .item:focus,
.cid-uVAjTOCYia span:focus {
  outline: none;
}
.cid-uVAjTOCYia .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAjTOCYia .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAjTOCYia .item {
  padding: 0;
  margin: 0;
}
.cid-uVAjTOCYia .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAjTOCYia .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAjTOCYia .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAjTOCYia .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAjTOCYia .mbr-section-title {
  color: #232323;
}
.cid-uVAjTOCYia .mbr-text,
.cid-uVAjTOCYia .mbr-section-btn {
  text-align: left;
}
.cid-uVAjTOCYia .item-title {
  text-align: left;
}
.cid-uVAjTOCYia .item-subtitle {
  text-align: left;
}
.cid-uVAkzgHETH {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uVAkzgHETH img,
.cid-uVAkzgHETH .item-img {
  width: 100%;
}
.cid-uVAkzgHETH .item:focus,
.cid-uVAkzgHETH span:focus {
  outline: none;
}
.cid-uVAkzgHETH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAkzgHETH .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAkzgHETH .item {
  padding: 0;
  margin: 0;
}
.cid-uVAkzgHETH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAkzgHETH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAkzgHETH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAkzgHETH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAkzgHETH .mbr-section-title {
  color: #232323;
}
.cid-uVAkzgHETH .mbr-text,
.cid-uVAkzgHETH .mbr-section-btn {
  text-align: left;
}
.cid-uVAkzgHETH .item-title {
  text-align: left;
}
.cid-uVAkzgHETH .item-subtitle {
  text-align: left;
}
.cid-uVAkYqyAWZ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uVAkYqyAWZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAkYqyAWZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAkYqyAWZ .mbr-section-title {
  color: #232323;
}
.cid-uVAkYqyAWZ .mbr-section-subtitle {
  color: #232323;
}
.cid-uVAPltFuxg {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uVAPltFuxg img,
.cid-uVAPltFuxg .item-img {
  width: 100%;
}
.cid-uVAPltFuxg .item:focus,
.cid-uVAPltFuxg span:focus {
  outline: none;
}
.cid-uVAPltFuxg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAPltFuxg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAPltFuxg .item {
  padding: 0;
  margin: 0;
}
.cid-uVAPltFuxg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAPltFuxg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAPltFuxg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAPltFuxg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAPltFuxg .mbr-section-title {
  color: #232323;
}
.cid-uVAPltFuxg .mbr-text,
.cid-uVAPltFuxg .mbr-section-btn {
  text-align: left;
}
.cid-uVAPltFuxg .item-title {
  text-align: left;
}
.cid-uVAPltFuxg .item-subtitle {
  text-align: left;
}
.cid-uVAPWZLfjk {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVAPWZLfjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAPWZLfjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAPWZLfjk .mbr-section-title {
  color: #232323;
}
.cid-uVAPWZLfjk .mbr-section-subtitle {
  color: #232323;
}
.cid-uVAQy3iKum {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uVAQy3iKum img,
.cid-uVAQy3iKum .item-img {
  width: 100%;
}
.cid-uVAQy3iKum .item:focus,
.cid-uVAQy3iKum span:focus {
  outline: none;
}
.cid-uVAQy3iKum .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVAQy3iKum .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uVAQy3iKum .item {
  padding: 0;
  margin: 0;
}
.cid-uVAQy3iKum .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVAQy3iKum .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVAQy3iKum .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVAQy3iKum .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVAQy3iKum .mbr-section-title {
  color: #232323;
}
.cid-uVAQy3iKum .mbr-text,
.cid-uVAQy3iKum .mbr-section-btn {
  text-align: left;
}
.cid-uVAQy3iKum .item-title {
  text-align: left;
}
.cid-uVAQy3iKum .item-subtitle {
  text-align: left;
}
.cid-uVAR6jk5vA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #98dee8;
}
.cid-uVAR6jk5vA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVAR6jk5vA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVAR6jk5vA .mbr-section-title {
  color: #232323;
}
.cid-uVAR6jk5vA .mbr-section-subtitle {
  color: #232323;
}
.cid-uVATgfIWll {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVATgfIWll .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVATgfIWll .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uVATgfIWll .container {
    max-width: 1400px;
  }
}
.cid-uVATgfIWll .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-uVATgfIWll .row {
  justify-content: center;
}
.cid-v8C0LZsTPg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8C0LZsTPg img,
.cid-v8C0LZsTPg .item-img {
  width: 100%;
}
.cid-v8C0LZsTPg .item:focus,
.cid-v8C0LZsTPg span:focus {
  outline: none;
}
.cid-v8C0LZsTPg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8C0LZsTPg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8C0LZsTPg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8C0LZsTPg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8C0LZsTPg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8C0LZsTPg .mbr-section-title {
  color: #232323;
}
.cid-v8C0LZsTPg .mbr-text,
.cid-v8C0LZsTPg .mbr-section-btn {
  text-align: center;
}
.cid-v8C0LZsTPg .item-title {
  text-align: center;
}
.cid-v8C0LZsTPg .item-subtitle {
  text-align: left;
}
.cid-v1xk0WdMxi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v1xk0WdMxi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1xk0WdMxi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVB01LJWHS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVB01LJWHS nav.navbar {
  position: fixed;
}
.cid-uVB01LJWHS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVB01LJWHS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVB01LJWHS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVB01LJWHS .dropdown-item:hover,
.cid-uVB01LJWHS .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVB01LJWHS .dropdown-item:hover span {
  color: white;
}
.cid-uVB01LJWHS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVB01LJWHS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVB01LJWHS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVB01LJWHS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVB01LJWHS .nav-link {
  position: relative;
}
.cid-uVB01LJWHS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVB01LJWHS .container {
    flex-wrap: nowrap;
  }
}
.cid-uVB01LJWHS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVB01LJWHS .dropdown-menu,
.cid-uVB01LJWHS .navbar.opened {
  background: #ffffff !important;
}
.cid-uVB01LJWHS .nav-item:focus,
.cid-uVB01LJWHS .nav-link:focus {
  outline: none;
}
.cid-uVB01LJWHS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVB01LJWHS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVB01LJWHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVB01LJWHS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVB01LJWHS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVB01LJWHS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVB01LJWHS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVB01LJWHS .navbar.opened {
  transition: all 0.3s;
}
.cid-uVB01LJWHS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVB01LJWHS .navbar .navbar-logo img {
  width: auto;
}
.cid-uVB01LJWHS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVB01LJWHS .navbar.collapsed {
  justify-content: center;
}
.cid-uVB01LJWHS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVB01LJWHS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVB01LJWHS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVB01LJWHS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVB01LJWHS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVB01LJWHS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVB01LJWHS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVB01LJWHS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVB01LJWHS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVB01LJWHS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVB01LJWHS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVB01LJWHS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVB01LJWHS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVB01LJWHS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVB01LJWHS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVB01LJWHS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVB01LJWHS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVB01LJWHS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVB01LJWHS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVB01LJWHS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVB01LJWHS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVB01LJWHS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVB01LJWHS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVB01LJWHS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVB01LJWHS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVB01LJWHS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVB01LJWHS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVB01LJWHS .dropdown-item.active,
.cid-uVB01LJWHS .dropdown-item:active {
  background-color: transparent;
}
.cid-uVB01LJWHS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVB01LJWHS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVB01LJWHS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVB01LJWHS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVB01LJWHS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVB01LJWHS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVB01LJWHS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVB01LJWHS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVB01LJWHS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVB01LJWHS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVB01LJWHS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVB01LJWHS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVB01LJWHS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVB01LJWHS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVB01LJWHS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVB01LJWHS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVB01LJWHS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVB01LJWHS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVB01LJWHS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVB01LJWHS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVB01LJWHS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVB01LJWHS .navbar {
    height: 70px;
  }
  .cid-uVB01LJWHS .navbar.opened {
    height: auto;
  }
  .cid-uVB01LJWHS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVB01Noukl {
  background-image: url("../../../assets/images/novo-12-ponte-hercilio-luz-640x450.jpeg");
}
.cid-uVB01Noukl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVB01Noukl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVB01Noukl .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVB01Noukl .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVB01Noukl .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVB01Noukl .mbr-section-title {
  color: #ffffff;
}
.cid-uVB01Noukl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVB01O6dnO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVB01O6dnO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVB01O6dnO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8C0etMtYK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8C0etMtYK img,
.cid-v8C0etMtYK .item-img {
  width: 100%;
}
.cid-v8C0etMtYK .item:focus,
.cid-v8C0etMtYK span:focus {
  outline: none;
}
.cid-v8C0etMtYK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8C0etMtYK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8C0etMtYK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8C0etMtYK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8C0etMtYK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8C0etMtYK .mbr-section-title {
  color: #232323;
}
.cid-v8C0etMtYK .mbr-text,
.cid-v8C0etMtYK .mbr-section-btn {
  text-align: center;
}
.cid-v8C0etMtYK .item-title {
  text-align: center;
}
.cid-v8C0etMtYK .item-subtitle {
  text-align: left;
}
.cid-uVB01SefL5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-uVB01SefL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVB01SefL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVhtQGgsQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVVhtQGgsQ nav.navbar {
  position: fixed;
}
.cid-uVVhtQGgsQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVhtQGgsQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVVhtQGgsQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVVhtQGgsQ .dropdown-item:hover,
.cid-uVVhtQGgsQ .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVVhtQGgsQ .dropdown-item:hover span {
  color: white;
}
.cid-uVVhtQGgsQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVVhtQGgsQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVVhtQGgsQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVVhtQGgsQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVVhtQGgsQ .nav-link {
  position: relative;
}
.cid-uVVhtQGgsQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVVhtQGgsQ .container {
    flex-wrap: nowrap;
  }
}
.cid-uVVhtQGgsQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVVhtQGgsQ .dropdown-menu,
.cid-uVVhtQGgsQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uVVhtQGgsQ .nav-item:focus,
.cid-uVVhtQGgsQ .nav-link:focus {
  outline: none;
}
.cid-uVVhtQGgsQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVVhtQGgsQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVVhtQGgsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVVhtQGgsQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVhtQGgsQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVVhtQGgsQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVVhtQGgsQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVVhtQGgsQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uVVhtQGgsQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVVhtQGgsQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uVVhtQGgsQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVVhtQGgsQ .navbar.collapsed {
  justify-content: center;
}
.cid-uVVhtQGgsQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVVhtQGgsQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVVhtQGgsQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVVhtQGgsQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVVhtQGgsQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVVhtQGgsQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVVhtQGgsQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVVhtQGgsQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVVhtQGgsQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVVhtQGgsQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVVhtQGgsQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVVhtQGgsQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVVhtQGgsQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVVhtQGgsQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVVhtQGgsQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVVhtQGgsQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVVhtQGgsQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVVhtQGgsQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVVhtQGgsQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVVhtQGgsQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVVhtQGgsQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVVhtQGgsQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVVhtQGgsQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVVhtQGgsQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVVhtQGgsQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVVhtQGgsQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVVhtQGgsQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVVhtQGgsQ .dropdown-item.active,
.cid-uVVhtQGgsQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uVVhtQGgsQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVVhtQGgsQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVVhtQGgsQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVVhtQGgsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVVhtQGgsQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVVhtQGgsQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVVhtQGgsQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVVhtQGgsQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVVhtQGgsQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVVhtQGgsQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVVhtQGgsQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVVhtQGgsQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVhtQGgsQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVhtQGgsQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVVhtQGgsQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVhtQGgsQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVVhtQGgsQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVVhtQGgsQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVhtQGgsQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVVhtQGgsQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVVhtQGgsQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVVhtQGgsQ .navbar {
    height: 70px;
  }
  .cid-uVVhtQGgsQ .navbar.opened {
    height: auto;
  }
  .cid-uVVhtQGgsQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVVhtRyqvF {
  background-image: url("../../../assets/images/parceiros-do-parque1-1200x514.jpeg");
}
.cid-uVVhtRyqvF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVhtRyqvF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVhtRyqvF .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVVhtRyqvF .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVVhtRyqvF .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVVhtRyqvF .mbr-section-title {
  color: #ffffff;
}
.cid-v1NukeB875 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v1NukeB875 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1NukeB875 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1M9rin19L {
  background-color: #9fdbf8;
}
.cid-v1M9rin19L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1M9rin19L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v1M9rin19L .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v1M9rin19L .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v1M9rin19L .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v1M9rin19L .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v1M9rin19L .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-v1M9rin19L .mbr-text,
.cid-v1M9rin19L .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-v3MzGSOr7t {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v3MzGSOr7t .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v3MzGSOr7t .carousel {
    min-height: 600px;
  }
  .cid-v3MzGSOr7t .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3MzGSOr7t .carousel {
    min-height: 390px;
  }
  .cid-v3MzGSOr7t .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v3MzGSOr7t .carousel {
    min-height: 330px;
  }
  .cid-v3MzGSOr7t .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v3MzGSOr7t .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v3MzGSOr7t .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v3MzGSOr7t .carousel,
.cid-v3MzGSOr7t .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MzGSOr7t .item-wrapper {
  width: 100%;
}
.cid-v3MzGSOr7t .carousel-caption {
  bottom: 40px;
}
.cid-v3MzGSOr7t .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v3MzGSOr7t .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v3MzGSOr7t .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v3MzGSOr7t .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v3MzGSOr7t .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MzGSOr7t .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MzGSOr7t .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MzGSOr7t .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MzGSOr7t .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v3MzGSOr7t .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MzGSOr7t .carousel-indicators li.active,
.cid-v3MzGSOr7t .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MzGSOr7t .carousel-indicators li::after,
.cid-v3MzGSOr7t .carousel-indicators li::before {
  content: none;
}
.cid-v3MzGSOr7t .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MzGSOr7t .carousel-indicators {
    display: none !important;
  }
}
.cid-uVVhtSwPC7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uVVhtSwPC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVhtSwPC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1TF7sJGhy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v1TF7sJGhy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1TF7sJGhy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3MEg4llmG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-v3MEg4llmG .mbr-overlay {
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-v3MEg4llmG .carousel {
    min-height: 600px;
  }
  .cid-v3MEg4llmG .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v3MEg4llmG .carousel {
    min-height: 390px;
  }
  .cid-v3MEg4llmG .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-v3MEg4llmG .carousel {
    min-height: 330px;
  }
  .cid-v3MEg4llmG .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-v3MEg4llmG .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-v3MEg4llmG .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-v3MEg4llmG .carousel,
.cid-v3MEg4llmG .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v3MEg4llmG .item-wrapper {
  width: 100%;
}
.cid-v3MEg4llmG .carousel-caption {
  bottom: 40px;
}
.cid-v3MEg4llmG .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-v3MEg4llmG .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-v3MEg4llmG .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-v3MEg4llmG .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-v3MEg4llmG .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v3MEg4llmG .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v3MEg4llmG .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v3MEg4llmG .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v3MEg4llmG .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-v3MEg4llmG .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v3MEg4llmG .carousel-indicators li.active,
.cid-v3MEg4llmG .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v3MEg4llmG .carousel-indicators li::after,
.cid-v3MEg4llmG .carousel-indicators li::before {
  content: none;
}
.cid-v3MEg4llmG .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v3MEg4llmG .carousel-indicators {
    display: none !important;
  }
}
.cid-v1RVanXJ9Z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v1RVanXJ9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1RVanXJ9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8BWvGxfb3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BWvGxfb3 img,
.cid-v8BWvGxfb3 .item-img {
  width: 100%;
}
.cid-v8BWvGxfb3 .item:focus,
.cid-v8BWvGxfb3 span:focus {
  outline: none;
}
.cid-v8BWvGxfb3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BWvGxfb3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BWvGxfb3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BWvGxfb3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BWvGxfb3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BWvGxfb3 .mbr-section-title {
  color: #232323;
}
.cid-v8BWvGxfb3 .mbr-text,
.cid-v8BWvGxfb3 .mbr-section-btn {
  text-align: center;
}
.cid-v8BWvGxfb3 .item-title {
  text-align: center;
}
.cid-v8BWvGxfb3 .item-subtitle {
  text-align: left;
}
.cid-v1NCOa8y3H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v1NCOa8y3H .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1NCOa8y3H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVk6gQ2Bu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVVk6gQ2Bu nav.navbar {
  position: fixed;
}
.cid-uVVk6gQ2Bu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVk6gQ2Bu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVVk6gQ2Bu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVVk6gQ2Bu .dropdown-item:hover,
.cid-uVVk6gQ2Bu .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVVk6gQ2Bu .dropdown-item:hover span {
  color: white;
}
.cid-uVVk6gQ2Bu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVVk6gQ2Bu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVVk6gQ2Bu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVVk6gQ2Bu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVVk6gQ2Bu .nav-link {
  position: relative;
}
.cid-uVVk6gQ2Bu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVVk6gQ2Bu .container {
    flex-wrap: nowrap;
  }
}
.cid-uVVk6gQ2Bu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVVk6gQ2Bu .dropdown-menu,
.cid-uVVk6gQ2Bu .navbar.opened {
  background: #ffffff !important;
}
.cid-uVVk6gQ2Bu .nav-item:focus,
.cid-uVVk6gQ2Bu .nav-link:focus {
  outline: none;
}
.cid-uVVk6gQ2Bu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVVk6gQ2Bu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVVk6gQ2Bu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVVk6gQ2Bu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVk6gQ2Bu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVVk6gQ2Bu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVVk6gQ2Bu .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVVk6gQ2Bu .navbar.opened {
  transition: all 0.3s;
}
.cid-uVVk6gQ2Bu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVVk6gQ2Bu .navbar .navbar-logo img {
  width: auto;
}
.cid-uVVk6gQ2Bu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVVk6gQ2Bu .navbar.collapsed {
  justify-content: center;
}
.cid-uVVk6gQ2Bu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVVk6gQ2Bu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVVk6gQ2Bu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVVk6gQ2Bu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVVk6gQ2Bu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVVk6gQ2Bu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVVk6gQ2Bu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVVk6gQ2Bu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVVk6gQ2Bu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVVk6gQ2Bu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVVk6gQ2Bu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVVk6gQ2Bu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVVk6gQ2Bu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVVk6gQ2Bu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVVk6gQ2Bu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVVk6gQ2Bu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVVk6gQ2Bu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVVk6gQ2Bu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVVk6gQ2Bu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVVk6gQ2Bu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVVk6gQ2Bu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVVk6gQ2Bu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVVk6gQ2Bu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVVk6gQ2Bu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVVk6gQ2Bu .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVVk6gQ2Bu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVVk6gQ2Bu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVVk6gQ2Bu .dropdown-item.active,
.cid-uVVk6gQ2Bu .dropdown-item:active {
  background-color: transparent;
}
.cid-uVVk6gQ2Bu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVVk6gQ2Bu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVVk6gQ2Bu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVVk6gQ2Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVVk6gQ2Bu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVVk6gQ2Bu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVVk6gQ2Bu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVVk6gQ2Bu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVVk6gQ2Bu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVVk6gQ2Bu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVVk6gQ2Bu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVVk6gQ2Bu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVk6gQ2Bu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVk6gQ2Bu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVVk6gQ2Bu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVk6gQ2Bu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVVk6gQ2Bu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVVk6gQ2Bu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVk6gQ2Bu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVVk6gQ2Bu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVVk6gQ2Bu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVVk6gQ2Bu .navbar {
    height: 70px;
  }
  .cid-uVVk6gQ2Bu .navbar.opened {
    height: auto;
  }
  .cid-uVVk6gQ2Bu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVVk6hz62A {
  background-image: url("../../../assets/images/parceiros-do-parque1-1200x514.jpeg");
}
.cid-uVVk6hz62A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVk6hz62A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVk6hz62A .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVVk6hz62A .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVVk6hz62A .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVVk6hz62A .mbr-section-title {
  color: #ffffff;
}
.cid-uW3xSm2qLP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3xSm2qLP img,
.cid-uW3xSm2qLP .item-img {
  width: 100%;
}
.cid-uW3xSm2qLP .item:focus,
.cid-uW3xSm2qLP span:focus {
  outline: none;
}
.cid-uW3xSm2qLP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3xSm2qLP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3xSm2qLP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3xSm2qLP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3xSm2qLP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3xSm2qLP .mbr-section-title {
  color: #232323;
}
.cid-uW3xSm2qLP .mbr-text,
.cid-uW3xSm2qLP .mbr-section-btn {
  text-align: center;
}
.cid-uW3xSm2qLP .item-title {
  text-align: center;
}
.cid-uW3xSm2qLP .item-subtitle {
  text-align: left;
}
.cid-uVVmCgsf9F {
  background-color: #9fdbf8;
}
.cid-uVVmCgsf9F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVmCgsf9F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVVmCgsf9F .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVVmCgsf9F .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVVmCgsf9F .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVVmCgsf9F .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVVmCgsf9F .mbr-text,
.cid-uVVmCgsf9F .mbr-section-btn {
  text-align: center;
}
.cid-uVVmCgsf9F .mbr-section-title {
  text-align: center;
}
.cid-uW3yOiCrCN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3yOiCrCN img,
.cid-uW3yOiCrCN .item-img {
  width: 100%;
}
.cid-uW3yOiCrCN .item:focus,
.cid-uW3yOiCrCN span:focus {
  outline: none;
}
.cid-uW3yOiCrCN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3yOiCrCN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3yOiCrCN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3yOiCrCN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3yOiCrCN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3yOiCrCN .mbr-section-title {
  color: #232323;
}
.cid-uW3yOiCrCN .mbr-text,
.cid-uW3yOiCrCN .mbr-section-btn {
  text-align: center;
}
.cid-uW3yOiCrCN .item-title {
  text-align: center;
}
.cid-uW3yOiCrCN .item-subtitle {
  text-align: left;
}
.cid-v8BWVkPaqk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BWVkPaqk img,
.cid-v8BWVkPaqk .item-img {
  width: 100%;
}
.cid-v8BWVkPaqk .item:focus,
.cid-v8BWVkPaqk span:focus {
  outline: none;
}
.cid-v8BWVkPaqk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BWVkPaqk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BWVkPaqk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BWVkPaqk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BWVkPaqk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BWVkPaqk .mbr-section-title {
  color: #232323;
}
.cid-v8BWVkPaqk .mbr-text,
.cid-v8BWVkPaqk .mbr-section-btn {
  text-align: center;
}
.cid-v8BWVkPaqk .item-title {
  text-align: center;
}
.cid-v8BWVkPaqk .item-subtitle {
  text-align: left;
}
.cid-uVVk6luOV8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-uVVk6luOV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVk6luOV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVoc4M7Uk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVVoc4M7Uk nav.navbar {
  position: fixed;
}
.cid-uVVoc4M7Uk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVoc4M7Uk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVVoc4M7Uk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVVoc4M7Uk .dropdown-item:hover,
.cid-uVVoc4M7Uk .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVVoc4M7Uk .dropdown-item:hover span {
  color: white;
}
.cid-uVVoc4M7Uk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVVoc4M7Uk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVVoc4M7Uk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVVoc4M7Uk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVVoc4M7Uk .nav-link {
  position: relative;
}
.cid-uVVoc4M7Uk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVVoc4M7Uk .container {
    flex-wrap: nowrap;
  }
}
.cid-uVVoc4M7Uk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVVoc4M7Uk .dropdown-menu,
.cid-uVVoc4M7Uk .navbar.opened {
  background: #ffffff !important;
}
.cid-uVVoc4M7Uk .nav-item:focus,
.cid-uVVoc4M7Uk .nav-link:focus {
  outline: none;
}
.cid-uVVoc4M7Uk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVVoc4M7Uk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVVoc4M7Uk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVVoc4M7Uk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVVoc4M7Uk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVVoc4M7Uk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVVoc4M7Uk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVVoc4M7Uk .navbar.opened {
  transition: all 0.3s;
}
.cid-uVVoc4M7Uk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVVoc4M7Uk .navbar .navbar-logo img {
  width: auto;
}
.cid-uVVoc4M7Uk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVVoc4M7Uk .navbar.collapsed {
  justify-content: center;
}
.cid-uVVoc4M7Uk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVVoc4M7Uk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVVoc4M7Uk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVVoc4M7Uk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVVoc4M7Uk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVVoc4M7Uk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVVoc4M7Uk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVVoc4M7Uk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVVoc4M7Uk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVVoc4M7Uk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVVoc4M7Uk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVVoc4M7Uk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVVoc4M7Uk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVVoc4M7Uk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVVoc4M7Uk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVVoc4M7Uk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVVoc4M7Uk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVVoc4M7Uk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVVoc4M7Uk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVVoc4M7Uk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVVoc4M7Uk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVVoc4M7Uk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVVoc4M7Uk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVVoc4M7Uk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVVoc4M7Uk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVVoc4M7Uk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVVoc4M7Uk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVVoc4M7Uk .dropdown-item.active,
.cid-uVVoc4M7Uk .dropdown-item:active {
  background-color: transparent;
}
.cid-uVVoc4M7Uk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVVoc4M7Uk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVVoc4M7Uk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVVoc4M7Uk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVVoc4M7Uk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVVoc4M7Uk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVVoc4M7Uk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVVoc4M7Uk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVVoc4M7Uk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVVoc4M7Uk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVVoc4M7Uk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVVoc4M7Uk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVoc4M7Uk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVVoc4M7Uk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVVoc4M7Uk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVoc4M7Uk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVVoc4M7Uk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVVoc4M7Uk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVVoc4M7Uk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVVoc4M7Uk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVVoc4M7Uk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVVoc4M7Uk .navbar {
    height: 70px;
  }
  .cid-uVVoc4M7Uk .navbar.opened {
    height: auto;
  }
  .cid-uVVoc4M7Uk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVVoc5xVaQ {
  background-image: url("../../../assets/images/socioambientais-1280x851.jpg");
}
.cid-uVVoc5xVaQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVoc5xVaQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVVoc5xVaQ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVVoc5xVaQ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVVoc5xVaQ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVVoc5xVaQ .mbr-section-title {
  color: #ffffff;
}
.cid-uW3BoKnRm5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3BoKnRm5 img,
.cid-uW3BoKnRm5 .item-img {
  width: 100%;
}
.cid-uW3BoKnRm5 .item:focus,
.cid-uW3BoKnRm5 span:focus {
  outline: none;
}
.cid-uW3BoKnRm5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3BoKnRm5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3BoKnRm5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3BoKnRm5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3BoKnRm5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3BoKnRm5 .mbr-section-title {
  color: #232323;
}
.cid-uW3BoKnRm5 .mbr-text,
.cid-uW3BoKnRm5 .mbr-section-btn {
  text-align: center;
}
.cid-uW3BoKnRm5 .item-title {
  text-align: center;
}
.cid-uW3BoKnRm5 .item-subtitle {
  text-align: left;
}
.cid-uW3CmXaWXG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3CmXaWXG img,
.cid-uW3CmXaWXG .item-img {
  width: 100%;
}
.cid-uW3CmXaWXG .item:focus,
.cid-uW3CmXaWXG span:focus {
  outline: none;
}
.cid-uW3CmXaWXG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3CmXaWXG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3CmXaWXG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3CmXaWXG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3CmXaWXG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3CmXaWXG .mbr-section-title {
  color: #232323;
}
.cid-uW3CmXaWXG .mbr-text,
.cid-uW3CmXaWXG .mbr-section-btn {
  text-align: center;
}
.cid-uW3CmXaWXG .item-title {
  text-align: center;
}
.cid-uW3CmXaWXG .item-subtitle {
  text-align: left;
}
.cid-uW3D3t0GEx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3D3t0GEx img,
.cid-uW3D3t0GEx .item-img {
  width: 100%;
}
.cid-uW3D3t0GEx .item:focus,
.cid-uW3D3t0GEx span:focus {
  outline: none;
}
.cid-uW3D3t0GEx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3D3t0GEx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3D3t0GEx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3D3t0GEx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3D3t0GEx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3D3t0GEx .mbr-section-title {
  color: #232323;
}
.cid-uW3D3t0GEx .mbr-text,
.cid-uW3D3t0GEx .mbr-section-btn {
  text-align: center;
}
.cid-uW3D3t0GEx .item-title {
  text-align: center;
}
.cid-uW3D3t0GEx .item-subtitle {
  text-align: left;
}
.cid-v5zKuxRqV4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v5zKuxRqV4 img,
.cid-v5zKuxRqV4 .item-img {
  width: 100%;
}
.cid-v5zKuxRqV4 .item:focus,
.cid-v5zKuxRqV4 span:focus {
  outline: none;
}
.cid-v5zKuxRqV4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5zKuxRqV4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5zKuxRqV4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5zKuxRqV4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5zKuxRqV4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5zKuxRqV4 .mbr-section-title {
  color: #232323;
}
.cid-v5zKuxRqV4 .mbr-text,
.cid-v5zKuxRqV4 .mbr-section-btn {
  text-align: left;
}
.cid-v5zKuxRqV4 .item-title {
  text-align: left;
}
.cid-v5zKuxRqV4 .item-subtitle {
  text-align: left;
}
.cid-uW3DxTlocc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3DxTlocc img,
.cid-uW3DxTlocc .item-img {
  width: 100%;
}
.cid-uW3DxTlocc .item:focus,
.cid-uW3DxTlocc span:focus {
  outline: none;
}
.cid-uW3DxTlocc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3DxTlocc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3DxTlocc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3DxTlocc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3DxTlocc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3DxTlocc .mbr-section-title {
  color: #232323;
}
.cid-uW3DxTlocc .mbr-text,
.cid-uW3DxTlocc .mbr-section-btn {
  text-align: center;
}
.cid-uW3DxTlocc .item-title {
  text-align: center;
}
.cid-uW3DxTlocc .item-subtitle {
  text-align: left;
}
.cid-uW3E0NXe6T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3E0NXe6T img,
.cid-uW3E0NXe6T .item-img {
  width: 100%;
}
.cid-uW3E0NXe6T .item:focus,
.cid-uW3E0NXe6T span:focus {
  outline: none;
}
.cid-uW3E0NXe6T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3E0NXe6T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3E0NXe6T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3E0NXe6T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3E0NXe6T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3E0NXe6T .mbr-section-title {
  color: #232323;
}
.cid-uW3E0NXe6T .mbr-text,
.cid-uW3E0NXe6T .mbr-section-btn {
  text-align: center;
}
.cid-uW3E0NXe6T .item-title {
  text-align: center;
}
.cid-uW3E0NXe6T .item-subtitle {
  text-align: left;
}
.cid-uW3EoEBmbY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3EoEBmbY img,
.cid-uW3EoEBmbY .item-img {
  width: 100%;
}
.cid-uW3EoEBmbY .item:focus,
.cid-uW3EoEBmbY span:focus {
  outline: none;
}
.cid-uW3EoEBmbY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3EoEBmbY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3EoEBmbY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3EoEBmbY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3EoEBmbY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3EoEBmbY .mbr-section-title {
  color: #232323;
}
.cid-uW3EoEBmbY .mbr-text,
.cid-uW3EoEBmbY .mbr-section-btn {
  text-align: center;
}
.cid-uW3EoEBmbY .item-title {
  text-align: center;
}
.cid-uW3EoEBmbY .item-subtitle {
  text-align: left;
}
.cid-uW3EM1fF1O {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3EM1fF1O img,
.cid-uW3EM1fF1O .item-img {
  width: 100%;
}
.cid-uW3EM1fF1O .item:focus,
.cid-uW3EM1fF1O span:focus {
  outline: none;
}
.cid-uW3EM1fF1O .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3EM1fF1O .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3EM1fF1O .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3EM1fF1O .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3EM1fF1O .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3EM1fF1O .mbr-section-title {
  color: #232323;
}
.cid-uW3EM1fF1O .mbr-text,
.cid-uW3EM1fF1O .mbr-section-btn {
  text-align: center;
}
.cid-uW3EM1fF1O .item-title {
  text-align: center;
}
.cid-uW3EM1fF1O .item-subtitle {
  text-align: left;
}
.cid-uW3F78UoiZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3F78UoiZ img,
.cid-uW3F78UoiZ .item-img {
  width: 100%;
}
.cid-uW3F78UoiZ .item:focus,
.cid-uW3F78UoiZ span:focus {
  outline: none;
}
.cid-uW3F78UoiZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3F78UoiZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3F78UoiZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3F78UoiZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3F78UoiZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3F78UoiZ .mbr-section-title {
  color: #232323;
}
.cid-uW3F78UoiZ .mbr-text,
.cid-uW3F78UoiZ .mbr-section-btn {
  text-align: center;
}
.cid-uW3F78UoiZ .item-title {
  text-align: center;
}
.cid-uW3F78UoiZ .item-subtitle {
  text-align: left;
}
.cid-uW3FJQoHBc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3FJQoHBc img,
.cid-uW3FJQoHBc .item-img {
  width: 100%;
}
.cid-uW3FJQoHBc .item:focus,
.cid-uW3FJQoHBc span:focus {
  outline: none;
}
.cid-uW3FJQoHBc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3FJQoHBc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3FJQoHBc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3FJQoHBc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3FJQoHBc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3FJQoHBc .mbr-section-title {
  color: #232323;
}
.cid-uW3FJQoHBc .mbr-text,
.cid-uW3FJQoHBc .mbr-section-btn {
  text-align: center;
}
.cid-uW3FJQoHBc .item-title {
  text-align: center;
}
.cid-uW3FJQoHBc .item-subtitle {
  text-align: left;
}
.cid-uW3G8UkvoM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uW3G8UkvoM img,
.cid-uW3G8UkvoM .item-img {
  width: 100%;
}
.cid-uW3G8UkvoM .item:focus,
.cid-uW3G8UkvoM span:focus {
  outline: none;
}
.cid-uW3G8UkvoM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3G8UkvoM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3G8UkvoM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3G8UkvoM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3G8UkvoM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3G8UkvoM .mbr-section-title {
  color: #232323;
}
.cid-uW3G8UkvoM .mbr-text,
.cid-uW3G8UkvoM .mbr-section-btn {
  text-align: center;
}
.cid-uW3G8UkvoM .item-title {
  text-align: center;
}
.cid-uW3G8UkvoM .item-subtitle {
  text-align: left;
}
.cid-uW3GCJ5inH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uW3GCJ5inH img,
.cid-uW3GCJ5inH .item-img {
  width: 100%;
}
.cid-uW3GCJ5inH .item:focus,
.cid-uW3GCJ5inH span:focus {
  outline: none;
}
.cid-uW3GCJ5inH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uW3GCJ5inH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW3GCJ5inH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3GCJ5inH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW3GCJ5inH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW3GCJ5inH .mbr-section-title {
  color: #232323;
}
.cid-uW3GCJ5inH .mbr-text,
.cid-uW3GCJ5inH .mbr-section-btn {
  text-align: center;
}
.cid-uW3GCJ5inH .item-title {
  text-align: center;
}
.cid-uW3GCJ5inH .item-subtitle {
  text-align: left;
}
.cid-uVWPXeoSnQ {
  background-color: #c9dafb;
}
.cid-uVWPXeoSnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVWPXeoSnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVWPXeoSnQ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVWPXeoSnQ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVWPXeoSnQ .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVWPXeoSnQ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVWPXeoSnQ .mbr-section-title {
  text-align: center;
}
.cid-uVWPXeoSnQ .mbr-text,
.cid-uVWPXeoSnQ .mbr-section-btn {
  text-align: center;
}
.cid-v8BXeL46mp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BXeL46mp img,
.cid-v8BXeL46mp .item-img {
  width: 100%;
}
.cid-v8BXeL46mp .item:focus,
.cid-v8BXeL46mp span:focus {
  outline: none;
}
.cid-v8BXeL46mp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BXeL46mp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BXeL46mp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BXeL46mp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BXeL46mp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BXeL46mp .mbr-section-title {
  color: #232323;
}
.cid-v8BXeL46mp .mbr-text,
.cid-v8BXeL46mp .mbr-section-btn {
  text-align: center;
}
.cid-v8BXeL46mp .item-title {
  text-align: center;
}
.cid-v8BXeL46mp .item-subtitle {
  text-align: left;
}
.cid-uVVoc94z0u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-uVVoc94z0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVVoc94z0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXzHW1lPZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVXzHW1lPZ nav.navbar {
  position: fixed;
}
.cid-uVXzHW1lPZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXzHW1lPZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVXzHW1lPZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVXzHW1lPZ .dropdown-item:hover,
.cid-uVXzHW1lPZ .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVXzHW1lPZ .dropdown-item:hover span {
  color: white;
}
.cid-uVXzHW1lPZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVXzHW1lPZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVXzHW1lPZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVXzHW1lPZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVXzHW1lPZ .nav-link {
  position: relative;
}
.cid-uVXzHW1lPZ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVXzHW1lPZ .container {
    flex-wrap: nowrap;
  }
}
.cid-uVXzHW1lPZ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVXzHW1lPZ .dropdown-menu,
.cid-uVXzHW1lPZ .navbar.opened {
  background: #ffffff !important;
}
.cid-uVXzHW1lPZ .nav-item:focus,
.cid-uVXzHW1lPZ .nav-link:focus {
  outline: none;
}
.cid-uVXzHW1lPZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVXzHW1lPZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVXzHW1lPZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVXzHW1lPZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXzHW1lPZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVXzHW1lPZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVXzHW1lPZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVXzHW1lPZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uVXzHW1lPZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVXzHW1lPZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uVXzHW1lPZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVXzHW1lPZ .navbar.collapsed {
  justify-content: center;
}
.cid-uVXzHW1lPZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVXzHW1lPZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVXzHW1lPZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVXzHW1lPZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVXzHW1lPZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVXzHW1lPZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVXzHW1lPZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVXzHW1lPZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVXzHW1lPZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVXzHW1lPZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVXzHW1lPZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVXzHW1lPZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVXzHW1lPZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVXzHW1lPZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVXzHW1lPZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVXzHW1lPZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVXzHW1lPZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVXzHW1lPZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVXzHW1lPZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVXzHW1lPZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVXzHW1lPZ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVXzHW1lPZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVXzHW1lPZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVXzHW1lPZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVXzHW1lPZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVXzHW1lPZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVXzHW1lPZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVXzHW1lPZ .dropdown-item.active,
.cid-uVXzHW1lPZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uVXzHW1lPZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVXzHW1lPZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVXzHW1lPZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVXzHW1lPZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVXzHW1lPZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVXzHW1lPZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVXzHW1lPZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVXzHW1lPZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVXzHW1lPZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVXzHW1lPZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVXzHW1lPZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVXzHW1lPZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXzHW1lPZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXzHW1lPZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVXzHW1lPZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXzHW1lPZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVXzHW1lPZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVXzHW1lPZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXzHW1lPZ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVXzHW1lPZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVXzHW1lPZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVXzHW1lPZ .navbar {
    height: 70px;
  }
  .cid-uVXzHW1lPZ .navbar.opened {
    height: auto;
  }
  .cid-uVXzHW1lPZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVXzHWSMFI {
  background-image: url("../../../assets/images/parceiros-do-parque1-1200x514.jpeg");
}
.cid-uVXzHWSMFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzHWSMFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXzHWSMFI .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVXzHWSMFI .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVXzHWSMFI .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVXzHWSMFI .mbr-section-title {
  color: #ffffff;
}
.cid-uVXzHXPHQv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uVXzHXPHQv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzHXPHQv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v6a6dDrG4M {
  background-color: #c9dafb;
}
.cid-v6a6dDrG4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-v6a6dDrG4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v6a6dDrG4M .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v6a6dDrG4M .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v6a6dDrG4M .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v6a6dDrG4M .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v6a6dDrG4M .mbr-section-title {
  text-align: center;
}
.cid-v6a6dDrG4M .mbr-text,
.cid-v6a6dDrG4M .mbr-section-btn {
  text-align: center;
}
.cid-v6a6tZ6FgW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v6a6tZ6FgW img,
.cid-v6a6tZ6FgW .item-img {
  width: 100%;
}
.cid-v6a6tZ6FgW .item:focus,
.cid-v6a6tZ6FgW span:focus {
  outline: none;
}
.cid-v6a6tZ6FgW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v6a6tZ6FgW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v6a6tZ6FgW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v6a6tZ6FgW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v6a6tZ6FgW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v6a6tZ6FgW .mbr-section-title {
  color: #232323;
}
.cid-v6a6tZ6FgW .mbr-text,
.cid-v6a6tZ6FgW .mbr-section-btn {
  text-align: center;
}
.cid-v6a6tZ6FgW .item-title {
  text-align: center;
}
.cid-v6a6tZ6FgW .item-subtitle {
  text-align: center;
}
.cid-v8hj2hWrzG {
  background-color: #c9dafb;
}
.cid-v8hj2hWrzG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8hj2hWrzG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v8hj2hWrzG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v8hj2hWrzG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v8hj2hWrzG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v8hj2hWrzG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v8hj2hWrzG .mbr-section-title {
  text-align: center;
}
.cid-v8hj2hWrzG .mbr-text,
.cid-v8hj2hWrzG .mbr-section-btn {
  text-align: center;
}
.cid-v5Yi2ElPeU {
  background-color: #9fdbf8;
}
.cid-v5Yi2ElPeU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5Yi2ElPeU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5Yi2ElPeU .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v5Yi2ElPeU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v5Yi2ElPeU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v5Yi2ElPeU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v5Yi2ElPeU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v5Yi2ElPeU .mbr-section-title {
  text-align: center;
}
.cid-v5Yi2ElPeU .mbr-text,
.cid-v5Yi2ElPeU .mbr-section-btn {
  text-align: center;
}
.cid-v55BMAp2Sn {
  background-color: #c9dafb;
}
.cid-v55BMAp2Sn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v55BMAp2Sn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v55BMAp2Sn .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v55BMAp2Sn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v55BMAp2Sn .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v55BMAp2Sn .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v55BMAp2Sn .mbr-section-title {
  text-align: center;
}
.cid-v55BMAp2Sn .mbr-text,
.cid-v55BMAp2Sn .mbr-section-btn {
  text-align: center;
}
.cid-v4URZhRCPo {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v4URZhRCPo img,
.cid-v4URZhRCPo .item-img {
  width: 100%;
}
.cid-v4URZhRCPo .item:focus,
.cid-v4URZhRCPo span:focus {
  outline: none;
}
.cid-v4URZhRCPo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4URZhRCPo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4URZhRCPo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4URZhRCPo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4URZhRCPo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4URZhRCPo .mbr-section-title {
  color: #232323;
}
.cid-v4URZhRCPo .mbr-text,
.cid-v4URZhRCPo .mbr-section-btn {
  text-align: center;
}
.cid-v4URZhRCPo .item-title {
  text-align: center;
}
.cid-v4URZhRCPo .item-subtitle {
  text-align: center;
}
.cid-uVXzI02wBU {
  background-color: #c9dafb;
}
.cid-uVXzI02wBU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzI02wBU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVXzI02wBU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI02wBU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXzI02wBU .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXzI02wBU .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI02wBU .mbr-section-title {
  text-align: center;
}
.cid-uVXzI02wBU .mbr-text,
.cid-uVXzI02wBU .mbr-section-btn {
  text-align: center;
}
.cid-v50BtOsaoH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v50BtOsaoH img,
.cid-v50BtOsaoH .item-img {
  width: 100%;
}
.cid-v50BtOsaoH .item:focus,
.cid-v50BtOsaoH span:focus {
  outline: none;
}
.cid-v50BtOsaoH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50BtOsaoH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50BtOsaoH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50BtOsaoH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v50BtOsaoH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50BtOsaoH .mbr-section-title {
  color: #232323;
}
.cid-v50BtOsaoH .mbr-text,
.cid-v50BtOsaoH .mbr-section-btn {
  text-align: center;
}
.cid-v50BtOsaoH .item-title {
  text-align: center;
}
.cid-v50BtOsaoH .item-subtitle {
  text-align: center;
}
.cid-v50EnKiQmn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v50EnKiQmn img,
.cid-v50EnKiQmn .item-img {
  width: 100%;
}
.cid-v50EnKiQmn .item:focus,
.cid-v50EnKiQmn span:focus {
  outline: none;
}
.cid-v50EnKiQmn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50EnKiQmn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #c9dafb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50EnKiQmn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50EnKiQmn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v50EnKiQmn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50EnKiQmn .mbr-section-title {
  color: #232323;
}
.cid-v50EnKiQmn .mbr-text,
.cid-v50EnKiQmn .mbr-section-btn {
  text-align: center;
}
.cid-v50EnKiQmn .item-title {
  text-align: center;
}
.cid-v50EnKiQmn .item-subtitle {
  text-align: center;
}
.cid-v4UQ6CCzqX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v4UQ6CCzqX img,
.cid-v4UQ6CCzqX .item-img {
  width: 100%;
}
.cid-v4UQ6CCzqX .item:focus,
.cid-v4UQ6CCzqX span:focus {
  outline: none;
}
.cid-v4UQ6CCzqX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4UQ6CCzqX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4UQ6CCzqX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4UQ6CCzqX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4UQ6CCzqX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4UQ6CCzqX .mbr-section-title {
  color: #232323;
}
.cid-v4UQ6CCzqX .mbr-text,
.cid-v4UQ6CCzqX .mbr-section-btn {
  text-align: center;
}
.cid-v4UQ6CCzqX .item-title {
  text-align: center;
}
.cid-v4UQ6CCzqX .item-subtitle {
  text-align: center;
}
.cid-v50Cmeomoz {
  background-color: #c9dafb;
}
.cid-v50Cmeomoz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v50Cmeomoz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v50Cmeomoz .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v50Cmeomoz .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v50Cmeomoz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v50Cmeomoz .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v50Cmeomoz .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v50Cmeomoz .mbr-section-title {
  text-align: center;
}
.cid-v50Cmeomoz .mbr-text,
.cid-v50Cmeomoz .mbr-section-btn {
  text-align: center;
}
.cid-v4UTy6RSx8 {
  background-color: #9fdbf8;
}
.cid-v4UTy6RSx8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4UTy6RSx8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4UTy6RSx8 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4UTy6RSx8 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v4UTy6RSx8 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v4UTy6RSx8 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4UTy6RSx8 .mbr-section-title {
  text-align: center;
}
.cid-v4UTy6RSx8 .mbr-text,
.cid-v4UTy6RSx8 .mbr-section-btn {
  text-align: center;
}
.cid-v4UqHtKR00 {
  background-color: #c9dafb;
}
.cid-v4UqHtKR00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4UqHtKR00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4UqHtKR00 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v4UqHtKR00 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4UqHtKR00 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v4UqHtKR00 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v4UqHtKR00 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4UqHtKR00 .mbr-section-title {
  text-align: center;
}
.cid-v4UqHtKR00 .mbr-text,
.cid-v4UqHtKR00 .mbr-section-btn {
  text-align: center;
}
.cid-v4UoPDXMID {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v4UoPDXMID img,
.cid-v4UoPDXMID .item-img {
  width: 100%;
}
.cid-v4UoPDXMID .item:focus,
.cid-v4UoPDXMID span:focus {
  outline: none;
}
.cid-v4UoPDXMID .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4UoPDXMID .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4UoPDXMID .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4UoPDXMID .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4UoPDXMID .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4UoPDXMID .mbr-section-title {
  color: #232323;
}
.cid-v4UoPDXMID .mbr-text,
.cid-v4UoPDXMID .mbr-section-btn {
  text-align: center;
}
.cid-v4UoPDXMID .item-title {
  text-align: center;
}
.cid-v4UoPDXMID .item-subtitle {
  text-align: center;
}
.cid-v50HKWmSUW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v50HKWmSUW img,
.cid-v50HKWmSUW .item-img {
  width: 100%;
}
.cid-v50HKWmSUW .item:focus,
.cid-v50HKWmSUW span:focus {
  outline: none;
}
.cid-v50HKWmSUW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v50HKWmSUW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #c9dafb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v50HKWmSUW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v50HKWmSUW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v50HKWmSUW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v50HKWmSUW .mbr-section-title {
  color: #232323;
}
.cid-v50HKWmSUW .mbr-text,
.cid-v50HKWmSUW .mbr-section-btn {
  text-align: center;
}
.cid-v50HKWmSUW .item-title {
  text-align: center;
}
.cid-v50HKWmSUW .item-subtitle {
  text-align: center;
}
.cid-uVXzHYRnCI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uVXzHYRnCI img,
.cid-uVXzHYRnCI .item-img {
  width: 100%;
}
.cid-uVXzHYRnCI .item:focus,
.cid-uVXzHYRnCI span:focus {
  outline: none;
}
.cid-uVXzHYRnCI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uVXzHYRnCI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVXzHYRnCI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVXzHYRnCI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVXzHYRnCI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVXzHYRnCI .mbr-section-title {
  color: #232323;
}
.cid-uVXzHYRnCI .mbr-text,
.cid-uVXzHYRnCI .mbr-section-btn {
  text-align: center;
}
.cid-uVXzHYRnCI .item-title {
  text-align: center;
}
.cid-uVXzHYRnCI .item-subtitle {
  text-align: center;
}
.cid-v4Q4gFRf1w {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-v4Q4gFRf1w img,
.cid-v4Q4gFRf1w .item-img {
  width: 100%;
}
.cid-v4Q4gFRf1w .item:focus,
.cid-v4Q4gFRf1w span:focus {
  outline: none;
}
.cid-v4Q4gFRf1w .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4Q4gFRf1w .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #9fdbf8;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4Q4gFRf1w .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4Q4gFRf1w .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4Q4gFRf1w .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4Q4gFRf1w .mbr-section-title {
  color: #232323;
}
.cid-v4Q4gFRf1w .mbr-text,
.cid-v4Q4gFRf1w .mbr-section-btn {
  text-align: center;
}
.cid-v4Q4gFRf1w .item-title {
  text-align: center;
}
.cid-v4Q4gFRf1w .item-subtitle {
  text-align: left;
}
.cid-uVXzI222sr {
  background-color: #c9dafb;
}
.cid-uVXzI222sr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzI222sr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVXzI222sr .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI222sr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXzI222sr .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXzI222sr .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI222sr .mbr-section-title {
  text-align: center;
}
.cid-uVXzI222sr .mbr-text,
.cid-uVXzI222sr .mbr-section-btn {
  text-align: center;
}
.cid-uVXzI11hQW {
  background-color: #9fdbf8;
}
.cid-uVXzI11hQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzI11hQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXzI11hQW .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uVXzI11hQW .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI11hQW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXzI11hQW .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXzI11hQW .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXzI11hQW .mbr-section-title {
  text-align: center;
}
.cid-uVXzI11hQW .mbr-text,
.cid-uVXzI11hQW .mbr-section-btn {
  text-align: center;
}
.cid-v551d4gwTZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v551d4gwTZ img,
.cid-v551d4gwTZ .item-img {
  width: 100%;
}
.cid-v551d4gwTZ .item:focus,
.cid-v551d4gwTZ span:focus {
  outline: none;
}
.cid-v551d4gwTZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v551d4gwTZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #c9dafb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v551d4gwTZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v551d4gwTZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v551d4gwTZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v551d4gwTZ .mbr-section-title {
  color: #232323;
}
.cid-v551d4gwTZ .mbr-text,
.cid-v551d4gwTZ .mbr-section-btn {
  text-align: center;
}
.cid-v551d4gwTZ .item-title {
  text-align: center;
}
.cid-v551d4gwTZ .item-subtitle {
  text-align: center;
}
.cid-v8BZyMXqlf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BZyMXqlf img,
.cid-v8BZyMXqlf .item-img {
  width: 100%;
}
.cid-v8BZyMXqlf .item:focus,
.cid-v8BZyMXqlf span:focus {
  outline: none;
}
.cid-v8BZyMXqlf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BZyMXqlf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BZyMXqlf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BZyMXqlf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BZyMXqlf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BZyMXqlf .mbr-section-title {
  color: #232323;
}
.cid-v8BZyMXqlf .mbr-text,
.cid-v8BZyMXqlf .mbr-section-btn {
  text-align: center;
}
.cid-v8BZyMXqlf .item-title {
  text-align: center;
}
.cid-v8BZyMXqlf .item-subtitle {
  text-align: left;
}
.cid-uVXzI3vrVF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-uVXzI3vrVF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXzI3vrVF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXAoSdX9t {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVXAoSdX9t nav.navbar {
  position: fixed;
}
.cid-uVXAoSdX9t .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXAoSdX9t .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVXAoSdX9t .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVXAoSdX9t .dropdown-item:hover,
.cid-uVXAoSdX9t .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVXAoSdX9t .dropdown-item:hover span {
  color: white;
}
.cid-uVXAoSdX9t .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVXAoSdX9t .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVXAoSdX9t .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVXAoSdX9t .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVXAoSdX9t .nav-link {
  position: relative;
}
.cid-uVXAoSdX9t .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVXAoSdX9t .container {
    flex-wrap: nowrap;
  }
}
.cid-uVXAoSdX9t .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVXAoSdX9t .dropdown-menu,
.cid-uVXAoSdX9t .navbar.opened {
  background: #ffffff !important;
}
.cid-uVXAoSdX9t .nav-item:focus,
.cid-uVXAoSdX9t .nav-link:focus {
  outline: none;
}
.cid-uVXAoSdX9t .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVXAoSdX9t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVXAoSdX9t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVXAoSdX9t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXAoSdX9t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVXAoSdX9t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVXAoSdX9t .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVXAoSdX9t .navbar.opened {
  transition: all 0.3s;
}
.cid-uVXAoSdX9t .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVXAoSdX9t .navbar .navbar-logo img {
  width: auto;
}
.cid-uVXAoSdX9t .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVXAoSdX9t .navbar.collapsed {
  justify-content: center;
}
.cid-uVXAoSdX9t .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVXAoSdX9t .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVXAoSdX9t .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVXAoSdX9t .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVXAoSdX9t .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVXAoSdX9t .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVXAoSdX9t .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVXAoSdX9t .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVXAoSdX9t .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVXAoSdX9t .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVXAoSdX9t .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVXAoSdX9t .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVXAoSdX9t .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVXAoSdX9t .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVXAoSdX9t .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVXAoSdX9t .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVXAoSdX9t .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVXAoSdX9t .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVXAoSdX9t .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVXAoSdX9t .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVXAoSdX9t .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVXAoSdX9t .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVXAoSdX9t .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVXAoSdX9t .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVXAoSdX9t .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVXAoSdX9t .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVXAoSdX9t .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVXAoSdX9t .dropdown-item.active,
.cid-uVXAoSdX9t .dropdown-item:active {
  background-color: transparent;
}
.cid-uVXAoSdX9t .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVXAoSdX9t .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVXAoSdX9t .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVXAoSdX9t .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVXAoSdX9t .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVXAoSdX9t .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVXAoSdX9t ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVXAoSdX9t .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVXAoSdX9t button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVXAoSdX9t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVXAoSdX9t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVXAoSdX9t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXAoSdX9t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXAoSdX9t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVXAoSdX9t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXAoSdX9t nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVXAoSdX9t nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVXAoSdX9t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXAoSdX9t .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVXAoSdX9t a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVXAoSdX9t .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVXAoSdX9t .navbar {
    height: 70px;
  }
  .cid-uVXAoSdX9t .navbar.opened {
    height: auto;
  }
  .cid-uVXAoSdX9t .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVXAoSYVe9 {
  background-image: url("../../../assets/images/placa-noite-1-1601x902.jpg");
}
.cid-uVXAoSYVe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXAoSYVe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXAoSYVe9 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVXAoSYVe9 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVXAoSYVe9 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVXAoSYVe9 .mbr-section-title {
  color: #ffffff;
}
.cid-uVXAoSYVe9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVXAoTzCLx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVXAoTzCLx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXAoTzCLx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v66TWhGEA5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v66TWhGEA5 img,
.cid-v66TWhGEA5 .item-img {
  width: 100%;
}
.cid-v66TWhGEA5 .item:focus,
.cid-v66TWhGEA5 span:focus {
  outline: none;
}
.cid-v66TWhGEA5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66TWhGEA5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66TWhGEA5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66TWhGEA5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66TWhGEA5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66TWhGEA5 .mbr-section-title {
  color: #232323;
}
.cid-v66TWhGEA5 .mbr-text,
.cid-v66TWhGEA5 .mbr-section-btn {
  text-align: center;
}
.cid-v66TWhGEA5 .item-title {
  text-align: center;
}
.cid-v66TWhGEA5 .item-subtitle {
  text-align: left;
}
.cid-v66UE8wWXY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v66UE8wWXY img,
.cid-v66UE8wWXY .item-img {
  width: 100%;
}
.cid-v66UE8wWXY .item:focus,
.cid-v66UE8wWXY span:focus {
  outline: none;
}
.cid-v66UE8wWXY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66UE8wWXY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66UE8wWXY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66UE8wWXY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66UE8wWXY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66UE8wWXY .mbr-section-title {
  color: #232323;
}
.cid-v66UE8wWXY .mbr-text,
.cid-v66UE8wWXY .mbr-section-btn {
  text-align: center;
}
.cid-v66UE8wWXY .item-title {
  text-align: center;
}
.cid-v66UE8wWXY .item-subtitle {
  text-align: left;
}
.cid-v66VONzBXE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v66VONzBXE img,
.cid-v66VONzBXE .item-img {
  width: 100%;
}
.cid-v66VONzBXE .item:focus,
.cid-v66VONzBXE span:focus {
  outline: none;
}
.cid-v66VONzBXE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66VONzBXE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66VONzBXE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66VONzBXE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66VONzBXE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66VONzBXE .mbr-section-title {
  color: #232323;
}
.cid-v66VONzBXE .mbr-text,
.cid-v66VONzBXE .mbr-section-btn {
  text-align: center;
}
.cid-v66VONzBXE .item-title {
  text-align: center;
}
.cid-v66VONzBXE .item-subtitle {
  text-align: left;
}
.cid-v66Wfsh0n2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v66Wfsh0n2 img,
.cid-v66Wfsh0n2 .item-img {
  width: 100%;
}
.cid-v66Wfsh0n2 .item:focus,
.cid-v66Wfsh0n2 span:focus {
  outline: none;
}
.cid-v66Wfsh0n2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66Wfsh0n2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66Wfsh0n2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66Wfsh0n2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66Wfsh0n2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66Wfsh0n2 .mbr-section-title {
  color: #232323;
}
.cid-v66Wfsh0n2 .mbr-text,
.cid-v66Wfsh0n2 .mbr-section-btn {
  text-align: center;
}
.cid-v66Wfsh0n2 .item-title {
  text-align: center;
}
.cid-v66Wfsh0n2 .item-subtitle {
  text-align: left;
}
.cid-v66WMPl5FQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v66WMPl5FQ img,
.cid-v66WMPl5FQ .item-img {
  width: 100%;
}
.cid-v66WMPl5FQ .item:focus,
.cid-v66WMPl5FQ span:focus {
  outline: none;
}
.cid-v66WMPl5FQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66WMPl5FQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66WMPl5FQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66WMPl5FQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66WMPl5FQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66WMPl5FQ .mbr-section-title {
  color: #232323;
}
.cid-v66WMPl5FQ .mbr-text,
.cid-v66WMPl5FQ .mbr-section-btn {
  text-align: center;
}
.cid-v66WMPl5FQ .item-title {
  text-align: center;
}
.cid-v66WMPl5FQ .item-subtitle {
  text-align: left;
}
.cid-v66Xd1SkW2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v66Xd1SkW2 img,
.cid-v66Xd1SkW2 .item-img {
  width: 100%;
}
.cid-v66Xd1SkW2 .item:focus,
.cid-v66Xd1SkW2 span:focus {
  outline: none;
}
.cid-v66Xd1SkW2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66Xd1SkW2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66Xd1SkW2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66Xd1SkW2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66Xd1SkW2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66Xd1SkW2 .mbr-section-title {
  color: #232323;
}
.cid-v66Xd1SkW2 .mbr-text,
.cid-v66Xd1SkW2 .mbr-section-btn {
  text-align: center;
}
.cid-v66Xd1SkW2 .item-title {
  text-align: center;
}
.cid-v66Xd1SkW2 .item-subtitle {
  text-align: left;
}
.cid-v66XwKHG6l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v66XwKHG6l img,
.cid-v66XwKHG6l .item-img {
  width: 100%;
}
.cid-v66XwKHG6l .item:focus,
.cid-v66XwKHG6l span:focus {
  outline: none;
}
.cid-v66XwKHG6l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66XwKHG6l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66XwKHG6l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66XwKHG6l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66XwKHG6l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66XwKHG6l .mbr-section-title {
  color: #232323;
}
.cid-v66XwKHG6l .mbr-text,
.cid-v66XwKHG6l .mbr-section-btn {
  text-align: center;
}
.cid-v66XwKHG6l .item-title {
  text-align: center;
}
.cid-v66XwKHG6l .item-subtitle {
  text-align: left;
}
.cid-v66XZbTHVR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v66XZbTHVR img,
.cid-v66XZbTHVR .item-img {
  width: 100%;
}
.cid-v66XZbTHVR .item:focus,
.cid-v66XZbTHVR span:focus {
  outline: none;
}
.cid-v66XZbTHVR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66XZbTHVR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66XZbTHVR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66XZbTHVR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66XZbTHVR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66XZbTHVR .mbr-section-title {
  color: #232323;
}
.cid-v66XZbTHVR .mbr-text,
.cid-v66XZbTHVR .mbr-section-btn {
  text-align: center;
}
.cid-v66XZbTHVR .item-title {
  text-align: center;
}
.cid-v66XZbTHVR .item-subtitle {
  text-align: left;
}
.cid-v66YXmxUvg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v66YXmxUvg img,
.cid-v66YXmxUvg .item-img {
  width: 100%;
}
.cid-v66YXmxUvg .item:focus,
.cid-v66YXmxUvg span:focus {
  outline: none;
}
.cid-v66YXmxUvg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v66YXmxUvg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v66YXmxUvg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v66YXmxUvg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v66YXmxUvg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v66YXmxUvg .mbr-section-title {
  color: #232323;
}
.cid-v66YXmxUvg .mbr-text,
.cid-v66YXmxUvg .mbr-section-btn {
  text-align: center;
}
.cid-v66YXmxUvg .item-title {
  text-align: center;
}
.cid-v66YXmxUvg .item-subtitle {
  text-align: left;
}
.cid-v6708cFrtx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v6708cFrtx img,
.cid-v6708cFrtx .item-img {
  width: 100%;
}
.cid-v6708cFrtx .item:focus,
.cid-v6708cFrtx span:focus {
  outline: none;
}
.cid-v6708cFrtx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v6708cFrtx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v6708cFrtx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v6708cFrtx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v6708cFrtx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v6708cFrtx .mbr-section-title {
  color: #232323;
}
.cid-v6708cFrtx .mbr-text,
.cid-v6708cFrtx .mbr-section-btn {
  text-align: center;
}
.cid-v6708cFrtx .item-title {
  text-align: center;
}
.cid-v6708cFrtx .item-subtitle {
  text-align: left;
}
.cid-v670M2vA0R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v670M2vA0R img,
.cid-v670M2vA0R .item-img {
  width: 100%;
}
.cid-v670M2vA0R .item:focus,
.cid-v670M2vA0R span:focus {
  outline: none;
}
.cid-v670M2vA0R .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v670M2vA0R .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v670M2vA0R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v670M2vA0R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v670M2vA0R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v670M2vA0R .mbr-section-title {
  color: #232323;
}
.cid-v670M2vA0R .mbr-text,
.cid-v670M2vA0R .mbr-section-btn {
  text-align: center;
}
.cid-v670M2vA0R .item-title {
  text-align: center;
}
.cid-v670M2vA0R .item-subtitle {
  text-align: left;
}
.cid-v8HWVHkh46 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v8HWVHkh46 img,
.cid-v8HWVHkh46 .item-img {
  width: 100%;
}
.cid-v8HWVHkh46 .item:focus,
.cid-v8HWVHkh46 span:focus {
  outline: none;
}
.cid-v8HWVHkh46 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8HWVHkh46 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8HWVHkh46 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8HWVHkh46 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8HWVHkh46 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8HWVHkh46 .mbr-section-title {
  color: #232323;
}
.cid-v8HWVHkh46 .mbr-text,
.cid-v8HWVHkh46 .mbr-section-btn {
  text-align: center;
}
.cid-v8HWVHkh46 .item-title {
  text-align: center;
}
.cid-v8HWVHkh46 .item-subtitle {
  text-align: left;
}
.cid-v8Ws5V2qIO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8Ws5V2qIO img,
.cid-v8Ws5V2qIO .item-img {
  width: 100%;
}
.cid-v8Ws5V2qIO .item:focus,
.cid-v8Ws5V2qIO span:focus {
  outline: none;
}
.cid-v8Ws5V2qIO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8Ws5V2qIO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8Ws5V2qIO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8Ws5V2qIO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8Ws5V2qIO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8Ws5V2qIO .mbr-section-title {
  color: #232323;
}
.cid-v8Ws5V2qIO .mbr-text,
.cid-v8Ws5V2qIO .mbr-section-btn {
  text-align: center;
}
.cid-v8Ws5V2qIO .item-title {
  text-align: center;
}
.cid-v8Ws5V2qIO .item-subtitle {
  text-align: left;
}
.cid-v671ahVZao {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v671ahVZao img,
.cid-v671ahVZao .item-img {
  width: 100%;
}
.cid-v671ahVZao .item:focus,
.cid-v671ahVZao span:focus {
  outline: none;
}
.cid-v671ahVZao .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v671ahVZao .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v671ahVZao .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v671ahVZao .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v671ahVZao .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v671ahVZao .mbr-section-title {
  color: #232323;
}
.cid-v671ahVZao .mbr-text,
.cid-v671ahVZao .mbr-section-btn {
  text-align: center;
}
.cid-v671ahVZao .item-title {
  text-align: center;
}
.cid-v671ahVZao .item-subtitle {
  text-align: left;
}
.cid-v671sK8sok {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v671sK8sok img,
.cid-v671sK8sok .item-img {
  width: 100%;
}
.cid-v671sK8sok .item:focus,
.cid-v671sK8sok span:focus {
  outline: none;
}
.cid-v671sK8sok .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v671sK8sok .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v671sK8sok .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v671sK8sok .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v671sK8sok .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v671sK8sok .mbr-section-title {
  color: #232323;
}
.cid-v671sK8sok .mbr-text,
.cid-v671sK8sok .mbr-section-btn {
  text-align: center;
}
.cid-v671sK8sok .item-title {
  text-align: center;
}
.cid-v671sK8sok .item-subtitle {
  text-align: left;
}
.cid-v671OTiDZO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v671OTiDZO img,
.cid-v671OTiDZO .item-img {
  width: 100%;
}
.cid-v671OTiDZO .item:focus,
.cid-v671OTiDZO span:focus {
  outline: none;
}
.cid-v671OTiDZO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v671OTiDZO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v671OTiDZO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v671OTiDZO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v671OTiDZO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v671OTiDZO .mbr-section-title {
  color: #232323;
}
.cid-v671OTiDZO .mbr-text,
.cid-v671OTiDZO .mbr-section-btn {
  text-align: center;
}
.cid-v671OTiDZO .item-title {
  text-align: center;
}
.cid-v671OTiDZO .item-subtitle {
  text-align: left;
}
.cid-v673ZOW3q5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v673ZOW3q5 img,
.cid-v673ZOW3q5 .item-img {
  width: 100%;
}
.cid-v673ZOW3q5 .item:focus,
.cid-v673ZOW3q5 span:focus {
  outline: none;
}
.cid-v673ZOW3q5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v673ZOW3q5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v673ZOW3q5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v673ZOW3q5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v673ZOW3q5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v673ZOW3q5 .mbr-section-title {
  color: #232323;
}
.cid-v673ZOW3q5 .mbr-text,
.cid-v673ZOW3q5 .mbr-section-btn {
  text-align: center;
}
.cid-v673ZOW3q5 .item-title {
  text-align: center;
}
.cid-v673ZOW3q5 .item-subtitle {
  text-align: left;
}
.cid-v8wju6WgYX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v8wju6WgYX img,
.cid-v8wju6WgYX .item-img {
  width: 100%;
}
.cid-v8wju6WgYX .item:focus,
.cid-v8wju6WgYX span:focus {
  outline: none;
}
.cid-v8wju6WgYX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8wju6WgYX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8wju6WgYX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8wju6WgYX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8wju6WgYX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8wju6WgYX .mbr-section-title {
  color: #232323;
}
.cid-v8wju6WgYX .mbr-text,
.cid-v8wju6WgYX .mbr-section-btn {
  text-align: center;
}
.cid-v8wju6WgYX .item-title {
  text-align: center;
}
.cid-v8wju6WgYX .item-subtitle {
  text-align: left;
}
.cid-uVXAoYALkF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-uVXAoYALkF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXAoYALkF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVYlZAYPRy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVYlZAYPRy nav.navbar {
  position: fixed;
}
.cid-uVYlZAYPRy .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVYlZAYPRy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVYlZAYPRy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVYlZAYPRy .dropdown-item:hover,
.cid-uVYlZAYPRy .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVYlZAYPRy .dropdown-item:hover span {
  color: white;
}
.cid-uVYlZAYPRy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVYlZAYPRy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVYlZAYPRy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVYlZAYPRy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVYlZAYPRy .nav-link {
  position: relative;
}
.cid-uVYlZAYPRy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVYlZAYPRy .container {
    flex-wrap: nowrap;
  }
}
.cid-uVYlZAYPRy .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVYlZAYPRy .dropdown-menu,
.cid-uVYlZAYPRy .navbar.opened {
  background: #ffffff !important;
}
.cid-uVYlZAYPRy .nav-item:focus,
.cid-uVYlZAYPRy .nav-link:focus {
  outline: none;
}
.cid-uVYlZAYPRy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVYlZAYPRy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVYlZAYPRy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVYlZAYPRy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVYlZAYPRy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVYlZAYPRy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVYlZAYPRy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVYlZAYPRy .navbar.opened {
  transition: all 0.3s;
}
.cid-uVYlZAYPRy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVYlZAYPRy .navbar .navbar-logo img {
  width: auto;
}
.cid-uVYlZAYPRy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVYlZAYPRy .navbar.collapsed {
  justify-content: center;
}
.cid-uVYlZAYPRy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVYlZAYPRy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVYlZAYPRy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVYlZAYPRy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVYlZAYPRy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVYlZAYPRy .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVYlZAYPRy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVYlZAYPRy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVYlZAYPRy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVYlZAYPRy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVYlZAYPRy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVYlZAYPRy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVYlZAYPRy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVYlZAYPRy .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVYlZAYPRy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVYlZAYPRy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVYlZAYPRy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVYlZAYPRy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVYlZAYPRy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVYlZAYPRy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVYlZAYPRy .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVYlZAYPRy .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVYlZAYPRy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVYlZAYPRy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVYlZAYPRy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVYlZAYPRy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVYlZAYPRy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVYlZAYPRy .dropdown-item.active,
.cid-uVYlZAYPRy .dropdown-item:active {
  background-color: transparent;
}
.cid-uVYlZAYPRy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVYlZAYPRy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVYlZAYPRy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVYlZAYPRy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVYlZAYPRy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVYlZAYPRy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVYlZAYPRy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVYlZAYPRy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVYlZAYPRy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVYlZAYPRy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVYlZAYPRy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVYlZAYPRy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVYlZAYPRy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVYlZAYPRy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVYlZAYPRy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVYlZAYPRy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVYlZAYPRy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVYlZAYPRy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVYlZAYPRy .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVYlZAYPRy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVYlZAYPRy .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVYlZAYPRy .navbar {
    height: 70px;
  }
  .cid-uVYlZAYPRy .navbar.opened {
    height: auto;
  }
  .cid-uVYlZAYPRy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVYlZHugfB {
  background-image: url("../../../assets/images/laptop-3196481-1280-editado-2-1280x853.jpeg");
}
.cid-uVYlZHugfB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVYlZHugfB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVYlZHugfB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVYlZHugfB .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVYlZHugfB .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVYlZHugfB .mbr-section-title {
  color: #058046;
}
.cid-uVYlZJrLIF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uVYlZJrLIF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVYlZJrLIF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4mS4J5UZi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #c9dafb;
}
.cid-v4mS4J5UZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4mS4J5UZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8BUWuyrCx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BUWuyrCx img,
.cid-v8BUWuyrCx .item-img {
  width: 100%;
}
.cid-v8BUWuyrCx .item:focus,
.cid-v8BUWuyrCx span:focus {
  outline: none;
}
.cid-v8BUWuyrCx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BUWuyrCx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BUWuyrCx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BUWuyrCx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BUWuyrCx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BUWuyrCx .mbr-section-title {
  color: #232323;
}
.cid-v8BUWuyrCx .mbr-text,
.cid-v8BUWuyrCx .mbr-section-btn {
  text-align: center;
}
.cid-v8BUWuyrCx .item-title {
  text-align: center;
}
.cid-v8BUWuyrCx .item-subtitle {
  text-align: left;
}
.cid-v4dOMmH4Su {
  background-color: #c9dafb;
}
.cid-v4dOMmH4Su .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4dOMmH4Su .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4dOMmH4Su .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4dOMmH4Su .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-v4dOMmH4Su .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-v4dOMmH4Su .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-v4dOMmH4Su .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-v4dOMmH4Su .mbr-text,
.cid-v4dOMmH4Su .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uVXHDaIIBg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uVXHDaIIBg nav.navbar {
  position: fixed;
}
.cid-uVXHDaIIBg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXHDaIIBg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVXHDaIIBg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVXHDaIIBg .dropdown-item:hover,
.cid-uVXHDaIIBg .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-uVXHDaIIBg .dropdown-item:hover span {
  color: white;
}
.cid-uVXHDaIIBg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVXHDaIIBg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVXHDaIIBg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVXHDaIIBg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVXHDaIIBg .nav-link {
  position: relative;
}
.cid-uVXHDaIIBg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVXHDaIIBg .container {
    flex-wrap: nowrap;
  }
}
.cid-uVXHDaIIBg .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVXHDaIIBg .dropdown-menu,
.cid-uVXHDaIIBg .navbar.opened {
  background: #ffffff !important;
}
.cid-uVXHDaIIBg .nav-item:focus,
.cid-uVXHDaIIBg .nav-link:focus {
  outline: none;
}
.cid-uVXHDaIIBg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVXHDaIIBg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVXHDaIIBg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVXHDaIIBg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVXHDaIIBg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVXHDaIIBg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVXHDaIIBg .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVXHDaIIBg .navbar.opened {
  transition: all 0.3s;
}
.cid-uVXHDaIIBg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVXHDaIIBg .navbar .navbar-logo img {
  width: auto;
}
.cid-uVXHDaIIBg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVXHDaIIBg .navbar.collapsed {
  justify-content: center;
}
.cid-uVXHDaIIBg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVXHDaIIBg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVXHDaIIBg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-uVXHDaIIBg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVXHDaIIBg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVXHDaIIBg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVXHDaIIBg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVXHDaIIBg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVXHDaIIBg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVXHDaIIBg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVXHDaIIBg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVXHDaIIBg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVXHDaIIBg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVXHDaIIBg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVXHDaIIBg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVXHDaIIBg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVXHDaIIBg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVXHDaIIBg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVXHDaIIBg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVXHDaIIBg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVXHDaIIBg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVXHDaIIBg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVXHDaIIBg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVXHDaIIBg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVXHDaIIBg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVXHDaIIBg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVXHDaIIBg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVXHDaIIBg .dropdown-item.active,
.cid-uVXHDaIIBg .dropdown-item:active {
  background-color: transparent;
}
.cid-uVXHDaIIBg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVXHDaIIBg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVXHDaIIBg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVXHDaIIBg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVXHDaIIBg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVXHDaIIBg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVXHDaIIBg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVXHDaIIBg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVXHDaIIBg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVXHDaIIBg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uVXHDaIIBg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVXHDaIIBg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXHDaIIBg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVXHDaIIBg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVXHDaIIBg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXHDaIIBg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVXHDaIIBg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVXHDaIIBg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVXHDaIIBg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVXHDaIIBg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVXHDaIIBg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVXHDaIIBg .navbar {
    height: 70px;
  }
  .cid-uVXHDaIIBg .navbar.opened {
    height: auto;
  }
  .cid-uVXHDaIIBg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVXHDbBd2L {
  background-image: url("../../../assets/images/024-1600x901.jpg");
}
.cid-uVXHDbBd2L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDbBd2L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXHDbBd2L .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uVXHDbBd2L .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-uVXHDbBd2L .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-uVXHDbBd2L .mbr-section-title {
  color: #ffffff;
}
.cid-uVXHDbBd2L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVXHDd24vl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-uVXHDd24vl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDd24vl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXHDdFY1C {
  background-color: #c9dafb;
}
.cid-uVXHDdFY1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDdFY1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXHDdFY1C .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uVXHDdFY1C .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDdFY1C .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXHDdFY1C .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXHDdFY1C .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDdFY1C .mbr-section-title {
  text-align: center;
}
.cid-uVXHDdFY1C .mbr-text,
.cid-uVXHDdFY1C .mbr-section-btn {
  text-align: center;
}
.cid-uVXHDedJy2 {
  background-color: #9fdbf8;
}
.cid-uVXHDedJy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDedJy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uVXHDedJy2 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDedJy2 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXHDedJy2 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXHDedJy2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDedJy2 .mbr-section-title {
  text-align: center;
}
.cid-uVXHDedJy2 .mbr-text,
.cid-uVXHDedJy2 .mbr-section-btn {
  text-align: center;
}
.cid-uVXHDeGHdi {
  background-color: #c9dafb;
}
.cid-uVXHDeGHdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDeGHdi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVXHDeGHdi .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uVXHDeGHdi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDeGHdi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uVXHDeGHdi .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uVXHDeGHdi .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uVXHDeGHdi .mbr-section-title {
  text-align: center;
}
.cid-uVXHDeGHdi .mbr-text,
.cid-uVXHDeGHdi .mbr-section-btn {
  text-align: center;
}
.cid-v8BZY0721T {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BZY0721T img,
.cid-v8BZY0721T .item-img {
  width: 100%;
}
.cid-v8BZY0721T .item:focus,
.cid-v8BZY0721T span:focus {
  outline: none;
}
.cid-v8BZY0721T .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BZY0721T .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BZY0721T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BZY0721T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BZY0721T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BZY0721T .mbr-section-title {
  color: #232323;
}
.cid-v8BZY0721T .mbr-text,
.cid-v8BZY0721T .mbr-section-btn {
  text-align: center;
}
.cid-v8BZY0721T .item-title {
  text-align: center;
}
.cid-v8BZY0721T .item-subtitle {
  text-align: left;
}
.cid-uVXHDjzXL5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-uVXHDjzXL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVXHDjzXL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3EVMTzThQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3EVMTzThQ nav.navbar {
  position: fixed;
}
.cid-v3EVMTzThQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3EVMTzThQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3EVMTzThQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3EVMTzThQ .dropdown-item:hover,
.cid-v3EVMTzThQ .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v3EVMTzThQ .dropdown-item:hover span {
  color: white;
}
.cid-v3EVMTzThQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3EVMTzThQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3EVMTzThQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3EVMTzThQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3EVMTzThQ .nav-link {
  position: relative;
}
.cid-v3EVMTzThQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3EVMTzThQ .container {
    flex-wrap: nowrap;
  }
}
.cid-v3EVMTzThQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3EVMTzThQ .dropdown-menu,
.cid-v3EVMTzThQ .navbar.opened {
  background: #ffffff !important;
}
.cid-v3EVMTzThQ .nav-item:focus,
.cid-v3EVMTzThQ .nav-link:focus {
  outline: none;
}
.cid-v3EVMTzThQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3EVMTzThQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3EVMTzThQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3EVMTzThQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3EVMTzThQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3EVMTzThQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3EVMTzThQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3EVMTzThQ .navbar.opened {
  transition: all 0.3s;
}
.cid-v3EVMTzThQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3EVMTzThQ .navbar .navbar-logo img {
  width: auto;
}
.cid-v3EVMTzThQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3EVMTzThQ .navbar.collapsed {
  justify-content: center;
}
.cid-v3EVMTzThQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3EVMTzThQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3EVMTzThQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v3EVMTzThQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3EVMTzThQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3EVMTzThQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3EVMTzThQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3EVMTzThQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3EVMTzThQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3EVMTzThQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3EVMTzThQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3EVMTzThQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3EVMTzThQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3EVMTzThQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3EVMTzThQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3EVMTzThQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3EVMTzThQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3EVMTzThQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3EVMTzThQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3EVMTzThQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3EVMTzThQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3EVMTzThQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3EVMTzThQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3EVMTzThQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3EVMTzThQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3EVMTzThQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3EVMTzThQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3EVMTzThQ .dropdown-item.active,
.cid-v3EVMTzThQ .dropdown-item:active {
  background-color: transparent;
}
.cid-v3EVMTzThQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3EVMTzThQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3EVMTzThQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3EVMTzThQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3EVMTzThQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3EVMTzThQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3EVMTzThQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3EVMTzThQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3EVMTzThQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3EVMTzThQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3EVMTzThQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3EVMTzThQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3EVMTzThQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3EVMTzThQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3EVMTzThQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3EVMTzThQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3EVMTzThQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3EVMTzThQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3EVMTzThQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3EVMTzThQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3EVMTzThQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3EVMTzThQ .navbar {
    height: 70px;
  }
  .cid-v3EVMTzThQ .navbar.opened {
    height: auto;
  }
  .cid-v3EVMTzThQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3EVMUiLe2 {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v3EVMUiLe2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3EVMUiLe2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3EVMUiLe2 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v3EVMUiLe2 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v3EVMUiLe2 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v3EVMUiLe2 .mbr-section-title {
  color: #ffffff;
}
.cid-v3EVMZH16q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVMZH16q img,
.cid-v3EVMZH16q .item-img {
  width: 100%;
}
.cid-v3EVMZH16q .item:focus,
.cid-v3EVMZH16q span:focus {
  outline: none;
}
.cid-v3EVMZH16q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVMZH16q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVMZH16q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVMZH16q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVMZH16q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVMZH16q .mbr-section-title {
  color: #232323;
}
.cid-v3EVMZH16q .mbr-text,
.cid-v3EVMZH16q .mbr-section-btn {
  text-align: center;
}
.cid-v3EVMZH16q .item-title {
  text-align: center;
}
.cid-v3EVMZH16q .item-subtitle {
  text-align: left;
}
.cid-v3EVN0vHpl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN0vHpl img,
.cid-v3EVN0vHpl .item-img {
  width: 100%;
}
.cid-v3EVN0vHpl .item:focus,
.cid-v3EVN0vHpl span:focus {
  outline: none;
}
.cid-v3EVN0vHpl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN0vHpl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN0vHpl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN0vHpl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN0vHpl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN0vHpl .mbr-section-title {
  color: #232323;
}
.cid-v3EVN0vHpl .mbr-text,
.cid-v3EVN0vHpl .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN0vHpl .item-title {
  text-align: center;
}
.cid-v3EVN0vHpl .item-subtitle {
  text-align: left;
}
.cid-v3EVN1bumu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN1bumu img,
.cid-v3EVN1bumu .item-img {
  width: 100%;
}
.cid-v3EVN1bumu .item:focus,
.cid-v3EVN1bumu span:focus {
  outline: none;
}
.cid-v3EVN1bumu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN1bumu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN1bumu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN1bumu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN1bumu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN1bumu .mbr-section-title {
  color: #232323;
}
.cid-v3EVN1bumu .mbr-text,
.cid-v3EVN1bumu .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN1bumu .item-title {
  text-align: center;
}
.cid-v3EVN1bumu .item-subtitle {
  text-align: left;
}
.cid-v3EVN1SvDl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN1SvDl img,
.cid-v3EVN1SvDl .item-img {
  width: 100%;
}
.cid-v3EVN1SvDl .item:focus,
.cid-v3EVN1SvDl span:focus {
  outline: none;
}
.cid-v3EVN1SvDl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN1SvDl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN1SvDl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN1SvDl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN1SvDl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN1SvDl .mbr-section-title {
  color: #232323;
}
.cid-v3EVN1SvDl .mbr-text,
.cid-v3EVN1SvDl .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN1SvDl .item-title {
  text-align: center;
}
.cid-v3EVN1SvDl .item-subtitle {
  text-align: left;
}
.cid-v3EVN2D5Xr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN2D5Xr img,
.cid-v3EVN2D5Xr .item-img {
  width: 100%;
}
.cid-v3EVN2D5Xr .item:focus,
.cid-v3EVN2D5Xr span:focus {
  outline: none;
}
.cid-v3EVN2D5Xr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN2D5Xr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN2D5Xr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN2D5Xr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN2D5Xr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN2D5Xr .mbr-section-title {
  color: #232323;
}
.cid-v3EVN2D5Xr .mbr-text,
.cid-v3EVN2D5Xr .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN2D5Xr .item-title {
  text-align: center;
}
.cid-v3EVN2D5Xr .item-subtitle {
  text-align: left;
}
.cid-v3EVN3s16l {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN3s16l img,
.cid-v3EVN3s16l .item-img {
  width: 100%;
}
.cid-v3EVN3s16l .item:focus,
.cid-v3EVN3s16l span:focus {
  outline: none;
}
.cid-v3EVN3s16l .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN3s16l .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN3s16l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN3s16l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN3s16l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN3s16l .mbr-section-title {
  color: #232323;
}
.cid-v3EVN3s16l .mbr-text,
.cid-v3EVN3s16l .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN3s16l .item-title {
  text-align: center;
}
.cid-v3EVN3s16l .item-subtitle {
  text-align: left;
}
.cid-v3EVN4lMVS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EVN4lMVS img,
.cid-v3EVN4lMVS .item-img {
  width: 100%;
}
.cid-v3EVN4lMVS .item:focus,
.cid-v3EVN4lMVS span:focus {
  outline: none;
}
.cid-v3EVN4lMVS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EVN4lMVS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EVN4lMVS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EVN4lMVS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EVN4lMVS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EVN4lMVS .mbr-section-title {
  color: #232323;
}
.cid-v3EVN4lMVS .mbr-text,
.cid-v3EVN4lMVS .mbr-section-btn {
  text-align: center;
}
.cid-v3EVN4lMVS .item-title {
  text-align: center;
}
.cid-v3EVN4lMVS .item-subtitle {
  text-align: left;
}
.cid-v8BZfFT51F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BZfFT51F img,
.cid-v8BZfFT51F .item-img {
  width: 100%;
}
.cid-v8BZfFT51F .item:focus,
.cid-v8BZfFT51F span:focus {
  outline: none;
}
.cid-v8BZfFT51F .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BZfFT51F .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BZfFT51F .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BZfFT51F .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BZfFT51F .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BZfFT51F .mbr-section-title {
  color: #232323;
}
.cid-v8BZfFT51F .mbr-text,
.cid-v8BZfFT51F .mbr-section-btn {
  text-align: center;
}
.cid-v8BZfFT51F .item-title {
  text-align: center;
}
.cid-v8BZfFT51F .item-subtitle {
  text-align: left;
}
.cid-v3EVN5f78E {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v3EVN5f78E .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3EVN5f78E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3EZ8cEdKv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3EZ8cEdKv nav.navbar {
  position: fixed;
}
.cid-v3EZ8cEdKv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3EZ8cEdKv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3EZ8cEdKv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3EZ8cEdKv .dropdown-item:hover,
.cid-v3EZ8cEdKv .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v3EZ8cEdKv .dropdown-item:hover span {
  color: white;
}
.cid-v3EZ8cEdKv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3EZ8cEdKv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3EZ8cEdKv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3EZ8cEdKv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3EZ8cEdKv .nav-link {
  position: relative;
}
.cid-v3EZ8cEdKv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3EZ8cEdKv .container {
    flex-wrap: nowrap;
  }
}
.cid-v3EZ8cEdKv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3EZ8cEdKv .dropdown-menu,
.cid-v3EZ8cEdKv .navbar.opened {
  background: #ffffff !important;
}
.cid-v3EZ8cEdKv .nav-item:focus,
.cid-v3EZ8cEdKv .nav-link:focus {
  outline: none;
}
.cid-v3EZ8cEdKv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3EZ8cEdKv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3EZ8cEdKv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3EZ8cEdKv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3EZ8cEdKv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3EZ8cEdKv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3EZ8cEdKv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3EZ8cEdKv .navbar.opened {
  transition: all 0.3s;
}
.cid-v3EZ8cEdKv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3EZ8cEdKv .navbar .navbar-logo img {
  width: auto;
}
.cid-v3EZ8cEdKv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3EZ8cEdKv .navbar.collapsed {
  justify-content: center;
}
.cid-v3EZ8cEdKv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3EZ8cEdKv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3EZ8cEdKv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v3EZ8cEdKv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3EZ8cEdKv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3EZ8cEdKv .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3EZ8cEdKv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3EZ8cEdKv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3EZ8cEdKv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3EZ8cEdKv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3EZ8cEdKv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3EZ8cEdKv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3EZ8cEdKv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3EZ8cEdKv .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3EZ8cEdKv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3EZ8cEdKv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3EZ8cEdKv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3EZ8cEdKv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3EZ8cEdKv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3EZ8cEdKv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3EZ8cEdKv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3EZ8cEdKv .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3EZ8cEdKv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3EZ8cEdKv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3EZ8cEdKv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3EZ8cEdKv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3EZ8cEdKv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3EZ8cEdKv .dropdown-item.active,
.cid-v3EZ8cEdKv .dropdown-item:active {
  background-color: transparent;
}
.cid-v3EZ8cEdKv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3EZ8cEdKv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3EZ8cEdKv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3EZ8cEdKv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3EZ8cEdKv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3EZ8cEdKv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3EZ8cEdKv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3EZ8cEdKv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3EZ8cEdKv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3EZ8cEdKv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3EZ8cEdKv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3EZ8cEdKv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3EZ8cEdKv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3EZ8cEdKv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3EZ8cEdKv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3EZ8cEdKv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3EZ8cEdKv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3EZ8cEdKv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3EZ8cEdKv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3EZ8cEdKv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3EZ8cEdKv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3EZ8cEdKv .navbar {
    height: 70px;
  }
  .cid-v3EZ8cEdKv .navbar.opened {
    height: auto;
  }
  .cid-v3EZ8cEdKv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3EZ8dnMos {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v3EZ8dnMos .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3EZ8dnMos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3EZ8dnMos .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v3EZ8dnMos .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v3EZ8dnMos .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v3EZ8dnMos .mbr-section-title {
  color: #ffffff;
}
.cid-v3EZ8eg1T4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8eg1T4 img,
.cid-v3EZ8eg1T4 .item-img {
  width: 100%;
}
.cid-v3EZ8eg1T4 .item:focus,
.cid-v3EZ8eg1T4 span:focus {
  outline: none;
}
.cid-v3EZ8eg1T4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8eg1T4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8eg1T4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8eg1T4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8eg1T4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8eg1T4 .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8eg1T4 .mbr-text,
.cid-v3EZ8eg1T4 .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8eg1T4 .item-title {
  text-align: center;
}
.cid-v3EZ8eg1T4 .item-subtitle {
  text-align: left;
}
.cid-v3Gz5BOpj2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3Gz5BOpj2 img,
.cid-v3Gz5BOpj2 .item-img {
  width: 100%;
}
.cid-v3Gz5BOpj2 .item:focus,
.cid-v3Gz5BOpj2 span:focus {
  outline: none;
}
.cid-v3Gz5BOpj2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Gz5BOpj2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Gz5BOpj2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Gz5BOpj2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3Gz5BOpj2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Gz5BOpj2 .mbr-section-title {
  color: #232323;
}
.cid-v3Gz5BOpj2 .mbr-text,
.cid-v3Gz5BOpj2 .mbr-section-btn {
  text-align: center;
}
.cid-v3Gz5BOpj2 .item-title {
  text-align: center;
}
.cid-v3Gz5BOpj2 .item-subtitle {
  text-align: left;
}
.cid-v3Gi32Vgpe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3Gi32Vgpe img,
.cid-v3Gi32Vgpe .item-img {
  width: 100%;
}
.cid-v3Gi32Vgpe .item:focus,
.cid-v3Gi32Vgpe span:focus {
  outline: none;
}
.cid-v3Gi32Vgpe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3Gi32Vgpe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3Gi32Vgpe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Gi32Vgpe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3Gi32Vgpe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3Gi32Vgpe .mbr-section-title {
  color: #232323;
}
.cid-v3Gi32Vgpe .mbr-text,
.cid-v3Gi32Vgpe .mbr-section-btn {
  text-align: center;
}
.cid-v3Gi32Vgpe .item-title {
  text-align: center;
}
.cid-v3Gi32Vgpe .item-subtitle {
  text-align: left;
}
.cid-v3F1lZEa9v {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3F1lZEa9v img,
.cid-v3F1lZEa9v .item-img {
  width: 100%;
}
.cid-v3F1lZEa9v .item:focus,
.cid-v3F1lZEa9v span:focus {
  outline: none;
}
.cid-v3F1lZEa9v .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3F1lZEa9v .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3F1lZEa9v .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3F1lZEa9v .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3F1lZEa9v .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3F1lZEa9v .mbr-section-title {
  color: #232323;
}
.cid-v3F1lZEa9v .mbr-text,
.cid-v3F1lZEa9v .mbr-section-btn {
  text-align: center;
}
.cid-v3F1lZEa9v .item-title {
  text-align: center;
}
.cid-v3F1lZEa9v .item-subtitle {
  text-align: left;
}
.cid-v3EZ8eWeXo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8eWeXo img,
.cid-v3EZ8eWeXo .item-img {
  width: 100%;
}
.cid-v3EZ8eWeXo .item:focus,
.cid-v3EZ8eWeXo span:focus {
  outline: none;
}
.cid-v3EZ8eWeXo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8eWeXo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8eWeXo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8eWeXo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8eWeXo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8eWeXo .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8eWeXo .mbr-text,
.cid-v3EZ8eWeXo .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8eWeXo .item-title {
  text-align: center;
}
.cid-v3EZ8eWeXo .item-subtitle {
  text-align: left;
}
.cid-v3EZ8fGedt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8fGedt img,
.cid-v3EZ8fGedt .item-img {
  width: 100%;
}
.cid-v3EZ8fGedt .item:focus,
.cid-v3EZ8fGedt span:focus {
  outline: none;
}
.cid-v3EZ8fGedt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8fGedt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8fGedt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8fGedt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8fGedt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8fGedt .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8fGedt .mbr-text,
.cid-v3EZ8fGedt .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8fGedt .item-title {
  text-align: center;
}
.cid-v3EZ8fGedt .item-subtitle {
  text-align: left;
}
.cid-v3EZ8gqLnX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8gqLnX img,
.cid-v3EZ8gqLnX .item-img {
  width: 100%;
}
.cid-v3EZ8gqLnX .item:focus,
.cid-v3EZ8gqLnX span:focus {
  outline: none;
}
.cid-v3EZ8gqLnX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8gqLnX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8gqLnX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8gqLnX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8gqLnX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8gqLnX .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8gqLnX .mbr-text,
.cid-v3EZ8gqLnX .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8gqLnX .item-title {
  text-align: center;
}
.cid-v3EZ8gqLnX .item-subtitle {
  text-align: left;
}
.cid-v3EZ8h6HoV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8h6HoV img,
.cid-v3EZ8h6HoV .item-img {
  width: 100%;
}
.cid-v3EZ8h6HoV .item:focus,
.cid-v3EZ8h6HoV span:focus {
  outline: none;
}
.cid-v3EZ8h6HoV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8h6HoV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8h6HoV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8h6HoV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8h6HoV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8h6HoV .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8h6HoV .mbr-text,
.cid-v3EZ8h6HoV .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8h6HoV .item-title {
  text-align: center;
}
.cid-v3EZ8h6HoV .item-subtitle {
  text-align: left;
}
.cid-v3EZ8hLMkk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8hLMkk img,
.cid-v3EZ8hLMkk .item-img {
  width: 100%;
}
.cid-v3EZ8hLMkk .item:focus,
.cid-v3EZ8hLMkk span:focus {
  outline: none;
}
.cid-v3EZ8hLMkk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8hLMkk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8hLMkk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8hLMkk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8hLMkk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8hLMkk .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8hLMkk .mbr-text,
.cid-v3EZ8hLMkk .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8hLMkk .item-title {
  text-align: center;
}
.cid-v3EZ8hLMkk .item-subtitle {
  text-align: left;
}
.cid-v3EZ8itQyW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3EZ8itQyW img,
.cid-v3EZ8itQyW .item-img {
  width: 100%;
}
.cid-v3EZ8itQyW .item:focus,
.cid-v3EZ8itQyW span:focus {
  outline: none;
}
.cid-v3EZ8itQyW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3EZ8itQyW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3EZ8itQyW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3EZ8itQyW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3EZ8itQyW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3EZ8itQyW .mbr-section-title {
  color: #232323;
}
.cid-v3EZ8itQyW .mbr-text,
.cid-v3EZ8itQyW .mbr-section-btn {
  text-align: center;
}
.cid-v3EZ8itQyW .item-title {
  text-align: center;
}
.cid-v3EZ8itQyW .item-subtitle {
  text-align: left;
}
.cid-v8BXyaIz2X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BXyaIz2X img,
.cid-v8BXyaIz2X .item-img {
  width: 100%;
}
.cid-v8BXyaIz2X .item:focus,
.cid-v8BXyaIz2X span:focus {
  outline: none;
}
.cid-v8BXyaIz2X .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BXyaIz2X .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BXyaIz2X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BXyaIz2X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BXyaIz2X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BXyaIz2X .mbr-section-title {
  color: #232323;
}
.cid-v8BXyaIz2X .mbr-text,
.cid-v8BXyaIz2X .mbr-section-btn {
  text-align: center;
}
.cid-v8BXyaIz2X .item-title {
  text-align: center;
}
.cid-v8BXyaIz2X .item-subtitle {
  text-align: left;
}
.cid-v3EZ8pBKdB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v3EZ8pBKdB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3EZ8pBKdB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SmsyL0wt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v3SmsyL0wt nav.navbar {
  position: fixed;
}
.cid-v3SmsyL0wt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3SmsyL0wt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v3SmsyL0wt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v3SmsyL0wt .dropdown-item:hover,
.cid-v3SmsyL0wt .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v3SmsyL0wt .dropdown-item:hover span {
  color: white;
}
.cid-v3SmsyL0wt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v3SmsyL0wt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v3SmsyL0wt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v3SmsyL0wt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v3SmsyL0wt .nav-link {
  position: relative;
}
.cid-v3SmsyL0wt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v3SmsyL0wt .container {
    flex-wrap: nowrap;
  }
}
.cid-v3SmsyL0wt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v3SmsyL0wt .dropdown-menu,
.cid-v3SmsyL0wt .navbar.opened {
  background: #ffffff !important;
}
.cid-v3SmsyL0wt .nav-item:focus,
.cid-v3SmsyL0wt .nav-link:focus {
  outline: none;
}
.cid-v3SmsyL0wt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v3SmsyL0wt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v3SmsyL0wt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v3SmsyL0wt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v3SmsyL0wt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v3SmsyL0wt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v3SmsyL0wt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v3SmsyL0wt .navbar.opened {
  transition: all 0.3s;
}
.cid-v3SmsyL0wt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v3SmsyL0wt .navbar .navbar-logo img {
  width: auto;
}
.cid-v3SmsyL0wt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v3SmsyL0wt .navbar.collapsed {
  justify-content: center;
}
.cid-v3SmsyL0wt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v3SmsyL0wt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v3SmsyL0wt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v3SmsyL0wt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v3SmsyL0wt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v3SmsyL0wt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v3SmsyL0wt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v3SmsyL0wt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v3SmsyL0wt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v3SmsyL0wt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v3SmsyL0wt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v3SmsyL0wt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v3SmsyL0wt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v3SmsyL0wt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v3SmsyL0wt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v3SmsyL0wt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v3SmsyL0wt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v3SmsyL0wt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v3SmsyL0wt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v3SmsyL0wt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v3SmsyL0wt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v3SmsyL0wt .navbar.navbar-short {
  min-height: 60px;
}
.cid-v3SmsyL0wt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v3SmsyL0wt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v3SmsyL0wt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v3SmsyL0wt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v3SmsyL0wt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v3SmsyL0wt .dropdown-item.active,
.cid-v3SmsyL0wt .dropdown-item:active {
  background-color: transparent;
}
.cid-v3SmsyL0wt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v3SmsyL0wt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v3SmsyL0wt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v3SmsyL0wt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v3SmsyL0wt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v3SmsyL0wt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v3SmsyL0wt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v3SmsyL0wt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v3SmsyL0wt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v3SmsyL0wt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v3SmsyL0wt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v3SmsyL0wt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3SmsyL0wt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v3SmsyL0wt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v3SmsyL0wt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3SmsyL0wt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v3SmsyL0wt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v3SmsyL0wt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v3SmsyL0wt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v3SmsyL0wt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v3SmsyL0wt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v3SmsyL0wt .navbar {
    height: 70px;
  }
  .cid-v3SmsyL0wt .navbar.opened {
    height: auto;
  }
  .cid-v3SmsyL0wt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3SmsCqtes {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v3SmsCqtes .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SmsCqtes .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3SmsCqtes .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v3SmsCqtes .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v3SmsCqtes .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v3SmsCqtes .mbr-section-title {
  color: #ffffff;
}
.cid-v3SmsDNgfK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3SmsDNgfK img,
.cid-v3SmsDNgfK .item-img {
  width: 100%;
}
.cid-v3SmsDNgfK .item:focus,
.cid-v3SmsDNgfK span:focus {
  outline: none;
}
.cid-v3SmsDNgfK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SmsDNgfK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SmsDNgfK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SmsDNgfK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3SmsDNgfK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SmsDNgfK .mbr-section-title {
  color: #232323;
}
.cid-v3SmsDNgfK .mbr-text,
.cid-v3SmsDNgfK .mbr-section-btn {
  text-align: center;
}
.cid-v3SmsDNgfK .item-title {
  text-align: center;
}
.cid-v3SmsDNgfK .item-subtitle {
  text-align: left;
}
.cid-v4b36880fY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4b36880fY img,
.cid-v4b36880fY .item-img {
  width: 100%;
}
.cid-v4b36880fY .item:focus,
.cid-v4b36880fY span:focus {
  outline: none;
}
.cid-v4b36880fY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4b36880fY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4b36880fY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4b36880fY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4b36880fY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4b36880fY .mbr-section-title {
  color: #232323;
}
.cid-v4b36880fY .mbr-text,
.cid-v4b36880fY .mbr-section-btn {
  text-align: center;
}
.cid-v4b36880fY .item-title {
  text-align: center;
}
.cid-v4b36880fY .item-subtitle {
  text-align: left;
}
.cid-v4aZfdJbN0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4aZfdJbN0 img,
.cid-v4aZfdJbN0 .item-img {
  width: 100%;
}
.cid-v4aZfdJbN0 .item:focus,
.cid-v4aZfdJbN0 span:focus {
  outline: none;
}
.cid-v4aZfdJbN0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4aZfdJbN0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4aZfdJbN0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4aZfdJbN0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4aZfdJbN0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4aZfdJbN0 .mbr-section-title {
  color: #232323;
}
.cid-v4aZfdJbN0 .mbr-text,
.cid-v4aZfdJbN0 .mbr-section-btn {
  text-align: center;
}
.cid-v4aZfdJbN0 .item-title {
  text-align: center;
}
.cid-v4aZfdJbN0 .item-subtitle {
  text-align: left;
}
.cid-v4a3DnrtyY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4a3DnrtyY img,
.cid-v4a3DnrtyY .item-img {
  width: 100%;
}
.cid-v4a3DnrtyY .item:focus,
.cid-v4a3DnrtyY span:focus {
  outline: none;
}
.cid-v4a3DnrtyY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4a3DnrtyY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4a3DnrtyY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4a3DnrtyY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4a3DnrtyY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4a3DnrtyY .mbr-section-title {
  color: #232323;
}
.cid-v4a3DnrtyY .mbr-text,
.cid-v4a3DnrtyY .mbr-section-btn {
  text-align: center;
}
.cid-v4a3DnrtyY .item-title {
  text-align: center;
}
.cid-v4a3DnrtyY .item-subtitle {
  text-align: left;
}
.cid-v4a0wigeCQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4a0wigeCQ img,
.cid-v4a0wigeCQ .item-img {
  width: 100%;
}
.cid-v4a0wigeCQ .item:focus,
.cid-v4a0wigeCQ span:focus {
  outline: none;
}
.cid-v4a0wigeCQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4a0wigeCQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4a0wigeCQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4a0wigeCQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4a0wigeCQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4a0wigeCQ .mbr-section-title {
  color: #232323;
}
.cid-v4a0wigeCQ .mbr-text,
.cid-v4a0wigeCQ .mbr-section-btn {
  text-align: center;
}
.cid-v4a0wigeCQ .item-title {
  text-align: center;
}
.cid-v4a0wigeCQ .item-subtitle {
  text-align: left;
}
.cid-v49TYzI3Wk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v49TYzI3Wk img,
.cid-v49TYzI3Wk .item-img {
  width: 100%;
}
.cid-v49TYzI3Wk .item:focus,
.cid-v49TYzI3Wk span:focus {
  outline: none;
}
.cid-v49TYzI3Wk .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49TYzI3Wk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49TYzI3Wk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49TYzI3Wk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v49TYzI3Wk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49TYzI3Wk .mbr-section-title {
  color: #232323;
}
.cid-v49TYzI3Wk .mbr-text,
.cid-v49TYzI3Wk .mbr-section-btn {
  text-align: center;
}
.cid-v49TYzI3Wk .item-title {
  text-align: center;
}
.cid-v49TYzI3Wk .item-subtitle {
  text-align: left;
}
.cid-v49LC0DcsF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v49LC0DcsF img,
.cid-v49LC0DcsF .item-img {
  width: 100%;
}
.cid-v49LC0DcsF .item:focus,
.cid-v49LC0DcsF span:focus {
  outline: none;
}
.cid-v49LC0DcsF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49LC0DcsF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49LC0DcsF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49LC0DcsF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v49LC0DcsF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49LC0DcsF .mbr-section-title {
  color: #232323;
}
.cid-v49LC0DcsF .mbr-text,
.cid-v49LC0DcsF .mbr-section-btn {
  text-align: center;
}
.cid-v49LC0DcsF .item-title {
  text-align: center;
}
.cid-v49LC0DcsF .item-subtitle {
  text-align: left;
}
.cid-v49DCWXgBD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v49DCWXgBD img,
.cid-v49DCWXgBD .item-img {
  width: 100%;
}
.cid-v49DCWXgBD .item:focus,
.cid-v49DCWXgBD span:focus {
  outline: none;
}
.cid-v49DCWXgBD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49DCWXgBD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49DCWXgBD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49DCWXgBD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v49DCWXgBD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49DCWXgBD .mbr-section-title {
  color: #232323;
}
.cid-v49DCWXgBD .mbr-text,
.cid-v49DCWXgBD .mbr-section-btn {
  text-align: center;
}
.cid-v49DCWXgBD .item-title {
  text-align: center;
}
.cid-v49DCWXgBD .item-subtitle {
  text-align: left;
}
.cid-v49ylEyZ6G {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v49ylEyZ6G img,
.cid-v49ylEyZ6G .item-img {
  width: 100%;
}
.cid-v49ylEyZ6G .item:focus,
.cid-v49ylEyZ6G span:focus {
  outline: none;
}
.cid-v49ylEyZ6G .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v49ylEyZ6G .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v49ylEyZ6G .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v49ylEyZ6G .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v49ylEyZ6G .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v49ylEyZ6G .mbr-section-title {
  color: #232323;
}
.cid-v49ylEyZ6G .mbr-text,
.cid-v49ylEyZ6G .mbr-section-btn {
  text-align: center;
}
.cid-v49ylEyZ6G .item-title {
  text-align: center;
}
.cid-v49ylEyZ6G .item-subtitle {
  text-align: left;
}
.cid-v48u08Jvdc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v48u08Jvdc img,
.cid-v48u08Jvdc .item-img {
  width: 100%;
}
.cid-v48u08Jvdc .item:focus,
.cid-v48u08Jvdc span:focus {
  outline: none;
}
.cid-v48u08Jvdc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v48u08Jvdc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v48u08Jvdc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v48u08Jvdc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v48u08Jvdc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v48u08Jvdc .mbr-section-title {
  color: #232323;
}
.cid-v48u08Jvdc .mbr-text,
.cid-v48u08Jvdc .mbr-section-btn {
  text-align: center;
}
.cid-v48u08Jvdc .item-title {
  text-align: center;
}
.cid-v48u08Jvdc .item-subtitle {
  text-align: left;
}
.cid-v3SvMzmGAa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3SvMzmGAa img,
.cid-v3SvMzmGAa .item-img {
  width: 100%;
}
.cid-v3SvMzmGAa .item:focus,
.cid-v3SvMzmGAa span:focus {
  outline: none;
}
.cid-v3SvMzmGAa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SvMzmGAa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SvMzmGAa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SvMzmGAa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3SvMzmGAa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SvMzmGAa .mbr-section-title {
  color: #232323;
}
.cid-v3SvMzmGAa .mbr-text,
.cid-v3SvMzmGAa .mbr-section-btn {
  text-align: center;
}
.cid-v3SvMzmGAa .item-title {
  text-align: center;
}
.cid-v3SvMzmGAa .item-subtitle {
  text-align: left;
}
.cid-v3SrUMuKGd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v3SrUMuKGd img,
.cid-v3SrUMuKGd .item-img {
  width: 100%;
}
.cid-v3SrUMuKGd .item:focus,
.cid-v3SrUMuKGd span:focus {
  outline: none;
}
.cid-v3SrUMuKGd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v3SrUMuKGd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v3SrUMuKGd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3SrUMuKGd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v3SrUMuKGd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v3SrUMuKGd .mbr-section-title {
  color: #232323;
}
.cid-v3SrUMuKGd .mbr-text,
.cid-v3SrUMuKGd .mbr-section-btn {
  text-align: center;
}
.cid-v3SrUMuKGd .item-title {
  text-align: center;
}
.cid-v3SrUMuKGd .item-subtitle {
  text-align: left;
}
.cid-v8BXWqYanL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BXWqYanL img,
.cid-v8BXWqYanL .item-img {
  width: 100%;
}
.cid-v8BXWqYanL .item:focus,
.cid-v8BXWqYanL span:focus {
  outline: none;
}
.cid-v8BXWqYanL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BXWqYanL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BXWqYanL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BXWqYanL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BXWqYanL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BXWqYanL .mbr-section-title {
  color: #232323;
}
.cid-v8BXWqYanL .mbr-text,
.cid-v8BXWqYanL .mbr-section-btn {
  text-align: center;
}
.cid-v8BXWqYanL .item-title {
  text-align: center;
}
.cid-v8BXWqYanL .item-subtitle {
  text-align: left;
}
.cid-v3SmsN2elY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v3SmsN2elY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3SmsN2elY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4lIkpy6Pf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4lIkpy6Pf nav.navbar {
  position: fixed;
}
.cid-v4lIkpy6Pf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4lIkpy6Pf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4lIkpy6Pf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4lIkpy6Pf .dropdown-item:hover,
.cid-v4lIkpy6Pf .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v4lIkpy6Pf .dropdown-item:hover span {
  color: white;
}
.cid-v4lIkpy6Pf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4lIkpy6Pf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4lIkpy6Pf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4lIkpy6Pf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4lIkpy6Pf .nav-link {
  position: relative;
}
.cid-v4lIkpy6Pf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v4lIkpy6Pf .container {
    flex-wrap: nowrap;
  }
}
.cid-v4lIkpy6Pf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4lIkpy6Pf .dropdown-menu,
.cid-v4lIkpy6Pf .navbar.opened {
  background: #ffffff !important;
}
.cid-v4lIkpy6Pf .nav-item:focus,
.cid-v4lIkpy6Pf .nav-link:focus {
  outline: none;
}
.cid-v4lIkpy6Pf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4lIkpy6Pf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4lIkpy6Pf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4lIkpy6Pf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4lIkpy6Pf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4lIkpy6Pf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4lIkpy6Pf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v4lIkpy6Pf .navbar.opened {
  transition: all 0.3s;
}
.cid-v4lIkpy6Pf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4lIkpy6Pf .navbar .navbar-logo img {
  width: auto;
}
.cid-v4lIkpy6Pf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4lIkpy6Pf .navbar.collapsed {
  justify-content: center;
}
.cid-v4lIkpy6Pf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4lIkpy6Pf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4lIkpy6Pf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v4lIkpy6Pf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4lIkpy6Pf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4lIkpy6Pf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v4lIkpy6Pf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4lIkpy6Pf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4lIkpy6Pf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4lIkpy6Pf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4lIkpy6Pf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4lIkpy6Pf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4lIkpy6Pf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4lIkpy6Pf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v4lIkpy6Pf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4lIkpy6Pf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4lIkpy6Pf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4lIkpy6Pf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4lIkpy6Pf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4lIkpy6Pf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v4lIkpy6Pf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v4lIkpy6Pf .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4lIkpy6Pf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4lIkpy6Pf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4lIkpy6Pf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4lIkpy6Pf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4lIkpy6Pf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4lIkpy6Pf .dropdown-item.active,
.cid-v4lIkpy6Pf .dropdown-item:active {
  background-color: transparent;
}
.cid-v4lIkpy6Pf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4lIkpy6Pf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4lIkpy6Pf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4lIkpy6Pf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4lIkpy6Pf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4lIkpy6Pf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4lIkpy6Pf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4lIkpy6Pf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4lIkpy6Pf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4lIkpy6Pf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v4lIkpy6Pf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4lIkpy6Pf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4lIkpy6Pf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4lIkpy6Pf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4lIkpy6Pf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4lIkpy6Pf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4lIkpy6Pf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4lIkpy6Pf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4lIkpy6Pf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4lIkpy6Pf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4lIkpy6Pf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4lIkpy6Pf .navbar {
    height: 70px;
  }
  .cid-v4lIkpy6Pf .navbar.opened {
    height: auto;
  }
  .cid-v4lIkpy6Pf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4lIkrOq7x {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v4lIkrOq7x .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4lIkrOq7x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4lIkrOq7x .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v4lIkrOq7x .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v4lIkrOq7x .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v4lIkrOq7x .mbr-section-title {
  color: #ffffff;
}
.cid-v4K9sMB6bn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4K9sMB6bn img,
.cid-v4K9sMB6bn .item-img {
  width: 100%;
}
.cid-v4K9sMB6bn .item:focus,
.cid-v4K9sMB6bn span:focus {
  outline: none;
}
.cid-v4K9sMB6bn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4K9sMB6bn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4K9sMB6bn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4K9sMB6bn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4K9sMB6bn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4K9sMB6bn .mbr-section-title {
  color: #232323;
}
.cid-v4K9sMB6bn .mbr-text,
.cid-v4K9sMB6bn .mbr-section-btn {
  text-align: center;
}
.cid-v4K9sMB6bn .item-title {
  text-align: center;
}
.cid-v4K9sMB6bn .item-subtitle {
  text-align: left;
}
.cid-v4lIkQtUEA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4lIkQtUEA img,
.cid-v4lIkQtUEA .item-img {
  width: 100%;
}
.cid-v4lIkQtUEA .item:focus,
.cid-v4lIkQtUEA span:focus {
  outline: none;
}
.cid-v4lIkQtUEA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4lIkQtUEA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4lIkQtUEA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4lIkQtUEA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4lIkQtUEA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4lIkQtUEA .mbr-section-title {
  color: #232323;
}
.cid-v4lIkQtUEA .mbr-text,
.cid-v4lIkQtUEA .mbr-section-btn {
  text-align: center;
}
.cid-v4lIkQtUEA .item-title {
  text-align: center;
}
.cid-v4lIkQtUEA .item-subtitle {
  text-align: left;
}
.cid-v4Jh5pZWZH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4Jh5pZWZH img,
.cid-v4Jh5pZWZH .item-img {
  width: 100%;
}
.cid-v4Jh5pZWZH .item:focus,
.cid-v4Jh5pZWZH span:focus {
  outline: none;
}
.cid-v4Jh5pZWZH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4Jh5pZWZH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4Jh5pZWZH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4Jh5pZWZH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4Jh5pZWZH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4Jh5pZWZH .mbr-section-title {
  color: #232323;
}
.cid-v4Jh5pZWZH .mbr-text,
.cid-v4Jh5pZWZH .mbr-section-btn {
  text-align: center;
}
.cid-v4Jh5pZWZH .item-title {
  text-align: center;
}
.cid-v4Jh5pZWZH .item-subtitle {
  text-align: left;
}
.cid-v4J9Ui6Yv6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4J9Ui6Yv6 img,
.cid-v4J9Ui6Yv6 .item-img {
  width: 100%;
}
.cid-v4J9Ui6Yv6 .item:focus,
.cid-v4J9Ui6Yv6 span:focus {
  outline: none;
}
.cid-v4J9Ui6Yv6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4J9Ui6Yv6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4J9Ui6Yv6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4J9Ui6Yv6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4J9Ui6Yv6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4J9Ui6Yv6 .mbr-section-title {
  color: #232323;
}
.cid-v4J9Ui6Yv6 .mbr-text,
.cid-v4J9Ui6Yv6 .mbr-section-btn {
  text-align: center;
}
.cid-v4J9Ui6Yv6 .item-title {
  text-align: center;
}
.cid-v4J9Ui6Yv6 .item-subtitle {
  text-align: left;
}
.cid-v5JIS5zMCd {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v5JIS5zMCd img,
.cid-v5JIS5zMCd .item-img {
  width: 100%;
}
.cid-v5JIS5zMCd .item:focus,
.cid-v5JIS5zMCd span:focus {
  outline: none;
}
.cid-v5JIS5zMCd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5JIS5zMCd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5JIS5zMCd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5JIS5zMCd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5JIS5zMCd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5JIS5zMCd .mbr-section-title {
  color: #232323;
}
.cid-v5JIS5zMCd .mbr-text,
.cid-v5JIS5zMCd .mbr-section-btn {
  text-align: center;
}
.cid-v5JIS5zMCd .item-title {
  text-align: center;
}
.cid-v5JIS5zMCd .item-subtitle {
  text-align: left;
}
.cid-v4J6sQkibG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4J6sQkibG img,
.cid-v4J6sQkibG .item-img {
  width: 100%;
}
.cid-v4J6sQkibG .item:focus,
.cid-v4J6sQkibG span:focus {
  outline: none;
}
.cid-v4J6sQkibG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4J6sQkibG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4J6sQkibG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4J6sQkibG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4J6sQkibG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4J6sQkibG .mbr-section-title {
  color: #232323;
}
.cid-v4J6sQkibG .mbr-text,
.cid-v4J6sQkibG .mbr-section-btn {
  text-align: center;
}
.cid-v4J6sQkibG .item-title {
  text-align: center;
}
.cid-v4J6sQkibG .item-subtitle {
  text-align: left;
}
.cid-v5JArMOBod {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v5JArMOBod img,
.cid-v5JArMOBod .item-img {
  width: 100%;
}
.cid-v5JArMOBod .item:focus,
.cid-v5JArMOBod span:focus {
  outline: none;
}
.cid-v5JArMOBod .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5JArMOBod .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5JArMOBod .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5JArMOBod .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5JArMOBod .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5JArMOBod .mbr-section-title {
  color: #232323;
}
.cid-v5JArMOBod .mbr-text,
.cid-v5JArMOBod .mbr-section-btn {
  text-align: center;
}
.cid-v5JArMOBod .item-title {
  text-align: center;
}
.cid-v5JArMOBod .item-subtitle {
  text-align: left;
}
.cid-v4mLdH1Gh8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4mLdH1Gh8 img,
.cid-v4mLdH1Gh8 .item-img {
  width: 100%;
}
.cid-v4mLdH1Gh8 .item:focus,
.cid-v4mLdH1Gh8 span:focus {
  outline: none;
}
.cid-v4mLdH1Gh8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4mLdH1Gh8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4mLdH1Gh8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4mLdH1Gh8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4mLdH1Gh8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4mLdH1Gh8 .mbr-section-title {
  color: #232323;
}
.cid-v4mLdH1Gh8 .mbr-text,
.cid-v4mLdH1Gh8 .mbr-section-btn {
  text-align: center;
}
.cid-v4mLdH1Gh8 .item-title {
  text-align: center;
}
.cid-v4mLdH1Gh8 .item-subtitle {
  text-align: left;
}
.cid-v4mIfbdwaY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4mIfbdwaY img,
.cid-v4mIfbdwaY .item-img {
  width: 100%;
}
.cid-v4mIfbdwaY .item:focus,
.cid-v4mIfbdwaY span:focus {
  outline: none;
}
.cid-v4mIfbdwaY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4mIfbdwaY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4mIfbdwaY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4mIfbdwaY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4mIfbdwaY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4mIfbdwaY .mbr-section-title {
  color: #232323;
}
.cid-v4mIfbdwaY .mbr-text,
.cid-v4mIfbdwaY .mbr-section-btn {
  text-align: center;
}
.cid-v4mIfbdwaY .item-title {
  text-align: center;
}
.cid-v4mIfbdwaY .item-subtitle {
  text-align: left;
}
.cid-v4mEP0RTBa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4mEP0RTBa img,
.cid-v4mEP0RTBa .item-img {
  width: 100%;
}
.cid-v4mEP0RTBa .item:focus,
.cid-v4mEP0RTBa span:focus {
  outline: none;
}
.cid-v4mEP0RTBa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4mEP0RTBa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4mEP0RTBa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4mEP0RTBa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4mEP0RTBa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4mEP0RTBa .mbr-section-title {
  color: #232323;
}
.cid-v4mEP0RTBa .mbr-text,
.cid-v4mEP0RTBa .mbr-section-btn {
  text-align: center;
}
.cid-v4mEP0RTBa .item-title {
  text-align: center;
}
.cid-v4mEP0RTBa .item-subtitle {
  text-align: left;
}
.cid-v4lRhdn8xl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4lRhdn8xl img,
.cid-v4lRhdn8xl .item-img {
  width: 100%;
}
.cid-v4lRhdn8xl .item:focus,
.cid-v4lRhdn8xl span:focus {
  outline: none;
}
.cid-v4lRhdn8xl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4lRhdn8xl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4lRhdn8xl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4lRhdn8xl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4lRhdn8xl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4lRhdn8xl .mbr-section-title {
  color: #232323;
}
.cid-v4lRhdn8xl .mbr-text,
.cid-v4lRhdn8xl .mbr-section-btn {
  text-align: center;
}
.cid-v4lRhdn8xl .item-title {
  text-align: center;
}
.cid-v4lRhdn8xl .item-subtitle {
  text-align: left;
}
.cid-v8BYkdA4gr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BYkdA4gr img,
.cid-v8BYkdA4gr .item-img {
  width: 100%;
}
.cid-v8BYkdA4gr .item:focus,
.cid-v8BYkdA4gr span:focus {
  outline: none;
}
.cid-v8BYkdA4gr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BYkdA4gr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BYkdA4gr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BYkdA4gr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BYkdA4gr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BYkdA4gr .mbr-section-title {
  color: #232323;
}
.cid-v8BYkdA4gr .mbr-text,
.cid-v8BYkdA4gr .mbr-section-btn {
  text-align: center;
}
.cid-v8BYkdA4gr .item-title {
  text-align: center;
}
.cid-v8BYkdA4gr .item-subtitle {
  text-align: left;
}
.cid-v4lIkSo2wH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v4lIkSo2wH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4lIkSo2wH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Ozqw7avf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v4Ozqw7avf nav.navbar {
  position: fixed;
}
.cid-v4Ozqw7avf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4Ozqw7avf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4Ozqw7avf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v4Ozqw7avf .dropdown-item:hover,
.cid-v4Ozqw7avf .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v4Ozqw7avf .dropdown-item:hover span {
  color: white;
}
.cid-v4Ozqw7avf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v4Ozqw7avf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v4Ozqw7avf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v4Ozqw7avf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v4Ozqw7avf .nav-link {
  position: relative;
}
.cid-v4Ozqw7avf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v4Ozqw7avf .container {
    flex-wrap: nowrap;
  }
}
.cid-v4Ozqw7avf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v4Ozqw7avf .dropdown-menu,
.cid-v4Ozqw7avf .navbar.opened {
  background: #ffffff !important;
}
.cid-v4Ozqw7avf .nav-item:focus,
.cid-v4Ozqw7avf .nav-link:focus {
  outline: none;
}
.cid-v4Ozqw7avf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v4Ozqw7avf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v4Ozqw7avf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v4Ozqw7avf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v4Ozqw7avf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v4Ozqw7avf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v4Ozqw7avf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v4Ozqw7avf .navbar.opened {
  transition: all 0.3s;
}
.cid-v4Ozqw7avf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v4Ozqw7avf .navbar .navbar-logo img {
  width: auto;
}
.cid-v4Ozqw7avf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v4Ozqw7avf .navbar.collapsed {
  justify-content: center;
}
.cid-v4Ozqw7avf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v4Ozqw7avf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v4Ozqw7avf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v4Ozqw7avf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v4Ozqw7avf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v4Ozqw7avf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v4Ozqw7avf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v4Ozqw7avf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v4Ozqw7avf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v4Ozqw7avf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v4Ozqw7avf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v4Ozqw7avf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v4Ozqw7avf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v4Ozqw7avf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v4Ozqw7avf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v4Ozqw7avf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v4Ozqw7avf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v4Ozqw7avf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v4Ozqw7avf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v4Ozqw7avf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v4Ozqw7avf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v4Ozqw7avf .navbar.navbar-short {
  min-height: 60px;
}
.cid-v4Ozqw7avf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v4Ozqw7avf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v4Ozqw7avf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v4Ozqw7avf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v4Ozqw7avf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v4Ozqw7avf .dropdown-item.active,
.cid-v4Ozqw7avf .dropdown-item:active {
  background-color: transparent;
}
.cid-v4Ozqw7avf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v4Ozqw7avf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v4Ozqw7avf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v4Ozqw7avf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v4Ozqw7avf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v4Ozqw7avf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v4Ozqw7avf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v4Ozqw7avf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v4Ozqw7avf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v4Ozqw7avf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v4Ozqw7avf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v4Ozqw7avf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4Ozqw7avf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v4Ozqw7avf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v4Ozqw7avf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4Ozqw7avf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v4Ozqw7avf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v4Ozqw7avf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v4Ozqw7avf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v4Ozqw7avf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v4Ozqw7avf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v4Ozqw7avf .navbar {
    height: 70px;
  }
  .cid-v4Ozqw7avf .navbar.opened {
    height: auto;
  }
  .cid-v4Ozqw7avf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v4OzqxfDmm {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v4OzqxfDmm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4OzqxfDmm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4OzqxfDmm .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v4OzqxfDmm .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v4OzqxfDmm .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v4OzqxfDmm .mbr-section-title {
  color: #ffffff;
}
.cid-v4OzqxXzSz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v4OzqxXzSz img,
.cid-v4OzqxXzSz .item-img {
  width: 100%;
}
.cid-v4OzqxXzSz .item:focus,
.cid-v4OzqxXzSz span:focus {
  outline: none;
}
.cid-v4OzqxXzSz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v4OzqxXzSz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v4OzqxXzSz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4OzqxXzSz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v4OzqxXzSz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v4OzqxXzSz .mbr-section-title {
  color: #232323;
}
.cid-v4OzqxXzSz .mbr-text,
.cid-v4OzqxXzSz .mbr-section-btn {
  text-align: center;
}
.cid-v4OzqxXzSz .item-title {
  text-align: center;
}
.cid-v4OzqxXzSz .item-subtitle {
  text-align: left;
}
.cid-v5YtOAZ07E {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v5YtOAZ07E img,
.cid-v5YtOAZ07E .item-img {
  width: 100%;
}
.cid-v5YtOAZ07E .item:focus,
.cid-v5YtOAZ07E span:focus {
  outline: none;
}
.cid-v5YtOAZ07E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5YtOAZ07E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5YtOAZ07E .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5YtOAZ07E .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5YtOAZ07E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5YtOAZ07E .mbr-section-title {
  color: #232323;
}
.cid-v5YtOAZ07E .mbr-text,
.cid-v5YtOAZ07E .mbr-section-btn {
  text-align: center;
}
.cid-v5YtOAZ07E .item-title {
  text-align: center;
}
.cid-v5YtOAZ07E .item-subtitle {
  text-align: left;
}
.cid-v5LHA7T76Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v5LHA7T76Q img,
.cid-v5LHA7T76Q .item-img {
  width: 100%;
}
.cid-v5LHA7T76Q .item:focus,
.cid-v5LHA7T76Q span:focus {
  outline: none;
}
.cid-v5LHA7T76Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v5LHA7T76Q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v5LHA7T76Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5LHA7T76Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v5LHA7T76Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v5LHA7T76Q .mbr-section-title {
  color: #232323;
}
.cid-v5LHA7T76Q .mbr-text,
.cid-v5LHA7T76Q .mbr-section-btn {
  text-align: center;
}
.cid-v5LHA7T76Q .item-title {
  text-align: center;
}
.cid-v5LHA7T76Q .item-subtitle {
  text-align: left;
}
.cid-v56A7C90fO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v56A7C90fO img,
.cid-v56A7C90fO .item-img {
  width: 100%;
}
.cid-v56A7C90fO .item:focus,
.cid-v56A7C90fO span:focus {
  outline: none;
}
.cid-v56A7C90fO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v56A7C90fO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v56A7C90fO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v56A7C90fO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v56A7C90fO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v56A7C90fO .mbr-section-title {
  color: #232323;
}
.cid-v56A7C90fO .mbr-text,
.cid-v56A7C90fO .mbr-section-btn {
  text-align: center;
}
.cid-v56A7C90fO .item-title {
  text-align: center;
}
.cid-v56A7C90fO .item-subtitle {
  text-align: left;
}
.cid-v55JQlr9OI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v55JQlr9OI img,
.cid-v55JQlr9OI .item-img {
  width: 100%;
}
.cid-v55JQlr9OI .item:focus,
.cid-v55JQlr9OI span:focus {
  outline: none;
}
.cid-v55JQlr9OI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v55JQlr9OI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v55JQlr9OI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v55JQlr9OI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v55JQlr9OI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v55JQlr9OI .mbr-section-title {
  color: #232323;
}
.cid-v55JQlr9OI .mbr-text,
.cid-v55JQlr9OI .mbr-section-btn {
  text-align: center;
}
.cid-v55JQlr9OI .item-title {
  text-align: center;
}
.cid-v55JQlr9OI .item-subtitle {
  text-align: left;
}
.cid-v55DUJASTl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v55DUJASTl img,
.cid-v55DUJASTl .item-img {
  width: 100%;
}
.cid-v55DUJASTl .item:focus,
.cid-v55DUJASTl span:focus {
  outline: none;
}
.cid-v55DUJASTl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v55DUJASTl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v55DUJASTl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v55DUJASTl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v55DUJASTl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v55DUJASTl .mbr-section-title {
  color: #232323;
}
.cid-v55DUJASTl .mbr-text,
.cid-v55DUJASTl .mbr-section-btn {
  text-align: center;
}
.cid-v55DUJASTl .item-title {
  text-align: center;
}
.cid-v55DUJASTl .item-subtitle {
  text-align: left;
}
.cid-v8BYGUocqJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BYGUocqJ img,
.cid-v8BYGUocqJ .item-img {
  width: 100%;
}
.cid-v8BYGUocqJ .item:focus,
.cid-v8BYGUocqJ span:focus {
  outline: none;
}
.cid-v8BYGUocqJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BYGUocqJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BYGUocqJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BYGUocqJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BYGUocqJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BYGUocqJ .mbr-section-title {
  color: #232323;
}
.cid-v8BYGUocqJ .mbr-text,
.cid-v8BYGUocqJ .mbr-section-btn {
  text-align: center;
}
.cid-v8BYGUocqJ .item-title {
  text-align: center;
}
.cid-v8BYGUocqJ .item-subtitle {
  text-align: left;
}
.cid-v4OzqF1fhB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v4OzqF1fhB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4OzqF1fhB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8etLE0TOD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v8etLE0TOD nav.navbar {
  position: fixed;
}
.cid-v8etLE0TOD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8etLE0TOD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8etLE0TOD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8etLE0TOD .dropdown-item:hover,
.cid-v8etLE0TOD .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v8etLE0TOD .dropdown-item:hover span {
  color: white;
}
.cid-v8etLE0TOD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8etLE0TOD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8etLE0TOD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8etLE0TOD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8etLE0TOD .nav-link {
  position: relative;
}
.cid-v8etLE0TOD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v8etLE0TOD .container {
    flex-wrap: nowrap;
  }
}
.cid-v8etLE0TOD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8etLE0TOD .dropdown-menu,
.cid-v8etLE0TOD .navbar.opened {
  background: #ffffff !important;
}
.cid-v8etLE0TOD .nav-item:focus,
.cid-v8etLE0TOD .nav-link:focus {
  outline: none;
}
.cid-v8etLE0TOD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8etLE0TOD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8etLE0TOD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8etLE0TOD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8etLE0TOD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8etLE0TOD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8etLE0TOD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v8etLE0TOD .navbar.opened {
  transition: all 0.3s;
}
.cid-v8etLE0TOD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8etLE0TOD .navbar .navbar-logo img {
  width: auto;
}
.cid-v8etLE0TOD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8etLE0TOD .navbar.collapsed {
  justify-content: center;
}
.cid-v8etLE0TOD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8etLE0TOD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8etLE0TOD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v8etLE0TOD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8etLE0TOD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8etLE0TOD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8etLE0TOD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8etLE0TOD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8etLE0TOD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8etLE0TOD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8etLE0TOD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8etLE0TOD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8etLE0TOD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8etLE0TOD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8etLE0TOD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8etLE0TOD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8etLE0TOD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8etLE0TOD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8etLE0TOD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8etLE0TOD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8etLE0TOD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8etLE0TOD .navbar.navbar-short {
  min-height: 60px;
}
.cid-v8etLE0TOD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8etLE0TOD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8etLE0TOD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v8etLE0TOD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8etLE0TOD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8etLE0TOD .dropdown-item.active,
.cid-v8etLE0TOD .dropdown-item:active {
  background-color: transparent;
}
.cid-v8etLE0TOD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8etLE0TOD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8etLE0TOD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8etLE0TOD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v8etLE0TOD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8etLE0TOD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8etLE0TOD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8etLE0TOD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8etLE0TOD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8etLE0TOD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v8etLE0TOD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8etLE0TOD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8etLE0TOD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8etLE0TOD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8etLE0TOD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8etLE0TOD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8etLE0TOD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8etLE0TOD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8etLE0TOD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8etLE0TOD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8etLE0TOD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8etLE0TOD .navbar {
    height: 70px;
  }
  .cid-v8etLE0TOD .navbar.opened {
    height: auto;
  }
  .cid-v8etLE0TOD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8etLEG9Sk {
  background-image: url("../../../assets/images/foto-topo-noticias-1478x831.jpg");
}
.cid-v8etLEG9Sk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8etLEG9Sk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8etLEG9Sk .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v8etLEG9Sk .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v8etLEG9Sk .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v8etLEG9Sk .mbr-section-title {
  color: #ffffff;
}
.cid-v8etLFfUGR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v8etLFfUGR img,
.cid-v8etLFfUGR .item-img {
  width: 100%;
}
.cid-v8etLFfUGR .item:focus,
.cid-v8etLFfUGR span:focus {
  outline: none;
}
.cid-v8etLFfUGR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8etLFfUGR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8etLFfUGR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8etLFfUGR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8etLFfUGR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8etLFfUGR .mbr-section-title {
  color: #232323;
}
.cid-v8etLFfUGR .mbr-text,
.cid-v8etLFfUGR .mbr-section-btn {
  text-align: center;
}
.cid-v8etLFfUGR .item-title {
  text-align: center;
}
.cid-v8etLFfUGR .item-subtitle {
  text-align: left;
}
.cid-vanXInCEqg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-vanXInCEqg img,
.cid-vanXInCEqg .item-img {
  width: 100%;
}
.cid-vanXInCEqg .item:focus,
.cid-vanXInCEqg span:focus {
  outline: none;
}
.cid-vanXInCEqg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vanXInCEqg .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vanXInCEqg .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vanXInCEqg .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vanXInCEqg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vanXInCEqg .mbr-section-title {
  color: #232323;
}
.cid-vanXInCEqg .mbr-text,
.cid-vanXInCEqg .mbr-section-btn {
  text-align: center;
}
.cid-vanXInCEqg .item-title {
  text-align: center;
}
.cid-vanXInCEqg .item-subtitle {
  text-align: left;
}
.cid-v8BYY7i3Vr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v8BYY7i3Vr img,
.cid-v8BYY7i3Vr .item-img {
  width: 100%;
}
.cid-v8BYY7i3Vr .item:focus,
.cid-v8BYY7i3Vr span:focus {
  outline: none;
}
.cid-v8BYY7i3Vr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v8BYY7i3Vr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v8BYY7i3Vr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v8BYY7i3Vr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v8BYY7i3Vr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v8BYY7i3Vr .mbr-section-title {
  color: #232323;
}
.cid-v8BYY7i3Vr .mbr-text,
.cid-v8BYY7i3Vr .mbr-section-btn {
  text-align: center;
}
.cid-v8BYY7i3Vr .item-title {
  text-align: center;
}
.cid-v8BYY7i3Vr .item-subtitle {
  text-align: left;
}
.cid-v8etLJru8e {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #c9dafb;
}
.cid-v8etLJru8e .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8etLJru8e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cux8FVY8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v9Cux8FVY8 nav.navbar {
  position: fixed;
}
.cid-v9Cux8FVY8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9Cux8FVY8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v9Cux8FVY8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v9Cux8FVY8 .dropdown-item:hover,
.cid-v9Cux8FVY8 .dropdown-item:focus {
  background: #058046 !important;
  color: white !important;
}
.cid-v9Cux8FVY8 .dropdown-item:hover span {
  color: white;
}
.cid-v9Cux8FVY8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v9Cux8FVY8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v9Cux8FVY8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v9Cux8FVY8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v9Cux8FVY8 .nav-link {
  position: relative;
}
.cid-v9Cux8FVY8 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v9Cux8FVY8 .container {
    flex-wrap: nowrap;
  }
}
.cid-v9Cux8FVY8 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v9Cux8FVY8 .dropdown-menu,
.cid-v9Cux8FVY8 .navbar.opened {
  background: #ffffff !important;
}
.cid-v9Cux8FVY8 .nav-item:focus,
.cid-v9Cux8FVY8 .nav-link:focus {
  outline: none;
}
.cid-v9Cux8FVY8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9Cux8FVY8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9Cux8FVY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9Cux8FVY8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9Cux8FVY8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9Cux8FVY8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9Cux8FVY8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v9Cux8FVY8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v9Cux8FVY8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9Cux8FVY8 .navbar .navbar-logo img {
  width: auto;
}
.cid-v9Cux8FVY8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9Cux8FVY8 .navbar.collapsed {
  justify-content: center;
}
.cid-v9Cux8FVY8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9Cux8FVY8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9Cux8FVY8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.8rem);
  }
}
.cid-v9Cux8FVY8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9Cux8FVY8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9Cux8FVY8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v9Cux8FVY8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9Cux8FVY8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9Cux8FVY8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v9Cux8FVY8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9Cux8FVY8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9Cux8FVY8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9Cux8FVY8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9Cux8FVY8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v9Cux8FVY8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v9Cux8FVY8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9Cux8FVY8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9Cux8FVY8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v9Cux8FVY8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9Cux8FVY8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v9Cux8FVY8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v9Cux8FVY8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v9Cux8FVY8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v9Cux8FVY8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v9Cux8FVY8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9Cux8FVY8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9Cux8FVY8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9Cux8FVY8 .dropdown-item.active,
.cid-v9Cux8FVY8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v9Cux8FVY8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9Cux8FVY8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9Cux8FVY8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9Cux8FVY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9Cux8FVY8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9Cux8FVY8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9Cux8FVY8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9Cux8FVY8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v9Cux8FVY8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9Cux8FVY8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9Cux8FVY8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9Cux8FVY8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9Cux8FVY8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9Cux8FVY8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9Cux8FVY8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9Cux8FVY8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9Cux8FVY8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9Cux8FVY8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9Cux8FVY8 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v9Cux8FVY8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9Cux8FVY8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9Cux8FVY8 .navbar {
    height: 70px;
  }
  .cid-v9Cux8FVY8 .navbar.opened {
    height: auto;
  }
  .cid-v9Cux8FVY8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9CuxavXiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CuxavXiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-v9CuxavXiP .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-v9CuxavXiP .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-v9CuxavXiP .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-v9CuxavXiP .mbr-section-title {
  color: #ffffff;
}
.cid-v9CuxavXiP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v9CuxcD3dS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #c9dafb;
}
.cid-v9CuxcD3dS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CuxcD3dS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CuxdrEqR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxdrEqR img,
.cid-v9CuxdrEqR .item-img {
  width: 100%;
}
.cid-v9CuxdrEqR .item:focus,
.cid-v9CuxdrEqR span:focus {
  outline: none;
}
.cid-v9CuxdrEqR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxdrEqR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxdrEqR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxdrEqR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxdrEqR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxdrEqR .mbr-section-title {
  color: #232323;
}
.cid-v9CuxdrEqR .mbr-text,
.cid-v9CuxdrEqR .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxdrEqR .item-title {
  text-align: center;
}
.cid-v9CuxdrEqR .item-subtitle {
  text-align: left;
}
.cid-v9Cuxemuyf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9Cuxemuyf img,
.cid-v9Cuxemuyf .item-img {
  width: 100%;
}
.cid-v9Cuxemuyf .item:focus,
.cid-v9Cuxemuyf span:focus {
  outline: none;
}
.cid-v9Cuxemuyf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9Cuxemuyf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9Cuxemuyf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9Cuxemuyf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9Cuxemuyf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9Cuxemuyf .mbr-section-title {
  color: #232323;
}
.cid-v9Cuxemuyf .mbr-text,
.cid-v9Cuxemuyf .mbr-section-btn {
  text-align: center;
}
.cid-v9Cuxemuyf .item-title {
  text-align: center;
}
.cid-v9Cuxemuyf .item-subtitle {
  text-align: left;
}
.cid-v9Cuxf7EJ6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9Cuxf7EJ6 img,
.cid-v9Cuxf7EJ6 .item-img {
  width: 100%;
}
.cid-v9Cuxf7EJ6 .item:focus,
.cid-v9Cuxf7EJ6 span:focus {
  outline: none;
}
.cid-v9Cuxf7EJ6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9Cuxf7EJ6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9Cuxf7EJ6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9Cuxf7EJ6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9Cuxf7EJ6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9Cuxf7EJ6 .mbr-section-title {
  color: #232323;
}
.cid-v9Cuxf7EJ6 .mbr-text,
.cid-v9Cuxf7EJ6 .mbr-section-btn {
  text-align: center;
}
.cid-v9Cuxf7EJ6 .item-title {
  text-align: center;
}
.cid-v9Cuxf7EJ6 .item-subtitle {
  text-align: left;
}
.cid-v9CuxfXsWY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxfXsWY img,
.cid-v9CuxfXsWY .item-img {
  width: 100%;
}
.cid-v9CuxfXsWY .item:focus,
.cid-v9CuxfXsWY span:focus {
  outline: none;
}
.cid-v9CuxfXsWY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxfXsWY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxfXsWY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxfXsWY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxfXsWY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxfXsWY .mbr-section-title {
  color: #232323;
}
.cid-v9CuxfXsWY .mbr-text,
.cid-v9CuxfXsWY .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxfXsWY .item-title {
  text-align: center;
}
.cid-v9CuxfXsWY .item-subtitle {
  text-align: left;
}
.cid-v9CuxgUR0S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxgUR0S img,
.cid-v9CuxgUR0S .item-img {
  width: 100%;
}
.cid-v9CuxgUR0S .item:focus,
.cid-v9CuxgUR0S span:focus {
  outline: none;
}
.cid-v9CuxgUR0S .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxgUR0S .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxgUR0S .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxgUR0S .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxgUR0S .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxgUR0S .mbr-section-title {
  color: #232323;
}
.cid-v9CuxgUR0S .mbr-text,
.cid-v9CuxgUR0S .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxgUR0S .item-title {
  text-align: center;
}
.cid-v9CuxgUR0S .item-subtitle {
  text-align: left;
}
.cid-v9CuxhN1It {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxhN1It img,
.cid-v9CuxhN1It .item-img {
  width: 100%;
}
.cid-v9CuxhN1It .item:focus,
.cid-v9CuxhN1It span:focus {
  outline: none;
}
.cid-v9CuxhN1It .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxhN1It .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxhN1It .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxhN1It .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxhN1It .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxhN1It .mbr-section-title {
  color: #232323;
}
.cid-v9CuxhN1It .mbr-text,
.cid-v9CuxhN1It .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxhN1It .item-title {
  text-align: center;
}
.cid-v9CuxhN1It .item-subtitle {
  text-align: left;
}
.cid-v9CuxkmQ5N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxkmQ5N img,
.cid-v9CuxkmQ5N .item-img {
  width: 100%;
}
.cid-v9CuxkmQ5N .item:focus,
.cid-v9CuxkmQ5N span:focus {
  outline: none;
}
.cid-v9CuxkmQ5N .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxkmQ5N .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxkmQ5N .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxkmQ5N .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxkmQ5N .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxkmQ5N .mbr-section-title {
  color: #232323;
}
.cid-v9CuxkmQ5N .mbr-text,
.cid-v9CuxkmQ5N .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxkmQ5N .item-title {
  text-align: center;
}
.cid-v9CuxkmQ5N .item-subtitle {
  text-align: left;
}
.cid-v9CuxltycJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxltycJ img,
.cid-v9CuxltycJ .item-img {
  width: 100%;
}
.cid-v9CuxltycJ .item:focus,
.cid-v9CuxltycJ span:focus {
  outline: none;
}
.cid-v9CuxltycJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxltycJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxltycJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxltycJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxltycJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxltycJ .mbr-section-title {
  color: #232323;
}
.cid-v9CuxltycJ .mbr-text,
.cid-v9CuxltycJ .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxltycJ .item-title {
  text-align: center;
}
.cid-v9CuxltycJ .item-subtitle {
  text-align: left;
}
.cid-v9CuxnIqdt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxnIqdt img,
.cid-v9CuxnIqdt .item-img {
  width: 100%;
}
.cid-v9CuxnIqdt .item:focus,
.cid-v9CuxnIqdt span:focus {
  outline: none;
}
.cid-v9CuxnIqdt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxnIqdt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxnIqdt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxnIqdt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxnIqdt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxnIqdt .mbr-section-title {
  color: #232323;
}
.cid-v9CuxnIqdt .mbr-text,
.cid-v9CuxnIqdt .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxnIqdt .item-title {
  text-align: center;
}
.cid-v9CuxnIqdt .item-subtitle {
  text-align: left;
}
.cid-v9CuxpQBEs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxpQBEs img,
.cid-v9CuxpQBEs .item-img {
  width: 100%;
}
.cid-v9CuxpQBEs .item:focus,
.cid-v9CuxpQBEs span:focus {
  outline: none;
}
.cid-v9CuxpQBEs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxpQBEs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxpQBEs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxpQBEs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxpQBEs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxpQBEs .mbr-section-title {
  color: #232323;
}
.cid-v9CuxpQBEs .mbr-text,
.cid-v9CuxpQBEs .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxpQBEs .item-title {
  text-align: center;
}
.cid-v9CuxpQBEs .item-subtitle {
  text-align: left;
}
.cid-v9CuxsgKuR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxsgKuR img,
.cid-v9CuxsgKuR .item-img {
  width: 100%;
}
.cid-v9CuxsgKuR .item:focus,
.cid-v9CuxsgKuR span:focus {
  outline: none;
}
.cid-v9CuxsgKuR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxsgKuR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxsgKuR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxsgKuR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxsgKuR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxsgKuR .mbr-section-title {
  color: #232323;
}
.cid-v9CuxsgKuR .mbr-text,
.cid-v9CuxsgKuR .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxsgKuR .item-title {
  text-align: center;
}
.cid-v9CuxsgKuR .item-subtitle {
  text-align: left;
}
.cid-v9CuxuxOsm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxuxOsm img,
.cid-v9CuxuxOsm .item-img {
  width: 100%;
}
.cid-v9CuxuxOsm .item:focus,
.cid-v9CuxuxOsm span:focus {
  outline: none;
}
.cid-v9CuxuxOsm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxuxOsm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxuxOsm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxuxOsm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxuxOsm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxuxOsm .mbr-section-title {
  color: #232323;
}
.cid-v9CuxuxOsm .mbr-text,
.cid-v9CuxuxOsm .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxuxOsm .item-title {
  text-align: center;
}
.cid-v9CuxuxOsm .item-subtitle {
  text-align: left;
}
.cid-v9CuxwLdF0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxwLdF0 img,
.cid-v9CuxwLdF0 .item-img {
  width: 100%;
}
.cid-v9CuxwLdF0 .item:focus,
.cid-v9CuxwLdF0 span:focus {
  outline: none;
}
.cid-v9CuxwLdF0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxwLdF0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxwLdF0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxwLdF0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxwLdF0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxwLdF0 .mbr-section-title {
  color: #232323;
}
.cid-v9CuxwLdF0 .mbr-text,
.cid-v9CuxwLdF0 .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxwLdF0 .item-title {
  text-align: center;
}
.cid-v9CuxwLdF0 .item-subtitle {
  text-align: left;
}
.cid-v9Cuxz5NdH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9Cuxz5NdH img,
.cid-v9Cuxz5NdH .item-img {
  width: 100%;
}
.cid-v9Cuxz5NdH .item:focus,
.cid-v9Cuxz5NdH span:focus {
  outline: none;
}
.cid-v9Cuxz5NdH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9Cuxz5NdH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9Cuxz5NdH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9Cuxz5NdH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9Cuxz5NdH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9Cuxz5NdH .mbr-section-title {
  color: #232323;
}
.cid-v9Cuxz5NdH .mbr-text,
.cid-v9Cuxz5NdH .mbr-section-btn {
  text-align: center;
}
.cid-v9Cuxz5NdH .item-title {
  text-align: center;
}
.cid-v9Cuxz5NdH .item-subtitle {
  text-align: left;
}
.cid-v9CuxBnPoQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-v9CuxBnPoQ img,
.cid-v9CuxBnPoQ .item-img {
  width: 100%;
}
.cid-v9CuxBnPoQ .item:focus,
.cid-v9CuxBnPoQ span:focus {
  outline: none;
}
.cid-v9CuxBnPoQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxBnPoQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxBnPoQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxBnPoQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxBnPoQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxBnPoQ .mbr-section-title {
  color: #232323;
}
.cid-v9CuxBnPoQ .mbr-text,
.cid-v9CuxBnPoQ .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxBnPoQ .item-title {
  text-align: center;
}
.cid-v9CuxBnPoQ .item-subtitle {
  text-align: left;
}
.cid-v9CuxDUSnS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #c9dafb;
}
.cid-v9CuxDUSnS img,
.cid-v9CuxDUSnS .item-img {
  width: 100%;
}
.cid-v9CuxDUSnS .item:focus,
.cid-v9CuxDUSnS span:focus {
  outline: none;
}
.cid-v9CuxDUSnS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-v9CuxDUSnS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-v9CuxDUSnS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v9CuxDUSnS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-v9CuxDUSnS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-v9CuxDUSnS .mbr-section-title {
  color: #232323;
}
.cid-v9CuxDUSnS .mbr-text,
.cid-v9CuxDUSnS .mbr-section-btn {
  text-align: center;
}
.cid-v9CuxDUSnS .item-title {
  text-align: center;
}
.cid-v9CuxDUSnS .item-subtitle {
  text-align: left;
}
.cid-v9CuxGbqoJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #9fdbf8;
}
.cid-v9CuxGbqoJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CuxGbqoJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
