body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Unbounded', sans-serif;
  font-size: 6.8rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 8.5rem;
}
.display-2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 4.125rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 5.15625rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 5.44rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.76rem;
    font-size: calc( 3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.03rem + (6.8 - 3.03) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.3rem;
    font-size: calc( 2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.09375rem + (4.125 - 2.09375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #fc7942 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #52210c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #fc7942 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #e44604 !important;
  border-color: #e44604 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #52210c !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #52210c !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #060301 !important;
  border-color: #060301 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fc7942;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #e44604 !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: #fc7942 !important;
  border-color: #fc7942 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !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: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !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: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #52210c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #060301 !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: #52210c !important;
  border-color: #52210c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.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: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #fc7942 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #52210c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #d54103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !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: #fc7942;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #52210c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc7942;
  border-color: #fc7942;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc7942;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #acc6dd;
}
.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: #e7865c;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #fc7942 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #fc7942;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc7942;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #fc7942;
}
.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: #fc7942;
  border-bottom-color: #fc7942;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #fc7942 !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: #a6d8b5 !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='%23fc7942' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container,
.container-small {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container,
  .container-small {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container,
  .container-small {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-small {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-small {
    max-width: 100%;
  }
}
.container,
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container,
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container,
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-uLjJ56t8JJ .custom-block {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
}
.cid-uLjJ56t8JJ .custom-img-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
  transition: transform 0.6s ease;
}
.cid-uLjJ56t8JJ .custom-img-wrapper img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed #fff;
  padding: 5px;
  transition: transform 0.4s ease;
}
.cid-uLjJ56t8JJ .custom-img-wrapper img:hover {
  transform: scale(1.1) rotate(5deg) translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: swing 0.8s ease;
}
.cid-uLjJ56t8JJ .custom-img-wrapper.img1 {
  margin-left: 0;
  margin-top: 0;
}
.cid-uLjJ56t8JJ .custom-img-wrapper.img2 {
  margin-left: 30px;
  margin-top: 30px;
}
.cid-uLjJ56t8JJ .custom-img-wrapper.img3 {
  margin-left: 15px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uLjJ56t8JJ .custom-img-wrapper {
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
}
.cid-uLjJ56t8JJ P {
  color: #ffffff;
}
.cid-uLjJ56t8JJ H2 {
  color: #ff9466;
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.cid-uLjJ56t8JJ .custom-img-wrapper:hover {
  transform: translateY(-30px) translateX(20px);
  z-index: 10;
}
.cid-uO2Q5WCsj4 {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-uO2Q5WCsj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO2Q5WCsj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO2Q5WCsj4 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uO2Q5WCsj4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uO2Q5WCsj4 .container {
    padding: 0 24px;
  }
}
.cid-uO2Q5WCsj4 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2Q5WCsj4 .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uO2Q5WCsj4 .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2Q5WCsj4 .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uO2Q5WCsj4 .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uO2Q5WCsj4 .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uO2Q5WCsj4 .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uO2Q5WCsj4 .mbr-desc {
  color: #202020;
}
.cid-uO2Q5WCsj4 .mbr-section-title {
  color: #202020;
}
.cid-uO2Q5WCsj4 .mbr-date {
  color: #202020;
}
.cid-tBop9AZP21 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
  overflow: hidden;
}
.cid-tBop9AZP21 .mbr-text {
  color: #131313;
}
.cid-tBop9AZP21 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uMqo4OWeBJ {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uMqo4OWeBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMqo4OWeBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMqo4OWeBJ .card-wrapper {
  overflow: hidden;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uMqo4OWeBJ .card-wrapper {
    display: block;
  }
}
.cid-uMqo4OWeBJ .card-wrapper .content-wrap {
  width: 60%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uMqo4OWeBJ .card-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uMqo4OWeBJ .card-wrapper .content-wrapper {
  width: 70%;
  padding: 30px;
  background-color: #b63b07;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uMqo4OWeBJ .card-wrapper .content-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uMqo4OWeBJ .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uMqo4OWeBJ .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uMqo4OWeBJ .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uMqo4OWeBJ .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uMqo4OWeBJ .mbr-section-title {
  color: #f4f4f4;
}
.cid-uMqo4OWeBJ .mbr-text {
  color: #d7d2d2;
}
.cid-uMqo4OWeBJ .mbr-text,
.cid-uMqo4OWeBJ .text-wrapper {
  color: #bbbbbb;
}
.cid-uNUOlvBq7G {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uNUOlvBq7G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNUOlvBq7G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNUOlvBq7G .container,
.cid-uNUOlvBq7G .container-small,
.cid-uNUOlvBq7G .container-fluid {
  padding: 0 !important;
}
.cid-uNUOlvBq7G .container,
.cid-uNUOlvBq7G .container-small {
  max-width: 1440px;
}
.cid-uNUOlvBq7G .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #b63b07;
}
@media (max-width: 991px) {
  .cid-uNUOlvBq7G .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uNUOlvBq7G .text-box {
    padding: 50px 10px;
  }
}
.cid-uNUOlvBq7G .mbr-section-title {
  color: #131313;
}
.cid-uNUOlvBq7G .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uNUOlvBq7G .mbr-text {
  margin-top: 15px;
  color: #bbbbbb;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uNUOlvBq7G .mbr-text {
    margin-top: 20px;
  }
}
.cid-uNUOlvBq7G .mbr-text a {
  text-decoration: underline;
}
.cid-uNUOlvBq7G .mbr-section-btn {
  margin-top: 34px;
}
.cid-uNVWvBd9eU {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #b63b07;
}
.cid-uNVWvBd9eU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVWvBd9eU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVWvBd9eU .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uNVWvBd9eU .mbr-section-subtitle {
  margin-top: 30px;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNVWvBd9eU .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-uNVWvBd9eU .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uNVWvBd9eU .mbr-text {
    margin-top: 18px;
  }
}
.cid-uNVWvBd9eU .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-uNVWvBd9eU .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uNVWvBd9eU .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uO2QfE12Um {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-uO2QfE12Um .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO2QfE12Um .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO2QfE12Um .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uO2QfE12Um .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uO2QfE12Um .container {
    padding: 0 24px;
  }
}
.cid-uO2QfE12Um .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2QfE12Um .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uO2QfE12Um .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2QfE12Um .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uO2QfE12Um .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uO2QfE12Um .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uO2QfE12Um .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uO2QfE12Um .mbr-desc {
  color: #202020;
}
.cid-uO2QfE12Um .mbr-section-title {
  color: #202020;
}
.cid-uO2QfE12Um .mbr-date {
  color: #202020;
}
.cid-uIa7REu7Rx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
  overflow: hidden;
}
.cid-uIa7REu7Rx .mbr-text {
  color: #131313;
}
.cid-uIa7REu7Rx .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uNFEHe6F6A .custom-block {
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
}
.cid-uNFEHe6F6A .custom-img-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
  transition: transform 0.6s ease;
}
.cid-uNFEHe6F6A .custom-img-wrapper img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px dashed #fff;
  padding: 5px;
  transition: transform 0.4s ease;
}
.cid-uNFEHe6F6A .custom-img-wrapper img:hover {
  transform: scale(1.1) rotate(5deg) translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  animation: swing 0.8s ease;
}
.cid-uNFEHe6F6A .custom-img-wrapper.img1 {
  margin-left: 0;
  margin-top: 0;
}
.cid-uNFEHe6F6A .custom-img-wrapper.img2 {
  margin-left: 30px;
  margin-top: 30px;
}
.cid-uNFEHe6F6A .custom-img-wrapper.img3 {
  margin-left: 15px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uNFEHe6F6A .custom-img-wrapper {
    margin-left: 0 !important;
    margin-top: 20px !important;
  }
}
.cid-uNFEHe6F6A P {
  color: #ffffff;
}
.cid-uNFEHe6F6A H2 {
  color: #52210c;
}
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.cid-uNFEHe6F6A .custom-img-wrapper:hover {
  transform: translateY(-30px) translateX(20px);
  z-index: 10;
}
.cid-uNFEHerjsH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
  overflow: hidden;
}
.cid-uNFEHerjsH .mbr-text {
  color: #131313;
}
.cid-uNFEHerjsH .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uNV12flyd9 {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uNV12flyd9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNV12flyd9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNV12flyd9 .card-wrapper {
  overflow: hidden;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uNV12flyd9 .card-wrapper {
    display: block;
  }
}
.cid-uNV12flyd9 .card-wrapper .content-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uNV12flyd9 .card-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uNV12flyd9 .card-wrapper .content-wrapper {
  width: 70%;
  padding: 30px;
  background-color: #b63b07;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uNV12flyd9 .card-wrapper .content-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uNV12flyd9 .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uNV12flyd9 .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uNV12flyd9 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNV12flyd9 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uNV12flyd9 .mbr-section-title {
  color: #f4f4f4;
}
.cid-uNV12flyd9 .mbr-text {
  color: #d7d2d2;
}
.cid-uNV12flyd9 .mbr-text,
.cid-uNV12flyd9 .text-wrapper {
  color: #bbbbbb;
}
.cid-uNV12fLqSl {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uNV12fLqSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNV12fLqSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNV12fLqSl .container,
.cid-uNV12fLqSl .container-small,
.cid-uNV12fLqSl .container-fluid {
  padding: 0 !important;
}
.cid-uNV12fLqSl .container,
.cid-uNV12fLqSl .container-small {
  max-width: 1440px;
}
.cid-uNV12fLqSl .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #b63b07;
}
@media (max-width: 991px) {
  .cid-uNV12fLqSl .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uNV12fLqSl .text-box {
    padding: 50px 10px;
  }
}
.cid-uNV12fLqSl .mbr-section-title {
  color: #131313;
}
.cid-uNV12fLqSl .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uNV12fLqSl .mbr-text {
  margin-top: 5px;
  color: #bbbbbb;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uNV12fLqSl .mbr-text {
    margin-top: 20px;
  }
}
.cid-uNV12fLqSl .mbr-text a {
  text-decoration: underline;
}
.cid-uNV12fLqSl .mbr-section-btn {
  margin-top: 34px;
}
.cid-uNW6m3giyh {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #b63b07;
}
.cid-uNW6m3giyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW6m3giyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNW6m3giyh .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uNW6m3giyh .mbr-section-subtitle {
  margin-top: 30px;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNW6m3giyh .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-uNW6m3giyh .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uNW6m3giyh .mbr-text {
    margin-top: 18px;
  }
}
.cid-uNW6m3giyh .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-uNW6m3giyh .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uNW6m3giyh .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uO2QiHWAj6 {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-uO2QiHWAj6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO2QiHWAj6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO2QiHWAj6 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uO2QiHWAj6 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uO2QiHWAj6 .container {
    padding: 0 24px;
  }
}
.cid-uO2QiHWAj6 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2QiHWAj6 .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uO2QiHWAj6 .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2QiHWAj6 .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uO2QiHWAj6 .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uO2QiHWAj6 .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uO2QiHWAj6 .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uO2QiHWAj6 .mbr-desc {
  color: #202020;
}
.cid-uO2QiHWAj6 .mbr-section-title {
  color: #202020;
}
.cid-uO2QiHWAj6 .mbr-date {
  color: #202020;
}
.cid-uNV12g5810 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
  overflow: hidden;
}
.cid-uNV12g5810 .mbr-text {
  color: #131313;
}
.cid-uNV12g5810 .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uNVDpppRX8 {
  padding-top: 12rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uNVDpppRX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVDpppRX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVDpppRX8 .card-wrapper {
  overflow: hidden;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uNVDpppRX8 .card-wrapper {
    display: block;
  }
}
.cid-uNVDpppRX8 .card-wrapper .content-wrap {
  width: 50%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uNVDpppRX8 .card-wrapper .content-wrap {
    width: 100%;
  }
}
.cid-uNVDpppRX8 .card-wrapper .content-wrapper {
  width: 70%;
  padding: 30px;
  background-color: #b63b07;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uNVDpppRX8 .card-wrapper .content-wrapper {
    padding: 40px 20px;
    width: 100%;
  }
}
.cid-uNVDpppRX8 .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uNVDpppRX8 .card-wrapper .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uNVDpppRX8 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uNVDpppRX8 .card-wrapper .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uNVDpppRX8 .mbr-section-title {
  color: #f4f4f4;
}
.cid-uNVDpppRX8 .mbr-text {
  color: #d7d2d2;
}
.cid-uNVDppK5TO {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
}
.cid-uNVDppK5TO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVDppK5TO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVDppK5TO .container,
.cid-uNVDppK5TO .container-small,
.cid-uNVDppK5TO .container-fluid {
  padding: 0 !important;
}
.cid-uNVDppK5TO .container,
.cid-uNVDppK5TO .container-small {
  max-width: 1440px;
}
.cid-uNVDppK5TO .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #b63b07;
}
@media (max-width: 991px) {
  .cid-uNVDppK5TO .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uNVDppK5TO .text-box {
    padding: 50px 10px;
  }
}
.cid-uNVDppK5TO .mbr-section-title {
  color: #131313;
}
.cid-uNVDppK5TO .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uNVDppK5TO .mbr-text {
  margin-top: 5px;
  color: #bbbbbb;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uNVDppK5TO .mbr-text {
    margin-top: 20px;
  }
}
.cid-uNVDppK5TO .mbr-text a {
  text-decoration: underline;
}
.cid-uNVDppK5TO .mbr-section-btn {
  margin-top: 34px;
}
.cid-uNW7tMRt8a {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #b63b07;
}
.cid-uNW7tMRt8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNW7tMRt8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNW7tMRt8a .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-uNW7tMRt8a .mbr-section-subtitle {
  margin-top: 30px;
  color: #bbbbbb;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uNW7tMRt8a .mbr-section-subtitle {
    margin-top: 18px;
  }
}
.cid-uNW7tMRt8a .mbr-text {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uNW7tMRt8a .mbr-text {
    margin-top: 18px;
  }
}
.cid-uNW7tMRt8a .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .cid-uNW7tMRt8a .mbr-section-btn {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uNW7tMRt8a .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uO2Qm0Cwjx {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-uO2Qm0Cwjx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uO2Qm0Cwjx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uO2Qm0Cwjx .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uO2Qm0Cwjx .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uO2Qm0Cwjx .container {
    padding: 0 24px;
  }
}
.cid-uO2Qm0Cwjx .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 1.8rem;
  border: 1px solid #eeeeee;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2Qm0Cwjx .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uO2Qm0Cwjx .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uO2Qm0Cwjx .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uO2Qm0Cwjx .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uO2Qm0Cwjx .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uO2Qm0Cwjx .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uO2Qm0Cwjx .mbr-desc {
  color: #202020;
}
.cid-uO2Qm0Cwjx .mbr-section-title {
  color: #202020;
}
.cid-uO2Qm0Cwjx .mbr-date {
  color: #202020;
}
.cid-uNVDpq0656 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/fundo-de-tela-saberes-em-cena.png-1024x1536.png");
  overflow: hidden;
}
.cid-uNVDpq0656 .mbr-text {
  color: #131313;
}
.cid-uNVDpq0656 .media-container-row .mbr-text {
  color: #ffffff;
}
