body {
  background-color: #fefae6;
}
body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'font';
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'font';
  font-size: 3.125rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'font';
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'font';
  font-size: 2.2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'font';
  font-size: 1.2rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #0c2449 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #0aa3c2 !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0c2449 !important;
  border-color: #0c2449 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4d5e85 !important;
  border-color: #4d5e85 !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: #2d374e !important;
  border-color: #2d374e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2d374e !important;
  border-color: #2d374e !important;
}
.btn-info,
.btn-info:active {
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !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: #065e70 !important;
  border-color: #065e70 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #065e70 !important;
  border-color: #065e70 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  border-color: #20ac6b !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: #12633e !important;
  border-color: #12633e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !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: #641119 !important;
  border-color: #641119 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !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: #0c2449;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !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: #0c2449 !important;
  border-color: #0c2449 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4d5e85;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2d374e !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: #4d5e85 !important;
  border-color: #4d5e85 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065e70 !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: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !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: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !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: #ae1e2c !important;
  border-color: #ae1e2c !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: #0c2449 !important;
}
.text-secondary {
  color: #4d5e85 !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #0aa3c2 !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #283044 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #0c2449;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0aa3c2;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c2449;
  border-color: #0c2449;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0c2449;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #578ee3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'font';
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #0c2449 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'font';
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #0c2449;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0c2449;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0c2449;
}
.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: #0c2449;
  border-bottom-color: #0c2449;
}
.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: #0c2449 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #4d5e85 !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='%230c2449' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #0c2449 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #0c2449 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #4d5e85 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #4d5e85 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #20ac6b !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #20ac6b !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #0aa3c2 !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #0aa3c2 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #cc9900 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #cc9900 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ae1e2c !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ae1e2c !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-uZYt7jTLDi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #009ca7;
}
.cid-uZYt7jTLDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYt7jTLDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYt7jTLDi .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-uZYt7jTLDi .container {
    padding: 0 50px !important;
  }
}
.cid-uZYt7jTLDi .row {
  align-items: stretch;
}
.cid-uZYt7jTLDi .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uZYt7jTLDi .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .text-wrapper {
    padding-top: 30px;
  }
}
.cid-uZYt7jTLDi .card-title {
  color: #fffdfd;
  margin-bottom: 0 !important;
  width: 100%;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .card-title {
    text-align: center;
  }
}
.cid-uZYt7jTLDi .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .mbr-text {
    text-align: center;
  }
}
.cid-uZYt7jTLDi .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-uZYt7jTLDi .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-uZYt7jTLDi .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-uZYt7jTLDi .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-uZYt7jTLDi .image-wrapper {
    padding-right: 0;
  }
}
.cid-uZYt7jTLDi .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-uZYt7jTLDi .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-ufA2tMSlZR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMSlZR .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/background1.jpg");
}
.cid-ufA2tMSlZR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tMSlZR .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tMSlZR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMSlZR .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMSlZR .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-ufA2tMSlZR .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-ufA2tMSlZR .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ufA2tMSlZR .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ufA2tMSlZR .mbr-section-title {
  color: #ffffff;
}
.cid-ufA2tMSlZR .mbr-text {
  color: #ffffff;
}
.cid-ufA2tLNe7V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ufA2tLNe7V .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tLNe7V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tLNe7V .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tLNe7V .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tLNe7V .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tLNe7V .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tLNe7V .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ufA2tLNe7V .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-ufA2tLNe7V .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-ufA2tLNe7V .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ufA2tLNe7V .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-ufA2tLNe7V .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-ufA2tLNe7V .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-ufA2tLNe7V .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #c8976b;
}
@media (max-width: 992px) {
  .cid-ufA2tLNe7V .title-wrapper::before {
    display: none;
  }
}
.cid-ufA2tLNe7V .mbr-section-subtitle {
  color: #000000;
}
.cid-ufA2tLNe7V .mbr-section-title {
  color: #000000;
}
.cid-ufA2tLNe7V .mbr-name {
  color: #000000;
}
.cid-ufA2tLNe7V .mbr-role {
  color: #a8a8a8;
}
.cid-ufA2tMeJ6e {
  padding-top: 0rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #c8976b;
}
.cid-ufA2tMeJ6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMeJ6e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMeJ6e .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMeJ6e .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMeJ6e .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ufA2tMeJ6e .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-ufA2tMeJ6e .mbr-section-btn {
    display: block;
  }
}
.cid-ufA2tMeJ6e .mbr-section-title {
  color: #ffffff;
}
.cid-ufA2tMeJ6e .mbr-section-title,
.cid-ufA2tMeJ6e .mbr-section-btn {
  color: #000000;
}
.cid-ufA2tMBLgi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-1920x1080.png");
}
.cid-ufA2tMBLgi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMBLgi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tMBLgi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tMBLgi .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tMBLgi .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMBLgi .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMBLgi .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-ufA2tMBLgi .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 310px;
  max-width: 310px;
}
@media (max-width: 768px) {
  .cid-ufA2tMBLgi .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ufA2tMBLgi .embla__slide .card-wrap {
  width: 100%;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a {
  display: block;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a:hover .item-wrapper .image-wrap img {
  transform: scale(1.06);
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a:hover .content-wrap .mbr-iconfont::after {
  opacity: 1;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .item-wrapper {
  margin-bottom: 32px;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .item-wrapper .image-wrap {
  position: relative;
  height: 195px;
  border-radius: 10px;
  overflow: hidden;
  padding: 14px 20px;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .item-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date {
  position: relative;
  z-index: 1;
  pointer-events: visible;
  margin-bottom: 0;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .item-wrapper .image-wrap .mbr-date span {
  display: block;
  font-size: 32%;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .content-wrap .mbr-desc {
  margin-bottom: 4px;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .content-wrap .mbr-text {
  margin-bottom: 28px;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .content-wrap .mbr-iconfont {
  position: relative;
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transform: translate(-2px, 2px) rotate(-45deg);
  transition: all 0.3s ease-out;
}
.cid-ufA2tMBLgi .embla__slide .card-wrap a .content-wrap .mbr-iconfont::after {
  content: '';
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-ufA2tMBLgi .embla__button--next,
.cid-ufA2tMBLgi .embla__button--prev {
  display: flex;
}
.cid-ufA2tMBLgi .embla__button {
  bottom: -2rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #0aa3c2;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ufA2tMBLgi .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ufA2tMBLgi .embla__button:hover {
  background: transparent;
  color: #4d5e85;
}
.cid-ufA2tMBLgi .embla__button.embla__button--prev {
  left: 0;
}
.cid-ufA2tMBLgi .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-ufA2tMBLgi .embla__button {
    top: auto;
  }
}
.cid-ufA2tMBLgi .embla {
  position: relative;
  width: 100%;
}
.cid-ufA2tMBLgi .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ufA2tMBLgi .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ufA2tMBLgi .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ufA2tMBLgi .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ufA2tMBLgi .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ufA2tMBLgi .mbr-date {
  color: #ffffff;
  text-align: left;
}
.cid-ufA2tMBLgi .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-ufA2tMBLgi .mbr-text {
  color: #ffffff;
}
.cid-uVJDtM81E6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVJDtM81E6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVJDtM81E6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVJDtM81E6 .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uVJDtM81E6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uVJDtM81E6 .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uVJDtM81E6 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVJDtM81E6 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uVJDtM81E6 .items-wrapper {
  align-items: center;
}
.cid-uVJDtM81E6 .items-wrapper .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uVJDtM81E6 .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-uVJDtM81E6 .items-wrapper .item .item-wrapper {
    min-height: 520px;
    padding: 24px;
  }
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent 0, #111111 100%);
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 1;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .card-box {
  position: relative;
  z-index: 1;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 16px;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uVJDtM81E6 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
  box-shadow: none !important;
}
.cid-uVJDtM81E6 .mbr-label {
  color: #a6adbf;
  text-align: center;
}
.cid-uVJDtM81E6 .mbr-section-title {
  color: #111111;
  text-align: center;
}
.cid-uVJDtM81E6 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uVJDtM81E6 .mbr-text,
.cid-uVJDtM81E6 .text-wrapper {
  color: #666666;
  text-align: center;
}
.cid-uVJDtM81E6 .card-title {
  color: #ffffff;
}
.cid-uVJDtM81E6 .card-text {
  color: #ffffff;
}
.cid-uVJEWhWyon {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #11284a;
}
.cid-uVJEWhWyon .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVJEWhWyon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uVJEWhWyon .container {
    padding: 0 30px;
  }
}
.cid-uVJEWhWyon .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVJEWhWyon .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uVJEWhWyon .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uVJEWhWyon .mbr-section-btn {
    display: block;
  }
}
.cid-uVJEWhWyon .mbr-section-title {
  color: #ffffff;
}
.cid-ufA2tMlInB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-ufA2tMlInB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMlInB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tMlInB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tMlInB .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMlInB .text-wrap {
  display: flex;
  align-items: center;
}
.cid-ufA2tMlInB .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-ufA2tMlInB .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-ufA2tMlInB .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-ufA2tMlInB .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ufA2tMlInB .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-ufA2tMlInB .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .image-wrapper {
    margin-top: 60px;
  }
}
.cid-ufA2tMlInB .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-ufA2tMlInB .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-ufA2tMlInB .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-ufA2tMlInB .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tMlInB .image-wrapper img:last-child {
    display: none;
  }
}
.cid-ufA2tMlInB .mbr-section-title {
  color: #000000;
}
.cid-ufA2tMlInB .mbr-text {
  color: #000000;
}
.cid-ufA2tMlInB .mbr-cit {
  color: #000000;
}
.cid-ufA2tMlInB .mbr-name {
  color: #a8a8a8;
}
#custom-html-7 {
  /* Type valid CSS here */
}
#custom-html-7 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7 p {
  font-size: 60px;
  color: #777;
}
.cid-ufA2tMubaU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #11284a;
}
.cid-ufA2tMubaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMubaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tMubaU .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tMubaU .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tMubaU .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMubaU .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMubaU .row {
  justify-content: center;
}
.cid-ufA2tMubaU .title-wrapper {
  margin-bottom: 55px;
}
.cid-ufA2tMubaU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMubaU .card {
    margin-bottom: 30px;
  }
}
.cid-ufA2tMubaU .card .card-wrapper {
  display: flex;
}
.cid-ufA2tMubaU .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-ufA2tMubaU .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-ufA2tMubaU .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-ufA2tMubaU .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-ufA2tMubaU .mbr-section-title {
  color: #ffffff;
}
.cid-ufA2tMubaU .mbr-number {
  color: #ffffff;
}
.cid-ufA2tMubaU .mbr-card-title {
  color: #ffffff;
}
.cid-ufA2tMubaU .mbr-text {
  color: #ffffff;
}
.cid-ufA2tMxAQa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-ufA2tMxAQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMxAQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tMxAQa .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMxAQa .container-fluid {
    padding: 0;
  }
}
.cid-ufA2tMxAQa .container-fluid .row {
  padding: 0;
}
.cid-ufA2tMxAQa .card {
  padding: 0;
}
.cid-ufA2tMxAQa .card:first-child {
  padding: 140px 170px;
}
@media (max-width: 1200px) {
  .cid-ufA2tMxAQa .card:first-child {
    padding: 100px 90px;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tMxAQa .card:first-child {
    padding: 110px 30px;
  }
}
.cid-ufA2tMxAQa .card .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-ufA2tMxAQa .card .text-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  counter-reset: myCounter;
  line-height: 1.625;
}
.cid-ufA2tMxAQa .card .text-wrapper .list li {
  margin-bottom: 30px;
  position: relative;
  list-style-type: none;
  min-height: 18px;
}
.cid-ufA2tMxAQa .card:last-child {
  position: relative;
}
.cid-ufA2tMxAQa .card:last-child img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ufA2tMxAQa .card:last-child .desc-wrapper {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 22px 50px;
}
@media (max-width: 992px) {
  .cid-ufA2tMxAQa .card:last-child .desc-wrapper {
    padding: 200px 30px 30px 30px;
  }
}
.cid-ufA2tMxAQa .card:last-child .desc-wrapper .mbr-desc {
  width: 100%;
  margin: 25px 0;
  position: relative;
}
.cid-ufA2tMxAQa .mbr-section-title {
  color: #000000;
}
.cid-ufA2tMxAQa .list {
  color: #000000;
}
.cid-ufA2tMxAQa .mbr-desc {
  color: #ffffff;
}
.cid-ufA2tMxAQa .mbr-section-title,
.cid-ufA2tMxAQa .mbr-section-btn {
  text-align: center;
}
.cid-ufA2tMU4Ks {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-ufA2tMU4Ks .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMU4Ks .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tMU4Ks .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tMU4Ks .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tMU4Ks .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMU4Ks .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tMU4Ks .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-ufA2tMU4Ks .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-ufA2tMU4Ks .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-ufA2tMU4Ks .panel-group {
  padding: 60px 80px;
  border-radius: 10px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-ufA2tMU4Ks .panel-group {
    padding: 60px 30px;
  }
}
@media (max-width: 425px) {
  .cid-ufA2tMU4Ks .panel-group {
    padding: 60px 16px;
  }
}
.cid-ufA2tMU4Ks .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0;
}
.cid-ufA2tMU4Ks .panel-group .card .card-header {
  padding: 22px 0;
  background-color: transparent;
  border: none;
}
.cid-ufA2tMU4Ks .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background-color: transparent;
}
.cid-ufA2tMU4Ks .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ufA2tMU4Ks .panel-group .card .card-header .panel-title .mbr-iconfont {
  margin-left: 10px;
  font-size: 22px;
  transition: all 0.3s ease-out;
}
.cid-ufA2tMU4Ks .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0c808;
  transform: rotate(90deg);
}
.cid-ufA2tMU4Ks .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 50px;
}
.cid-ufA2tMU4Ks .panel-group .card .panel-collapse .panel-body .panel-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-ufA2tMU4Ks .mbr-section-title {
  color: #000000;
}
.cid-ufA2tMU4Ks .panel-title-edit,
.cid-ufA2tMU4Ks .mbr-iconfont {
  color: #000000;
}
.cid-ufA2tMU4Ks .panel-text {
  color: #000000;
}
.cid-ufA2tMYIFY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-ufA2tMYIFY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tMYIFY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tMYIFY .container {
    padding: 0 30px;
  }
}
.cid-ufA2tMYIFY .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufA2tMYIFY .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-ufA2tNbcS7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ufA2tNbcS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tNbcS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufA2tNbcS7 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ufA2tNbcS7 .container-fluid {
    padding: 0 30px;
  }
}
.cid-ufA2tNbcS7 .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tNbcS7 .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ufA2tNbcS7 .container {
    padding: 0 30px;
  }
}
.cid-ufA2tNbcS7 .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ufA2tNbcS7 .row {
    border-radius: 0;
  }
}
.cid-ufA2tNbcS7 .card {
  padding: 0;
}
.cid-ufA2tNbcS7 .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufA2tNbcS7 .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-ufA2tNbcS7 .mbr-date {
  color: #ffffff;
}
.cid-ufA2tNbcS7 .mbr-link {
  color: #ffffff;
}
.cid-ufA2tNvZJY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-1920x1080.png");
}
.cid-ufA2tNvZJY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufA2tNvZJY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufA2tNvZJY .container {
    padding: 0 30px;
  }
}
.cid-ufA2tNvZJY .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufA2tNvZJY .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uZYqWwK9Hl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #edefeb;
}
.cid-uZYqWwK9Hl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZYqWwK9Hl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZYqWwK9Hl .mbr-text {
  color: #000000;
}
.cid-uZYqWwK9Hl .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uZYqWwK9Hl .main-button {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uZYqWwK9Hl .main-button {
    margin-bottom: 2rem;
  }
}
.cid-uZYqWwK9Hl .mbr-section-subtitle,
.cid-uZYqWwK9Hl .main-button {
  color: #000000;
}
.cid-uZYqWwK9Hl .google-map {
  height: 30rem;
  position: relative;
  border-radius: 2rem;
}
.cid-uZYqWwK9Hl .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-uZYqWwK9Hl .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uZYqWwK9Hl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uZYqWwK9Hl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhW8L7Zz2T {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0c2449;
  overflow: hidden;
}
.cid-uhW8L7Zz2T .media-container-row .mbr-text {
  color: #fffcee;
}
