body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 6.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-1 > .mbr-iconfont {
  font-size: 8.59375rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.475rem;
}
/* ---- 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.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8125rem;
    font-size: calc( 3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20))));
    letter-spacing: -0.038em;
  }
  .display-2 {
    font-size: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.944rem;
    font-size: calc( 1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.063rem + (1.18 - 1.063) * ((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: #ff9370 !important;
}
.bg-success {
  background-color: #4fb380 !important;
}
.bg-info {
  background-color: #4c82a2 !important;
}
.bg-warning {
  background-color: #e3d688 !important;
}
.bg-danger {
  background-color: #45b3df !important;
}
.btn-primary:after {
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ff9370 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:after {
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #9b8db7 !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info:after {
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info,
.btn-info:active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #4c82a2 !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success:after {
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success,
.btn-success:active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4fb380 !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning:after {
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e3d688 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:after {
  background: linear-gradient(to right, #45b3df 0 25%, transparent 25% 75%, #45b3df 75% 100%);
}
.btn-danger,
.btn-danger:active {
  background-color: #bee2ff !important;
  border-color: #bee2ff !important;
  color: #45b3df !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #bee2ff !important;
  border-color: #bee2ff !important;
  color: #45b3df !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #45b3df !important;
  background-color: #bee2ff !important;
  border-color: #bee2ff !important;
}
.btn-white:after {
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #f6f6f6 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black:after {
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black,
.btn-black:active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #303030 !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-primary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary-outline,
.btn-primary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9370;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff9370 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #9b8db7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9b8db7 !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: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info-outline,
.btn-info-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4c82a2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4c82a2 !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: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success-outline,
.btn-success-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4fb380;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4fb380 !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: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning-outline,
.btn-warning-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #e3d688;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e3d688 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #574e15 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #45b3df 0 25%, transparent 25% 75%, #45b3df 75% 100%);
}
.btn-danger-outline,
.btn-danger-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #45b3df;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #45b3df !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: #bee2ff !important;
  border-color: #bee2ff !important;
}
.btn-black-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black-outline,
.btn-black-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #303030;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #303030 !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: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-white-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white-outline,
.btn-white-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #f6f6f6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #f6f6f6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #777777 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ff9370 !important;
}
.text-secondary {
  color: #9b8db7 !important;
}
.text-success {
  color: #4fb380 !important;
}
.text-info {
  color: #4c82a2 !important;
}
.text-warning {
  color: #e3d688 !important;
}
.text-danger {
  color: #45b3df !important;
}
.text-white {
  color: #f6f6f6 !important;
}
.text-black {
  color: #303030 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff460a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #675688 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f6d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b4a5d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d0ba35 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1c7ca2 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c3c3c3 !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: #ff9370;
}
.nav-tabs .nav-link:not(.active) {
  color: #303030;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c82a2;
}
.alert-warning {
  background-color: #e3d688;
}
.alert-danger {
  background-color: #45b3df;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9370;
  border-color: #ff9370;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9370;
}
.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: #a8d9c0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbdd1;
}
.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: #f3fafd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #ff9370 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff9370;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9370;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9370;
}
.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: #ff9370;
  border-bottom-color: #ff9370;
}
.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: #ff9370 !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: #9b8db7 !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='%23ff9370' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.mbr-fonts-style a:not(.mbr-fonts-style) {
  position: relative;
}
.mbr-fonts-style a:not(.mbr-fonts-style):before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background: linear-gradient(to right, currentColor 0 25%, transparent 25% 75%, currentColor 75% 100%);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-fonts-style a:not(.mbr-fonts-style):hover:before {
  background-position: left;
}
.container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 86%;
  }
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 86%;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 10px 34px 15px;
  font-weight: 700 !important;
  transition: all 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  box-shadow: none !important;
  border-radius: 0 !important;
  letter-spacing: -0.025em;
}
.mbr-section-btn .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% - 34px * 2);
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-section-btn .btn.btn-primary {
  background-color: #ffe3db !important;
  border-color: #ffe3db !important;
}
.mbr-section-btn .btn.btn-black {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.mbr-section-btn .btn.btn-white {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.mbr-section-btn .btn:hover:after {
  background-position: left;
}
.cid-ttjgGSzu1K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ttjgGSzu1K nav.navbar {
  position: fixed;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #45b3df !important;
}
.cid-ttjgGSzu1K .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjgGSzu1K .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjgGSzu1K .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .dropdown-item:hover:before,
.cid-ttjgGSzu1K .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjgGSzu1K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjgGSzu1K .nav-link {
  position: relative;
}
.cid-ttjgGSzu1K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjgGSzu1K .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ttjgGSzu1K .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjgGSzu1K .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjgGSzu1K .dropdown-menu,
.cid-ttjgGSzu1K .navbar.opened {
  background: #ffffff !important;
}
.cid-ttjgGSzu1K .nav-item:focus,
.cid-ttjgGSzu1K .nav-link:focus {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjgGSzu1K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjgGSzu1K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjgGSzu1K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjgGSzu1K .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #45b3df !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjgGSzu1K .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjgGSzu1K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjgGSzu1K .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjgGSzu1K .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjgGSzu1K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjgGSzu1K .navbar.collapsed {
  justify-content: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjgGSzu1K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjgGSzu1K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjgGSzu1K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjgGSzu1K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjgGSzu1K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjgGSzu1K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjgGSzu1K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjgGSzu1K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjgGSzu1K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjgGSzu1K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjgGSzu1K .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjgGSzu1K .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjgGSzu1K .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjgGSzu1K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjgGSzu1K .dropdown-item.active,
.cid-ttjgGSzu1K .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjgGSzu1K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjgGSzu1K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ttjgGSzu1K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjgGSzu1K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjgGSzu1K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjgGSzu1K .navbar-buttons {
  text-align: center;
}
.cid-ttjgGSzu1K button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjgGSzu1K button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ttjgGSzu1K nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjgGSzu1K nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjgGSzu1K .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttjgGSzu1K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjgGSzu1K .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-ttjgGSzu1K .navbar {
    height: 70px;
  }
  .cid-ttjgGSzu1K .navbar.opened {
    height: auto;
  }
  .cid-ttjgGSzu1K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjgGSzu1K .container,
.cid-ttjgGSzu1K .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K .container,
  .cid-ttjgGSzu1K .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjgGSzu1K .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjgGSzu1K .navbar-collapse {
  min-height: 98px;
}
.cid-ttjgGSzu1K .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjgGSzu1K .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjgGSzu1K {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .navbar {
    min-height: 70px !important;
  }
  .cid-ttjgGSzu1K .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjgGSzu1K .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjgGSzu1K .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjgGSzu1K .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjgGSzu1K .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjgGSzu1K .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjgGSzu1K .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tGUq9KXw3E {
  background-image: url("../../../assets/images/oficinasdearte-1-1600x914.jpg");
}
.cid-tGUq9KXw3E .mbr-section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  background-color: #bcb3cf;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
}
.cid-tGUq9KXw3E .mbr-text {
  margin-bottom: 1.3rem;
}
.cid-tGUq9KXw3E .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tGUq9KXw3E .svg-1 path {
  fill: #ffffff;
}
.cid-tGUq9KXw3E .container-fluid {
  max-width: 1200px;
}
.cid-tGUq9KXw3E .mbr-arrow {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-tGUq9KXw3E {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .cid-tGUq9KXw3E .container-fluid {
    padding: 0 1rem;
  }
  .cid-tGUq9KXw3E .mbr-text {
    color: #343549;
  }
}
@media (min-width: 768px) {
  .cid-tGUq9KXw3E .container-fluid {
    padding: 0 1.8rem;
  }
}
.cid-tGUq9KXw3E .mbr-section-title {
  color: #ffffff;
}
.cid-tGUq9KXw3E .mbr-text,
.cid-tGUq9KXw3E .mbr-section-btn {
  color: #eaeaea;
}
.cid-tH0EBmO3cQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tH0EBmO3cQ .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-tH0EBmO3cQ .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-tH0EBmO3cQ .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-tH0EBmO3cQ .col-12 {
    margin-top: 30px;
  }
  .cid-tH0EBmO3cQ .col-12:first-child {
    margin-top: 0px;
  }
  .cid-tH0EBmO3cQ .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-tH0EBmO3cQ .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-tH0EBmO3cQ .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-tH0EBmO3cQ .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-tGUAVc6VRb {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tGUAVc6VRb .container-fluid {
  padding: 0 1.8rem;
  max-width: 1200px;
}
.cid-tGUAVc6VRb .mbr-section-subtitle {
  color: #45b3df;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
@media (min-width: 992px) {
  .cid-tGUAVc6VRb .right-block {
    padding-left: 4rem;
  }
}
.cid-tGUAVc6VRb .color-block {
  background-color: #e3d688;
  display: inline;
  padding: 0.5rem 0.8rem;
  color: #ffffff;
  float: left;
  border-radius: 10px;
  margin-right: 1rem;
  margin-top: 0.8rem;
}
.cid-tGUAVc6VRb i,
.cid-tGUAVc6VRb em {
  text-decoration: underline;
}
.cid-tGUAVc6VRb .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-tGUAVc6VRb .soc-item {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
  z-index: 1;
  background: #9b8db7;
  border-radius: 50%;
  position: relative;
  margin-right: 0.6rem;
}
.cid-tGUAVc6VRb .soc-item span {
  color: #ffffff;
  transition: all 0.3s;
}
.cid-tGUAVc6VRb .dot::before {
  content: '';
  margin: 0 10px 0 9px;
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  margin-top: -2.5px;
  border-radius: 50%;
  background: currentColor;
}
.cid-tGUAVc6VRb .link-card {
  color: #45b3df;
  transition: 0.3s;
  font-weight: 700;
}
.cid-tGUAVc6VRb .link-card:hover {
  color: #ff9370;
}
.cid-tGUAVc6VRb .block-flex {
  display: flex;
  margin-bottom: 1rem;
}
.cid-tGUAVc6VRb .wrapper-block {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.cid-tGUAVc6VRb .client-name {
  color: #fa9db7;
}
.cid-tGUAVc6VRb .items {
  margin-right: 1rem;
  margin-bottom: 0;
  color: #45b3df;
}
.cid-tGUAVc6VRb .soc-item1 {
  color: #9b8db7;
}
.cid-tGUAVc6VRb .soc-item2 {
  background-color: #bfd5e1;
  color: #bfd5e1;
}
.cid-tGUAVc6VRb .soc-item3 {
  background-color: #decf73;
  color: #decf73;
}
.cid-tGUAVc6VRb .block-column {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tGUAVc6VRb {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .cid-tGUAVc6VRb .social-list {
    justify-content: space-around;
  }
  .cid-tGUAVc6VRb .container-fluid {
    padding: 0 1rem;
  }
  .cid-tGUAVc6VRb .block-flex {
    justify-content: space-around;
  }
}
.cid-ugm2dvvCB1 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ugm2dvvCB1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm2dvvCB1 .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-ugm2dvvCB1 .container {
    padding: 0 16px;
  }
}
.cid-ugm2dvvCB1 .row {
  margin: 0 -28px;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-ugm2dvvCB1 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ugm2dvvCB1 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugm2dvvCB1 .item {
  padding: 0 28px;
  margin-bottom: 32px;
}
.cid-ugm2dvvCB1 .item:hover .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont,
.cid-ugm2dvvCB1 .item:focus .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont {
  transform: translateX(8px);
}
.cid-ugm2dvvCB1 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-ugm2dvvCB1 .item .item-wrapper .item-img img {
  height: 280px;
  object-fit: cover;
  margin-bottom: 26px;
}
.cid-ugm2dvvCB1 .item .item-wrapper .item-img .item-text {
  margin-bottom: 12px;
}
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
  flex-direction: row;
}
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline .mbr-iconfont {
  margin-left: 8px;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus,
.cid-ugm2dvvCB1 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus {
  transform: scale(1);
}
.cid-ugm2dvvCB1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugm2dvvCB1 .item-text {
  color: #000000;
}
.cid-ugm2dvvCB1 .auto-style1 {
  border-width: 0px;
}
.cid-tGUCzyuqrY {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #fa9db7;
}
@media (max-width: 767px) {
  .cid-tGUCzyuqrY {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}
.cid-tGUCzyuqrY .row > div,
.cid-tGUCzyuqrY .mbr-section-title {
  color: #ffffff;
}
.cid-uEvlWzFJ2D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uEvlWzFJ2D iframe,
.cid-uEvlWzFJ2D img,
.cid-uEvlWzFJ2D video {
  width: 100%;
}
.cid-uEvlWzFJ2D .container-fluid {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}
.cid-uEvlWzFJ2D .mbr-section-head {
  margin-bottom: 50px;
}
.cid-uEvlWzFJ2D .mbr-section-title {
  color: #9b8db7;
}
.cid-uEvlWzFJ2D .mbr-media {
  position: relative;
}
.cid-uEvlWzFJ2D .mbr-media:hover .icon-wrap {
  transform: translate(-50%, -50%) scale(1.3);
}
.cid-uEvlWzFJ2D .mbr-media img {
  width: 100%;
  object-fit: cover;
  min-height: 220px;
}
.cid-uEvlWzFJ2D .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 10px;
  border-radius: 50%;
  min-width: 67px;
  min-height: 67px;
  background-color: #f0e8f8;
  transition: transform 0.5s cubic-bezier(0.24, 0.3, 0, 0.98);
}
.cid-uEvlWzFJ2D .mbr-media span {
  font-size: 25px;
  transition: transform 0.5s cubic-bezier(0.24, 0.3, 0, 0.98);
  color: #9b8db7;
}
.cid-uEvlWzFJ2D .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uEvlWzFJ2D .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-uEvlWzFJ2D .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uEvlWzFJ2D .modalWindow .modalWindow-video {
  height: 100%;
  width: 80vw;
  margin: 0 auto;
}
.cid-uEvlWzFJ2D .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uEvlWzFJ2D .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tGUGvYZVfA {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #88d4f2;
}
.cid-tGUGvYZVfA rect {
  width: 85%;
  height: 90%;
}
.cid-tGUGvYZVfA .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-tGUGvYZVfA .mbr-text {
  margin: 0;
}
.cid-tGUGvYZVfA .mbr-iconfont {
  transition: all 0.3s;
  margin-left: 1rem;
}
.cid-tGUGvYZVfA .card-1 {
  margin-right: 2rem;
}
.cid-tGUGvYZVfA .card-3 {
  margin-left: 2rem;
}
.cid-tGUGvYZVfA .mbr-section-btn {
  margin-bottom: 1.6rem;
}
.cid-tGUGvYZVfA .mbr-section-btn .btn-underline {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}
.cid-tGUGvYZVfA .mbr-section-btn .btn-underline:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (min-width: 992px) {
  .cid-tGUGvYZVfA .media-container-row {
    margin: 0 2rem;
  }
}
.cid-tGUGvYZVfA .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tGUGvYZVfA .svg-1 path,
.cid-tGUGvYZVfA .svg-2 path {
  fill: #ffffff;
}
.cid-tGUGvYZVfA .svg-2 {
  position: absolute;
  top: 0;
}
.cid-tGUGvYZVfA .img-border {
  width: 186px;
  height: 186px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-tGUGvYZVfA .dinosaur-img {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  margin-top: 1rem;
}
.cid-tGUGvYZVfA .circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  right: 0%;
  top: 0%;
}
.cid-tGUGvYZVfA .circle1 {
  background-color: #9b8db7;
}
.cid-tGUGvYZVfA .circle2 {
  background-color: #e3d688;
}
.cid-tGUGvYZVfA .circle3 {
  background-color: #ff9370;
}
.cid-tGUGvYZVfA .card:hover .circle {
  position: absolute;
  right: 37%;
  top: 38%;
  animation: Orbita 2s linear infinite;
}
@keyframes Orbita {
  from {
    -webkit-transform: rotate(0deg) translateX(93px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(93px) rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .cid-tGUGvYZVfA {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .cid-tGUGvYZVfA .card {
    margin-bottom: 1rem;
  }
  .cid-tGUGvYZVfA .media-container-row {
    margin: 0;
  }
  .cid-tGUGvYZVfA .card-1 {
    margin-right: 0;
  }
  .cid-tGUGvYZVfA .card-3 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tGUGvYZVfA {
    padding-top: 45px;
    padding-bottom: 25px;
  }
  .cid-tGUGvYZVfA .mbr-text {
    padding: 0rem;
  }
}
.cid-tGUJnSmzyF {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #88d4f2;
}
.cid-tGUJnSmzyF rect {
  width: 85%;
  height: 90%;
}
.cid-tGUJnSmzyF .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-tGUJnSmzyF .mbr-text {
  margin: 0;
}
.cid-tGUJnSmzyF .mbr-iconfont {
  transition: all 0.3s;
  margin-left: 1rem;
}
.cid-tGUJnSmzyF .card-1 {
  margin-right: 2rem;
}
.cid-tGUJnSmzyF .card-3 {
  margin-left: 2rem;
}
.cid-tGUJnSmzyF .mbr-section-btn {
  margin-bottom: 1.6rem;
}
.cid-tGUJnSmzyF .mbr-section-btn .btn-underline {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}
.cid-tGUJnSmzyF .mbr-section-btn .btn-underline:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (min-width: 992px) {
  .cid-tGUJnSmzyF .media-container-row {
    margin: 0 2rem;
  }
}
.cid-tGUJnSmzyF .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-tGUJnSmzyF .svg-1 path,
.cid-tGUJnSmzyF .svg-2 path {
  fill: #ffffff;
}
.cid-tGUJnSmzyF .svg-2 {
  position: absolute;
  top: 0;
}
.cid-tGUJnSmzyF .img-border {
  width: 186px;
  height: 186px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-tGUJnSmzyF .dinosaur-img {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  margin-top: 1rem;
}
.cid-tGUJnSmzyF .circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  right: 0%;
  top: 0%;
}
.cid-tGUJnSmzyF .circle1 {
  background-color: #9b8db7;
}
.cid-tGUJnSmzyF .circle2 {
  background-color: #e3d688;
}
.cid-tGUJnSmzyF .circle3 {
  background-color: #ff9370;
}
.cid-tGUJnSmzyF .card:hover .circle {
  position: absolute;
  right: 37%;
  top: 38%;
  animation: Orbita 2s linear infinite;
}
@keyframes Orbita {
  from {
    -webkit-transform: rotate(0deg) translateX(93px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(93px) rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .cid-tGUJnSmzyF {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .cid-tGUJnSmzyF .card {
    margin-bottom: 1rem;
  }
  .cid-tGUJnSmzyF .media-container-row {
    margin: 0;
  }
  .cid-tGUJnSmzyF .card-1 {
    margin-right: 0;
  }
  .cid-tGUJnSmzyF .card-3 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tGUJnSmzyF {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .cid-tGUJnSmzyF .mbr-text {
    padding: 0rem;
  }
}
.cid-tGUEz00pd6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tGUEz00pd6 .card-title {
  margin: 0;
  color: #12265a;
  display: inline-block;
  width: auto;
}
.cid-tGUEz00pd6 .dash {
  width: 100%;
  padding: 2rem 2rem;
  border: 2px dashed #ffffff !important;
  border-radius: 30px;
}
.cid-tGUEz00pd6 .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-tGUEz00pd6 .imageContainer {
  position: relative;
}
.cid-tGUEz00pd6 .imageContainer img {
  width: 65%;
  border-radius: 30px;
}
.cid-tGUEz00pd6 .form-title {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-tGUEz00pd6 .form-group {
  padding: 0rem;
}
.cid-tGUEz00pd6 .textarea {
  height: 8rem;
}
.cid-tGUEz00pd6 .container-fluid {
  max-width: 1200px;
  padding: 0 1.8rem;
}
.cid-tGUEz00pd6 .mbr-section-btn {
  margin: 0;
}
.cid-tGUEz00pd6 .btn {
  margin: 0;
  width: 100%;
}
.cid-tGUEz00pd6 .btn:hover {
  background-color: #ffa68a !important;
}
.cid-tGUEz00pd6 .circle-icon {
  width: 100%;
  display: block;
  margin-bottom: 1.7rem;
  text-align: left;
}
.cid-tGUEz00pd6 .circle-icon > * {
  display: inline-block;
  vertical-align: middle;
}
.cid-tGUEz00pd6 .wgl-icon {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  position: relative;
  background-color: #45b3df;
}
.cid-tGUEz00pd6 .icon1 {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  top: 8px;
  left: 8px;
}
.cid-tGUEz00pd6 .mbr-text {
  margin-top: 2rem;
}
.cid-tGUEz00pd6 .itemList {
  margin-top: 2rem;
}
.cid-tGUEz00pd6 .dragArea {
  position: absolute;
  top: 4rem;
  right: 0;
  background-color: #9b8db7;
  border-radius: 30px;
  padding: 1.5rem;
  width: 350px;
}
@media (max-width: 767px) {
  .cid-tGUEz00pd6 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cid-tGUEz00pd6 .imageContainer img {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-tGUEz00pd6 .left-wrapper {
    margin-top: 2.5rem;
    padding: 0;
    text-align: center;
  }
  .cid-tGUEz00pd6 .row {
    margin: 0rem;
  }
  .cid-tGUEz00pd6 .container-fluid {
    padding: 0 1rem;
  }
  .cid-tGUEz00pd6 .mbr-text {
    text-align: left;
  }
  .cid-tGUEz00pd6 .dragArea {
    position: static;
    width: 100%;
    padding: 1rem;
  }
  .cid-tGUEz00pd6 .dash {
    padding: 1rem 1rem;
  }
  .cid-tGUEz00pd6 .imageContainer {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tGUEz00pd6 .left-wrapper {
    padding-left: 5.2rem;
    margin-top: 4rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .cid-tGUEz00pd6 .dragArea {
    right: 4rem;
  }
  .cid-tGUEz00pd6 .left-wrapper {
    margin-top: 2.5rem;
  }
}
.cid-uecGYgkfLj {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-uecGYgkfLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uecGYgkfLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uecGYgkfLj .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uecGYgkfLj .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uecGYgkfLj .container {
    padding: 0 24px;
  }
}
.cid-uecGYgkfLj .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-uecGYgkfLj .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-uecGYgkfLj .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uecGYgkfLj .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-uecGYgkfLj .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uecGYgkfLj .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-uecGYgkfLj .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-uecGYgkfLj .mbr-desc {
  color: #202020;
}
.cid-uecGYgkfLj .mbr-section-title {
  color: #202020;
}
.cid-uecGYgkfLj .mbr-date {
  color: #202020;
}
.cid-tGUEELbu0J {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #2d4073;
}
.cid-tGUEELbu0J .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-tGUEELbu0J .group-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-tGUEELbu0J .navbar-logo {
  width: 110px;
}
.cid-tGUEELbu0J .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tGUEELbu0J .text2 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tGUEELbu0J .links {
  margin-top: 2rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-tGUEELbu0J .navbar-brand {
  margin: 0rem;
  width: 100%;
  margin-top: -1.5rem;
}
.cid-tGUEELbu0J .list-item {
  display: flex;
  padding: 0;
  margin-bottom: 10px !important;
  align-items: center;
}
.cid-tGUEELbu0J .list-item .item-image,
.cid-tGUEELbu0J .list-item .social-data {
  display: inline-block;
  vertical-align: middle;
}
.cid-tGUEELbu0J .tips {
  height: 75px;
  width: 75px;
  border-radius: 20px;
  margin: 4px;
  display: inline-block;
}
.cid-tGUEELbu0J .socicon {
  font-size: 1.3rem;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 0.5rem;
}
.cid-tGUEELbu0J .socicon:hover {
  transform: translate(0, -10px);
}
.cid-tGUEELbu0J .socion1 {
  background: #9b8db7;
}
.cid-tGUEELbu0J .socion2 {
  background-color: #bfd5e1;
}
.cid-tGUEELbu0J .socion3 {
  background-color: #decf73;
}
.cid-tGUEELbu0J .social-list {
  margin-top: 2rem;
  display: block;
  margin-bottom: 0;
}
.cid-tGUEELbu0J .social-list .soc-item {
  display: inline-block;
  margin: 0 .3rem;
}
.cid-tGUEELbu0J .social-list a {
  transition: .2s linear;
}
.cid-tGUEELbu0J .social-list a:hover {
  opacity: .4;
}
.cid-tGUEELbu0J .wrapper {
  background: #2d4073;
  padding: 2rem;
  border-radius: 30px;
}
.cid-tGUEELbu0J .svg-1 {
  position: absolute;
  top: 0;
}
.cid-tGUEELbu0J .svg-1 path {
  fill: #ffffff;
}
.cid-tGUEELbu0J .item-image {
  margin-right: 2rem;
}
.cid-tGUEELbu0J [class*=" socicon-"]:before {
  line-height: 1;
  margin-left: -1px;
}
.cid-tGUEELbu0J .soc-item::after {
  display: none;
}
.cid-tGUEELbu0J .icon1 {
  font-size: 2rem;
  font-weight: 300;
  color: #9b8db7;
}
.cid-tGUEELbu0J .icon2 {
  font-size: 2rem;
  font-weight: 300;
  color: #e3d688;
}
.cid-tGUEELbu0J .icon3 {
  font-size: 2rem;
  font-weight: 300;
  color: #ff9370;
}
@media (max-width: 991px) {
  .cid-tGUEELbu0J .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-tGUEELbu0J .group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .cid-tGUEELbu0J .tips {
    width: 100%;
    height: auto;
    max-width: 103px;
  }
}
@media (max-width: 767px) {
  .cid-tGUEELbu0J {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .cid-tGUEELbu0J .container-fluid {
    padding: 0 1rem;
  }
  .cid-tGUEELbu0J .wrapper {
    padding: 1rem;
  }
}
.cid-tGUEZKF8xQ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #223668;
}
.cid-tGUEZKF8xQ svg {
  position: absolute;
  top: 0;
}
.cid-tGUEZKF8xQ .svg-1 {
  fill: #2d4073;
}
.cid-tGUEZKF8xQ .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-tGUEZKF8xQ {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-tGUEZKF8xQ .mbr-text {
  color: #b1bee0;
}
.cid-tGUEZKF8xQ a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-ugbeHyzAhB {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ugbeHyzAhB nav.navbar {
  position: fixed;
}
.cid-ugbeHyzAhB .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-ugbeHyzAhB .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #45b3df !important;
}
.cid-ugbeHyzAhB .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ugbeHyzAhB .dropdown-item:after {
  right: 1rem !important;
}
.cid-ugbeHyzAhB .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugbeHyzAhB .dropdown-item:hover:before,
.cid-ugbeHyzAhB .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ugbeHyzAhB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugbeHyzAhB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugbeHyzAhB .nav-link {
  position: relative;
}
.cid-ugbeHyzAhB .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugbeHyzAhB .container {
    flex-wrap: nowrap;
  }
}
.cid-ugbeHyzAhB .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ugbeHyzAhB .navbar-nav .nav-item {
  margin: 0;
}
.cid-ugbeHyzAhB .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ugbeHyzAhB .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugbeHyzAhB .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ugbeHyzAhB .dropdown-menu,
.cid-ugbeHyzAhB .navbar.opened {
  background: #ffffff !important;
}
.cid-ugbeHyzAhB .nav-item:focus,
.cid-ugbeHyzAhB .nav-link:focus {
  outline: none;
}
.cid-ugbeHyzAhB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugbeHyzAhB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugbeHyzAhB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugbeHyzAhB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugbeHyzAhB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugbeHyzAhB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugbeHyzAhB .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #45b3df !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ugbeHyzAhB .navbar.opened {
  transition: all 0.3s;
}
.cid-ugbeHyzAhB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugbeHyzAhB .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ugbeHyzAhB .navbar .navbar-logo img {
  width: auto;
}
.cid-ugbeHyzAhB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugbeHyzAhB .navbar.collapsed {
  justify-content: center;
}
.cid-ugbeHyzAhB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugbeHyzAhB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugbeHyzAhB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugbeHyzAhB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugbeHyzAhB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugbeHyzAhB .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-ugbeHyzAhB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugbeHyzAhB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugbeHyzAhB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugbeHyzAhB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugbeHyzAhB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugbeHyzAhB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugbeHyzAhB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugbeHyzAhB .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-ugbeHyzAhB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugbeHyzAhB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugbeHyzAhB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugbeHyzAhB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugbeHyzAhB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugbeHyzAhB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugbeHyzAhB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugbeHyzAhB .navbar.navbar-short {
  min-height: 100px;
}
.cid-ugbeHyzAhB .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ugbeHyzAhB .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ugbeHyzAhB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugbeHyzAhB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugbeHyzAhB .dropdown-item.active,
.cid-ugbeHyzAhB .dropdown-item:active {
  background-color: transparent;
}
.cid-ugbeHyzAhB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugbeHyzAhB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugbeHyzAhB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugbeHyzAhB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugbeHyzAhB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugbeHyzAhB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugbeHyzAhB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugbeHyzAhB .navbar-buttons {
  text-align: center;
}
.cid-ugbeHyzAhB button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ugbeHyzAhB button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ugbeHyzAhB button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugbeHyzAhB button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ugbeHyzAhB button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ugbeHyzAhB button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugbeHyzAhB nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ugbeHyzAhB nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ugbeHyzAhB nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ugbeHyzAhB nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugbeHyzAhB nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ugbeHyzAhB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugbeHyzAhB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugbeHyzAhB .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-ugbeHyzAhB .navbar {
    height: 70px;
  }
  .cid-ugbeHyzAhB .navbar.opened {
    height: auto;
  }
  .cid-ugbeHyzAhB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugbeHyzAhB .container,
.cid-ugbeHyzAhB .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugbeHyzAhB .container,
  .cid-ugbeHyzAhB .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugbeHyzAhB .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ugbeHyzAhB .navbar-collapse {
  min-height: 98px;
}
.cid-ugbeHyzAhB .mbr-section-btn {
  max-width: 35%;
}
.cid-ugbeHyzAhB .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ugbeHyzAhB {
    min-height: 70px !important;
  }
  .cid-ugbeHyzAhB .navbar {
    min-height: 70px !important;
  }
  .cid-ugbeHyzAhB .container-fluid {
    padding: 0 7%;
  }
  .cid-ugbeHyzAhB .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ugbeHyzAhB .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ugbeHyzAhB .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ugbeHyzAhB .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ugbeHyzAhB .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ugbeHyzAhB .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ugbeHyzAhB .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ugbeHyzAhB .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ugbeHyzAhB .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ugbeHyzAhB .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ugbeHz2y8E {
  background-image: url("../../../assets/images/joanavegana02-1600x914.jpg");
}
.cid-ugbeHz2y8E .mbr-section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  background-color: #bcb3cf;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
}
.cid-ugbeHz2y8E .mbr-text {
  margin-bottom: 1.3rem;
}
.cid-ugbeHz2y8E .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugbeHz2y8E .svg-1 path {
  fill: #ffffff;
}
.cid-ugbeHz2y8E .container-fluid {
  max-width: 1200px;
}
.cid-ugbeHz2y8E .mbr-arrow {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-ugbeHz2y8E {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .cid-ugbeHz2y8E .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugbeHz2y8E .mbr-text {
    color: #343549;
  }
}
@media (min-width: 768px) {
  .cid-ugbeHz2y8E .container-fluid {
    padding: 0 1.8rem;
  }
}
.cid-ugbeHz2y8E .mbr-section-title {
  color: #ffffff;
}
.cid-ugbeHz2y8E .mbr-text,
.cid-ugbeHz2y8E .mbr-section-btn {
  color: #eaeaea;
}
.cid-ugbeHzv5yi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugbeHzv5yi .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-ugbeHzv5yi .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-ugbeHzv5yi .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-ugbeHzv5yi .col-12 {
    margin-top: 30px;
  }
  .cid-ugbeHzv5yi .col-12:first-child {
    margin-top: 0px;
  }
  .cid-ugbeHzv5yi .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-ugbeHzv5yi .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-ugbeHzv5yi .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-ugbeHzv5yi .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-ugbiYqWRyk {
  background-color: #ade7ca;
}
.cid-ugbiYqWRyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbiYqWRyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugbiYqWRyk .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugbiYqWRyk .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugbiYqWRyk .container {
    padding: 0 24px;
  }
}
.cid-ugbiYqWRyk .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #18874f;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .content-wrapper {
    display: block;
  }
}
.cid-ugbiYqWRyk .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-ugbiYqWRyk .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-ugbiYqWRyk .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #ffffff;
}
.cid-ugbiYqWRyk .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ugbiYqWRyk .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-ugbiYqWRyk .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-ugbiYqWRyk .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ugbiYqWRyk .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-ugbiYqWRyk .mbr-section-title {
  color: #18212d;
}
.cid-ugbiYqWRyk .mbr-desc {
  color: #18212d;
}
.cid-ugbiYqWRyk .mbr-text {
  color: #ffffff;
}
.cid-ugbiYqWRyk .mbr-section-title,
.cid-ugbiYqWRyk .mbr-section-btn {
  color: #f0e8f8;
}
.cid-ugbeHEbtEm {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-ugbeHEbtEm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbeHEbtEm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugbeHEbtEm .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ugbeHEbtEm .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugbeHEbtEm .container {
    padding: 0 24px;
  }
}
.cid-ugbeHEbtEm .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-ugbeHEbtEm .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ugbeHEbtEm .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-ugbeHEbtEm .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ugbeHEbtEm .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ugbeHEbtEm .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-ugbeHEbtEm .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-ugbeHEbtEm .mbr-desc {
  color: #202020;
}
.cid-ugbeHEbtEm .mbr-section-title {
  color: #202020;
}
.cid-ugbeHEbtEm .mbr-date {
  color: #202020;
}
.cid-ugbeHEHAvE {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #2d4073;
}
.cid-ugbeHEHAvE .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugbeHEHAvE .group-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugbeHEHAvE .navbar-logo {
  width: 110px;
}
.cid-ugbeHEHAvE .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugbeHEHAvE .text2 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugbeHEHAvE .links {
  margin-top: 2rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugbeHEHAvE .navbar-brand {
  margin: 0rem;
  width: 100%;
  margin-top: -1.5rem;
}
.cid-ugbeHEHAvE .list-item {
  display: flex;
  padding: 0;
  margin-bottom: 10px !important;
  align-items: center;
}
.cid-ugbeHEHAvE .list-item .item-image,
.cid-ugbeHEHAvE .list-item .social-data {
  display: inline-block;
  vertical-align: middle;
}
.cid-ugbeHEHAvE .tips {
  height: 75px;
  width: 75px;
  border-radius: 20px;
  margin: 4px;
  display: inline-block;
}
.cid-ugbeHEHAvE .socicon {
  font-size: 1.3rem;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 0.5rem;
}
.cid-ugbeHEHAvE .socicon:hover {
  transform: translate(0, -10px);
}
.cid-ugbeHEHAvE .socion1 {
  background: #9b8db7;
}
.cid-ugbeHEHAvE .socion2 {
  background-color: #bfd5e1;
}
.cid-ugbeHEHAvE .socion3 {
  background-color: #decf73;
}
.cid-ugbeHEHAvE .social-list {
  margin-top: 2rem;
  display: block;
  margin-bottom: 0;
}
.cid-ugbeHEHAvE .social-list .soc-item {
  display: inline-block;
  margin: 0 .3rem;
}
.cid-ugbeHEHAvE .social-list a {
  transition: .2s linear;
}
.cid-ugbeHEHAvE .social-list a:hover {
  opacity: .4;
}
.cid-ugbeHEHAvE .wrapper {
  background: #2d4073;
  padding: 2rem;
  border-radius: 30px;
}
.cid-ugbeHEHAvE .svg-1 {
  position: absolute;
  top: 0;
}
.cid-ugbeHEHAvE .svg-1 path {
  fill: #ffffff;
}
.cid-ugbeHEHAvE .item-image {
  margin-right: 2rem;
}
.cid-ugbeHEHAvE [class*=" socicon-"]:before {
  line-height: 1;
  margin-left: -1px;
}
.cid-ugbeHEHAvE .soc-item::after {
  display: none;
}
.cid-ugbeHEHAvE .icon1 {
  font-size: 2rem;
  font-weight: 300;
  color: #9b8db7;
}
.cid-ugbeHEHAvE .icon2 {
  font-size: 2rem;
  font-weight: 300;
  color: #e3d688;
}
.cid-ugbeHEHAvE .icon3 {
  font-size: 2rem;
  font-weight: 300;
  color: #ff9370;
}
@media (max-width: 991px) {
  .cid-ugbeHEHAvE .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugbeHEHAvE .group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .cid-ugbeHEHAvE .tips {
    width: 100%;
    height: auto;
    max-width: 103px;
  }
}
@media (max-width: 767px) {
  .cid-ugbeHEHAvE {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .cid-ugbeHEHAvE .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugbeHEHAvE .wrapper {
    padding: 1rem;
  }
}
.cid-ugbeHFqH19 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #223668;
}
.cid-ugbeHFqH19 svg {
  position: absolute;
  top: 0;
}
.cid-ugbeHFqH19 .svg-1 {
  fill: #2d4073;
}
.cid-ugbeHFqH19 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ugbeHFqH19 {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ugbeHFqH19 .mbr-text {
  color: #b1bee0;
}
.cid-ugbeHFqH19 a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-ugblGvPYZW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ugblGvPYZW nav.navbar {
  position: fixed;
}
.cid-ugblGvPYZW .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-ugblGvPYZW .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #45b3df !important;
}
.cid-ugblGvPYZW .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ugblGvPYZW .dropdown-item:after {
  right: 1rem !important;
}
.cid-ugblGvPYZW .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugblGvPYZW .dropdown-item:hover:before,
.cid-ugblGvPYZW .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ugblGvPYZW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugblGvPYZW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugblGvPYZW .nav-link {
  position: relative;
}
.cid-ugblGvPYZW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugblGvPYZW .container {
    flex-wrap: nowrap;
  }
}
.cid-ugblGvPYZW .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ugblGvPYZW .navbar-nav .nav-item {
  margin: 0;
}
.cid-ugblGvPYZW .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ugblGvPYZW .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugblGvPYZW .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ugblGvPYZW .dropdown-menu,
.cid-ugblGvPYZW .navbar.opened {
  background: #ffffff !important;
}
.cid-ugblGvPYZW .nav-item:focus,
.cid-ugblGvPYZW .nav-link:focus {
  outline: none;
}
.cid-ugblGvPYZW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugblGvPYZW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugblGvPYZW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugblGvPYZW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugblGvPYZW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugblGvPYZW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugblGvPYZW .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #45b3df !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ugblGvPYZW .navbar.opened {
  transition: all 0.3s;
}
.cid-ugblGvPYZW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugblGvPYZW .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ugblGvPYZW .navbar .navbar-logo img {
  width: auto;
}
.cid-ugblGvPYZW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugblGvPYZW .navbar.collapsed {
  justify-content: center;
}
.cid-ugblGvPYZW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugblGvPYZW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugblGvPYZW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugblGvPYZW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugblGvPYZW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugblGvPYZW .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-ugblGvPYZW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugblGvPYZW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugblGvPYZW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugblGvPYZW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugblGvPYZW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugblGvPYZW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugblGvPYZW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugblGvPYZW .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-ugblGvPYZW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugblGvPYZW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugblGvPYZW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugblGvPYZW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugblGvPYZW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugblGvPYZW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugblGvPYZW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugblGvPYZW .navbar.navbar-short {
  min-height: 100px;
}
.cid-ugblGvPYZW .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ugblGvPYZW .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ugblGvPYZW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugblGvPYZW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugblGvPYZW .dropdown-item.active,
.cid-ugblGvPYZW .dropdown-item:active {
  background-color: transparent;
}
.cid-ugblGvPYZW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugblGvPYZW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugblGvPYZW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugblGvPYZW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugblGvPYZW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugblGvPYZW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugblGvPYZW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugblGvPYZW .navbar-buttons {
  text-align: center;
}
.cid-ugblGvPYZW button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ugblGvPYZW button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ugblGvPYZW button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugblGvPYZW button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ugblGvPYZW button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ugblGvPYZW button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugblGvPYZW nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ugblGvPYZW nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ugblGvPYZW nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ugblGvPYZW nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugblGvPYZW nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ugblGvPYZW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugblGvPYZW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugblGvPYZW .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-ugblGvPYZW .navbar {
    height: 70px;
  }
  .cid-ugblGvPYZW .navbar.opened {
    height: auto;
  }
  .cid-ugblGvPYZW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugblGvPYZW .container,
.cid-ugblGvPYZW .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugblGvPYZW .container,
  .cid-ugblGvPYZW .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugblGvPYZW .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ugblGvPYZW .navbar-collapse {
  min-height: 98px;
}
.cid-ugblGvPYZW .mbr-section-btn {
  max-width: 35%;
}
.cid-ugblGvPYZW .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ugblGvPYZW {
    min-height: 70px !important;
  }
  .cid-ugblGvPYZW .navbar {
    min-height: 70px !important;
  }
  .cid-ugblGvPYZW .container-fluid {
    padding: 0 7%;
  }
  .cid-ugblGvPYZW .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ugblGvPYZW .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ugblGvPYZW .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ugblGvPYZW .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ugblGvPYZW .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ugblGvPYZW .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ugblGvPYZW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ugblGvPYZW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ugblGvPYZW .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ugblGvPYZW .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ugblGwmTJO {
  background-image: url("../../../assets/images/foto-espetaculo-2-2000x1333.jpg");
}
.cid-ugblGwmTJO .mbr-section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  background-color: #bcb3cf;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
}
.cid-ugblGwmTJO .mbr-text {
  margin-bottom: 1.3rem;
}
.cid-ugblGwmTJO .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugblGwmTJO .svg-1 path {
  fill: #ffffff;
}
.cid-ugblGwmTJO .container-fluid {
  max-width: 1200px;
}
.cid-ugblGwmTJO .mbr-arrow {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-ugblGwmTJO {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .cid-ugblGwmTJO .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugblGwmTJO .mbr-text {
    color: #343549;
  }
}
@media (min-width: 768px) {
  .cid-ugblGwmTJO .container-fluid {
    padding: 0 1.8rem;
  }
}
.cid-ugblGwmTJO .mbr-section-title {
  color: #ffffff;
}
.cid-ugblGwmTJO .mbr-text,
.cid-ugblGwmTJO .mbr-section-btn {
  color: #eaeaea;
}
.cid-ugblGwQfGr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugblGwQfGr .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-ugblGwQfGr .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-ugblGwQfGr .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-ugblGwQfGr .col-12 {
    margin-top: 30px;
  }
  .cid-ugblGwQfGr .col-12:first-child {
    margin-top: 0px;
  }
  .cid-ugblGwQfGr .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-ugblGwQfGr .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-ugblGwQfGr .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-ugblGwQfGr .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-ugblGxhlHw {
  background-color: #9b8db7;
}
.cid-ugblGxhlHw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugblGxhlHw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugblGxhlHw .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugblGxhlHw .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugblGxhlHw .container {
    padding: 0 24px;
  }
}
.cid-ugblGxhlHw .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #533d7e;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .content-wrapper {
    display: block;
  }
}
.cid-ugblGxhlHw .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-ugblGxhlHw .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-ugblGxhlHw .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #ffffff;
}
.cid-ugblGxhlHw .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ugblGxhlHw .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-ugblGxhlHw .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-ugblGxhlHw .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ugblGxhlHw .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-ugblGxhlHw .mbr-section-title {
  color: #18212d;
}
.cid-ugblGxhlHw .mbr-desc {
  color: #18212d;
}
.cid-ugblGxhlHw .mbr-text {
  color: #ffffff;
}
.cid-ugblGxhlHw .mbr-section-title,
.cid-ugblGxhlHw .mbr-section-btn {
  color: #f0e8f8;
}
.cid-ugblGxMccP {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-ugblGxMccP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugblGxMccP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugblGxMccP .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ugblGxMccP .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugblGxMccP .container {
    padding: 0 24px;
  }
}
.cid-ugblGxMccP .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-ugblGxMccP .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ugblGxMccP .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-ugblGxMccP .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ugblGxMccP .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ugblGxMccP .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-ugblGxMccP .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-ugblGxMccP .mbr-desc {
  color: #202020;
}
.cid-ugblGxMccP .mbr-section-title {
  color: #202020;
}
.cid-ugblGxMccP .mbr-date {
  color: #202020;
}
.cid-ugblGygoE3 {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #2d4073;
}
.cid-ugblGygoE3 .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugblGygoE3 .group-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugblGygoE3 .navbar-logo {
  width: 110px;
}
.cid-ugblGygoE3 .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugblGygoE3 .text2 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugblGygoE3 .links {
  margin-top: 2rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugblGygoE3 .navbar-brand {
  margin: 0rem;
  width: 100%;
  margin-top: -1.5rem;
}
.cid-ugblGygoE3 .list-item {
  display: flex;
  padding: 0;
  margin-bottom: 10px !important;
  align-items: center;
}
.cid-ugblGygoE3 .list-item .item-image,
.cid-ugblGygoE3 .list-item .social-data {
  display: inline-block;
  vertical-align: middle;
}
.cid-ugblGygoE3 .tips {
  height: 75px;
  width: 75px;
  border-radius: 20px;
  margin: 4px;
  display: inline-block;
}
.cid-ugblGygoE3 .socicon {
  font-size: 1.3rem;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 0.5rem;
}
.cid-ugblGygoE3 .socicon:hover {
  transform: translate(0, -10px);
}
.cid-ugblGygoE3 .socion1 {
  background: #9b8db7;
}
.cid-ugblGygoE3 .socion2 {
  background-color: #bfd5e1;
}
.cid-ugblGygoE3 .socion3 {
  background-color: #decf73;
}
.cid-ugblGygoE3 .social-list {
  margin-top: 2rem;
  display: block;
  margin-bottom: 0;
}
.cid-ugblGygoE3 .social-list .soc-item {
  display: inline-block;
  margin: 0 .3rem;
}
.cid-ugblGygoE3 .social-list a {
  transition: .2s linear;
}
.cid-ugblGygoE3 .social-list a:hover {
  opacity: .4;
}
.cid-ugblGygoE3 .wrapper {
  background: #2d4073;
  padding: 2rem;
  border-radius: 30px;
}
.cid-ugblGygoE3 .svg-1 {
  position: absolute;
  top: 0;
}
.cid-ugblGygoE3 .svg-1 path {
  fill: #ffffff;
}
.cid-ugblGygoE3 .item-image {
  margin-right: 2rem;
}
.cid-ugblGygoE3 [class*=" socicon-"]:before {
  line-height: 1;
  margin-left: -1px;
}
.cid-ugblGygoE3 .soc-item::after {
  display: none;
}
.cid-ugblGygoE3 .icon1 {
  font-size: 2rem;
  font-weight: 300;
  color: #9b8db7;
}
.cid-ugblGygoE3 .icon2 {
  font-size: 2rem;
  font-weight: 300;
  color: #e3d688;
}
.cid-ugblGygoE3 .icon3 {
  font-size: 2rem;
  font-weight: 300;
  color: #ff9370;
}
@media (max-width: 991px) {
  .cid-ugblGygoE3 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugblGygoE3 .group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .cid-ugblGygoE3 .tips {
    width: 100%;
    height: auto;
    max-width: 103px;
  }
}
@media (max-width: 767px) {
  .cid-ugblGygoE3 {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .cid-ugblGygoE3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugblGygoE3 .wrapper {
    padding: 1rem;
  }
}
.cid-ugblGyZ7jL {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #223668;
}
.cid-ugblGyZ7jL svg {
  position: absolute;
  top: 0;
}
.cid-ugblGyZ7jL .svg-1 {
  fill: #2d4073;
}
.cid-ugblGyZ7jL .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ugblGyZ7jL {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ugblGyZ7jL .mbr-text {
  color: #b1bee0;
}
.cid-ugblGyZ7jL a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-ugkCLcMbcg {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ugkCLcMbcg nav.navbar {
  position: fixed;
}
.cid-ugkCLcMbcg .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-ugkCLcMbcg .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #45b3df !important;
}
.cid-ugkCLcMbcg .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ugkCLcMbcg .dropdown-item:after {
  right: 1rem !important;
}
.cid-ugkCLcMbcg .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugkCLcMbcg .dropdown-item:hover:before,
.cid-ugkCLcMbcg .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ugkCLcMbcg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugkCLcMbcg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugkCLcMbcg .nav-link {
  position: relative;
}
.cid-ugkCLcMbcg .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugkCLcMbcg .container {
    flex-wrap: nowrap;
  }
}
.cid-ugkCLcMbcg .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ugkCLcMbcg .navbar-nav .nav-item {
  margin: 0;
}
.cid-ugkCLcMbcg .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ugkCLcMbcg .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugkCLcMbcg .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ugkCLcMbcg .dropdown-menu,
.cid-ugkCLcMbcg .navbar.opened {
  background: #ffffff !important;
}
.cid-ugkCLcMbcg .nav-item:focus,
.cid-ugkCLcMbcg .nav-link:focus {
  outline: none;
}
.cid-ugkCLcMbcg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugkCLcMbcg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugkCLcMbcg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugkCLcMbcg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugkCLcMbcg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugkCLcMbcg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugkCLcMbcg .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #45b3df !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ugkCLcMbcg .navbar.opened {
  transition: all 0.3s;
}
.cid-ugkCLcMbcg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugkCLcMbcg .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ugkCLcMbcg .navbar .navbar-logo img {
  width: auto;
}
.cid-ugkCLcMbcg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugkCLcMbcg .navbar.collapsed {
  justify-content: center;
}
.cid-ugkCLcMbcg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugkCLcMbcg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugkCLcMbcg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugkCLcMbcg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugkCLcMbcg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugkCLcMbcg .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-ugkCLcMbcg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugkCLcMbcg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugkCLcMbcg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugkCLcMbcg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugkCLcMbcg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugkCLcMbcg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugkCLcMbcg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugkCLcMbcg .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-ugkCLcMbcg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugkCLcMbcg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugkCLcMbcg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugkCLcMbcg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugkCLcMbcg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugkCLcMbcg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugkCLcMbcg .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugkCLcMbcg .navbar.navbar-short {
  min-height: 100px;
}
.cid-ugkCLcMbcg .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ugkCLcMbcg .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ugkCLcMbcg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugkCLcMbcg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugkCLcMbcg .dropdown-item.active,
.cid-ugkCLcMbcg .dropdown-item:active {
  background-color: transparent;
}
.cid-ugkCLcMbcg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugkCLcMbcg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugkCLcMbcg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugkCLcMbcg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugkCLcMbcg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugkCLcMbcg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugkCLcMbcg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugkCLcMbcg .navbar-buttons {
  text-align: center;
}
.cid-ugkCLcMbcg button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ugkCLcMbcg button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ugkCLcMbcg button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugkCLcMbcg button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ugkCLcMbcg button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ugkCLcMbcg button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugkCLcMbcg nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ugkCLcMbcg nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ugkCLcMbcg nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ugkCLcMbcg nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugkCLcMbcg nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ugkCLcMbcg .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugkCLcMbcg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugkCLcMbcg .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-ugkCLcMbcg .navbar {
    height: 70px;
  }
  .cid-ugkCLcMbcg .navbar.opened {
    height: auto;
  }
  .cid-ugkCLcMbcg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugkCLcMbcg .container,
.cid-ugkCLcMbcg .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugkCLcMbcg .container,
  .cid-ugkCLcMbcg .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugkCLcMbcg .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ugkCLcMbcg .navbar-collapse {
  min-height: 98px;
}
.cid-ugkCLcMbcg .mbr-section-btn {
  max-width: 35%;
}
.cid-ugkCLcMbcg .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ugkCLcMbcg {
    min-height: 70px !important;
  }
  .cid-ugkCLcMbcg .navbar {
    min-height: 70px !important;
  }
  .cid-ugkCLcMbcg .container-fluid {
    padding: 0 7%;
  }
  .cid-ugkCLcMbcg .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ugkCLcMbcg .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ugkCLcMbcg .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ugkCLcMbcg .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ugkCLcMbcg .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ugkCLcMbcg .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ugkCLcMbcg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ugkCLcMbcg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ugkCLcMbcg .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ugkCLcMbcg .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ugkCLd4OlB {
  background-image: url("../../../assets/images/ilhadiana-ia01-1920x1098.jpg");
}
.cid-ugkCLd4OlB .mbr-section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  background-color: #bcb3cf;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
}
.cid-ugkCLd4OlB .mbr-text {
  margin-bottom: 1.3rem;
}
.cid-ugkCLd4OlB .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugkCLd4OlB .svg-1 path {
  fill: #ffffff;
}
.cid-ugkCLd4OlB .container-fluid {
  max-width: 1200px;
}
.cid-ugkCLd4OlB .mbr-arrow {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-ugkCLd4OlB {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .cid-ugkCLd4OlB .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugkCLd4OlB .mbr-text {
    color: #343549;
  }
}
@media (min-width: 768px) {
  .cid-ugkCLd4OlB .container-fluid {
    padding: 0 1.8rem;
  }
}
.cid-ugkCLd4OlB .mbr-section-title {
  color: #ffffff;
}
.cid-ugkCLd4OlB .mbr-text,
.cid-ugkCLd4OlB .mbr-section-btn {
  color: #eaeaea;
}
.cid-ugkCLdlOKb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugkCLdlOKb .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-ugkCLdlOKb .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-ugkCLdlOKb .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-ugkCLdlOKb .col-12 {
    margin-top: 30px;
  }
  .cid-ugkCLdlOKb .col-12:first-child {
    margin-top: 0px;
  }
  .cid-ugkCLdlOKb .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-ugkCLdlOKb .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-ugkCLdlOKb .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-ugkCLdlOKb .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-ugkCLdCUC7 {
  background-color: #accee2;
}
.cid-ugkCLdCUC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkCLdCUC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkCLdCUC7 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugkCLdCUC7 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ugkCLdCUC7 .container {
    padding: 0 24px;
  }
}
.cid-ugkCLdCUC7 .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #1b577a;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .content-wrapper {
    display: block;
  }
}
.cid-ugkCLdCUC7 .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-ugkCLdCUC7 .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-ugkCLdCUC7 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #ffffff;
}
.cid-ugkCLdCUC7 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ugkCLdCUC7 .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-ugkCLdCUC7 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-ugkCLdCUC7 .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ugkCLdCUC7 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-ugkCLdCUC7 .mbr-section-title {
  color: #18212d;
}
.cid-ugkCLdCUC7 .mbr-desc {
  color: #18212d;
}
.cid-ugkCLdCUC7 .mbr-text {
  color: #ffffff;
}
.cid-ugkCLdCUC7 .mbr-section-title,
.cid-ugkCLdCUC7 .mbr-section-btn {
  color: #f0e8f8;
}
.cid-ugkCLdT9sn {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-ugkCLdT9sn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugkCLdT9sn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugkCLdT9sn .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ugkCLdT9sn .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugkCLdT9sn .container {
    padding: 0 24px;
  }
}
.cid-ugkCLdT9sn .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-ugkCLdT9sn .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ugkCLdT9sn .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-ugkCLdT9sn .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ugkCLdT9sn .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ugkCLdT9sn .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-ugkCLdT9sn .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-ugkCLdT9sn .mbr-desc {
  color: #202020;
}
.cid-ugkCLdT9sn .mbr-section-title {
  color: #202020;
}
.cid-ugkCLdT9sn .mbr-date {
  color: #202020;
}
.cid-ugkCLebfFu {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #2d4073;
}
.cid-ugkCLebfFu .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugkCLebfFu .group-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugkCLebfFu .navbar-logo {
  width: 110px;
}
.cid-ugkCLebfFu .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugkCLebfFu .text2 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugkCLebfFu .links {
  margin-top: 2rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugkCLebfFu .navbar-brand {
  margin: 0rem;
  width: 100%;
  margin-top: -1.5rem;
}
.cid-ugkCLebfFu .list-item {
  display: flex;
  padding: 0;
  margin-bottom: 10px !important;
  align-items: center;
}
.cid-ugkCLebfFu .list-item .item-image,
.cid-ugkCLebfFu .list-item .social-data {
  display: inline-block;
  vertical-align: middle;
}
.cid-ugkCLebfFu .tips {
  height: 75px;
  width: 75px;
  border-radius: 20px;
  margin: 4px;
  display: inline-block;
}
.cid-ugkCLebfFu .socicon {
  font-size: 1.3rem;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 0.5rem;
}
.cid-ugkCLebfFu .socicon:hover {
  transform: translate(0, -10px);
}
.cid-ugkCLebfFu .socion1 {
  background: #9b8db7;
}
.cid-ugkCLebfFu .socion2 {
  background-color: #bfd5e1;
}
.cid-ugkCLebfFu .socion3 {
  background-color: #decf73;
}
.cid-ugkCLebfFu .social-list {
  margin-top: 2rem;
  display: block;
  margin-bottom: 0;
}
.cid-ugkCLebfFu .social-list .soc-item {
  display: inline-block;
  margin: 0 .3rem;
}
.cid-ugkCLebfFu .social-list a {
  transition: .2s linear;
}
.cid-ugkCLebfFu .social-list a:hover {
  opacity: .4;
}
.cid-ugkCLebfFu .wrapper {
  background: #2d4073;
  padding: 2rem;
  border-radius: 30px;
}
.cid-ugkCLebfFu .svg-1 {
  position: absolute;
  top: 0;
}
.cid-ugkCLebfFu .svg-1 path {
  fill: #ffffff;
}
.cid-ugkCLebfFu .item-image {
  margin-right: 2rem;
}
.cid-ugkCLebfFu [class*=" socicon-"]:before {
  line-height: 1;
  margin-left: -1px;
}
.cid-ugkCLebfFu .soc-item::after {
  display: none;
}
.cid-ugkCLebfFu .icon1 {
  font-size: 2rem;
  font-weight: 300;
  color: #9b8db7;
}
.cid-ugkCLebfFu .icon2 {
  font-size: 2rem;
  font-weight: 300;
  color: #e3d688;
}
.cid-ugkCLebfFu .icon3 {
  font-size: 2rem;
  font-weight: 300;
  color: #ff9370;
}
@media (max-width: 991px) {
  .cid-ugkCLebfFu .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugkCLebfFu .group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .cid-ugkCLebfFu .tips {
    width: 100%;
    height: auto;
    max-width: 103px;
  }
}
@media (max-width: 767px) {
  .cid-ugkCLebfFu {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .cid-ugkCLebfFu .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugkCLebfFu .wrapper {
    padding: 1rem;
  }
}
.cid-ugkCLeFcY9 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #223668;
}
.cid-ugkCLeFcY9 svg {
  position: absolute;
  top: 0;
}
.cid-ugkCLeFcY9 .svg-1 {
  fill: #2d4073;
}
.cid-ugkCLeFcY9 .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ugkCLeFcY9 {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ugkCLeFcY9 .mbr-text {
  color: #b1bee0;
}
.cid-ugkCLeFcY9 a {
  text-decoration: underline;
  font-weight: 400 !important;
}
.cid-ugm4FiNeus {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ugm4FiNeus nav.navbar {
  position: fixed;
}
.cid-ugm4FiNeus .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-ugm4FiNeus .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 2px solid #45b3df !important;
}
.cid-ugm4FiNeus .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ugm4FiNeus .dropdown-item:after {
  right: 1rem !important;
}
.cid-ugm4FiNeus .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugm4FiNeus .dropdown-item:hover:before,
.cid-ugm4FiNeus .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ugm4FiNeus .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugm4FiNeus .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugm4FiNeus .nav-link {
  position: relative;
}
.cid-ugm4FiNeus .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugm4FiNeus .container {
    flex-wrap: nowrap;
  }
}
.cid-ugm4FiNeus .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-ugm4FiNeus .navbar-nav .nav-item {
  margin: 0;
}
.cid-ugm4FiNeus .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ugm4FiNeus .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ugm4FiNeus .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ugm4FiNeus .dropdown-menu,
.cid-ugm4FiNeus .navbar.opened {
  background: #ffffff !important;
}
.cid-ugm4FiNeus .nav-item:focus,
.cid-ugm4FiNeus .nav-link:focus {
  outline: none;
}
.cid-ugm4FiNeus .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugm4FiNeus .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugm4FiNeus .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugm4FiNeus .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugm4FiNeus .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugm4FiNeus .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugm4FiNeus .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-bottom: 2px solid #45b3df !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ugm4FiNeus .navbar.opened {
  transition: all 0.3s;
}
.cid-ugm4FiNeus .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugm4FiNeus .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ugm4FiNeus .navbar .navbar-logo img {
  width: auto;
}
.cid-ugm4FiNeus .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugm4FiNeus .navbar.collapsed {
  justify-content: center;
}
.cid-ugm4FiNeus .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugm4FiNeus .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugm4FiNeus .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugm4FiNeus .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugm4FiNeus .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugm4FiNeus .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-ugm4FiNeus .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugm4FiNeus .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugm4FiNeus .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugm4FiNeus .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugm4FiNeus .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugm4FiNeus .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugm4FiNeus .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugm4FiNeus .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-ugm4FiNeus .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugm4FiNeus .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugm4FiNeus .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugm4FiNeus .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugm4FiNeus .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugm4FiNeus .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugm4FiNeus .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugm4FiNeus .navbar.navbar-short {
  min-height: 100px;
}
.cid-ugm4FiNeus .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ugm4FiNeus .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-ugm4FiNeus .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugm4FiNeus .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugm4FiNeus .dropdown-item.active,
.cid-ugm4FiNeus .dropdown-item:active {
  background-color: transparent;
}
.cid-ugm4FiNeus .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugm4FiNeus .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugm4FiNeus .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugm4FiNeus .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ugm4FiNeus .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugm4FiNeus .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugm4FiNeus ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugm4FiNeus .navbar-buttons {
  text-align: center;
}
.cid-ugm4FiNeus button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ugm4FiNeus button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ugm4FiNeus button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugm4FiNeus button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ugm4FiNeus button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ugm4FiNeus button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugm4FiNeus nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ugm4FiNeus nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ugm4FiNeus nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ugm4FiNeus nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ugm4FiNeus nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ugm4FiNeus .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ugm4FiNeus a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugm4FiNeus .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-ugm4FiNeus .navbar {
    height: 70px;
  }
  .cid-ugm4FiNeus .navbar.opened {
    height: auto;
  }
  .cid-ugm4FiNeus .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugm4FiNeus .container,
.cid-ugm4FiNeus .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ugm4FiNeus .container,
  .cid-ugm4FiNeus .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ugm4FiNeus .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ugm4FiNeus .navbar-collapse {
  min-height: 98px;
}
.cid-ugm4FiNeus .mbr-section-btn {
  max-width: 35%;
}
.cid-ugm4FiNeus .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ugm4FiNeus {
    min-height: 70px !important;
  }
  .cid-ugm4FiNeus .navbar {
    min-height: 70px !important;
  }
  .cid-ugm4FiNeus .container-fluid {
    padding: 0 7%;
  }
  .cid-ugm4FiNeus .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-ugm4FiNeus .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ugm4FiNeus .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ugm4FiNeus .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ugm4FiNeus .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ugm4FiNeus .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ugm4FiNeus .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ugm4FiNeus .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ugm4FiNeus .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ugm4FiNeus .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ugm4FjkIg4 {
  background-image: url("../../../assets/images/oficinasdearte-1-1600x914.jpg");
}
.cid-ugm4FjkIg4 .mbr-section-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  background-color: #bcb3cf;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
}
.cid-ugm4FjkIg4 .mbr-text {
  margin-bottom: 1.3rem;
}
.cid-ugm4FjkIg4 .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugm4FjkIg4 .svg-1 path {
  fill: #ffffff;
}
.cid-ugm4FjkIg4 .container-fluid {
  max-width: 1200px;
}
.cid-ugm4FjkIg4 .mbr-arrow {
  z-index: 1;
}
@media (max-width: 767px) {
  .cid-ugm4FjkIg4 {
    padding-top: 30px;
    padding-bottom: 25px;
  }
  .cid-ugm4FjkIg4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugm4FjkIg4 .mbr-text {
    color: #343549;
  }
}
@media (min-width: 768px) {
  .cid-ugm4FjkIg4 .container-fluid {
    padding: 0 1.8rem;
  }
}
.cid-ugm4FjkIg4 .mbr-section-title {
  color: #ffffff;
}
.cid-ugm4FjkIg4 .mbr-text,
.cid-ugm4FjkIg4 .mbr-section-btn {
  color: #eaeaea;
}
.cid-ugm4FjMjpK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugm4FjMjpK .item-wrapper {
  position: relative;
  overflow: initial;
}
.cid-ugm4FjMjpK .item-img:before {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cid-ugm4FjMjpK .item:hover .item-img:before {
  opacity: 0.3;
}
@media (max-width: 992px) {
  .cid-ugm4FjMjpK .col-12 {
    margin-top: 30px;
  }
  .cid-ugm4FjMjpK .col-12:first-child {
    margin-top: 0px;
  }
  .cid-ugm4FjMjpK .col-12:nth-child(2) {
    margin-top: 0px;
  }
  .cid-ugm4FjMjpK .col-12:nth-child(3) {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .cid-ugm4FjMjpK .col-12:nth-child(2) {
    margin-top: 30px;
  }
  .cid-ugm4FjMjpK .col-12:nth-child(3) {
    margin-top: 30px;
  }
}
.cid-ugm4FkhyCK {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ugm4FkhyCK .container-fluid {
  padding: 0 1.8rem;
  max-width: 1200px;
}
.cid-ugm4FkhyCK .mbr-section-subtitle {
  color: #45b3df;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
@media (min-width: 992px) {
  .cid-ugm4FkhyCK .right-block {
    padding-left: 4rem;
  }
}
.cid-ugm4FkhyCK .color-block {
  background-color: #e3d688;
  display: inline;
  padding: 0.5rem 0.8rem;
  color: #ffffff;
  float: left;
  border-radius: 10px;
  margin-right: 1rem;
  margin-top: 0.8rem;
}
.cid-ugm4FkhyCK i,
.cid-ugm4FkhyCK em {
  text-decoration: underline;
}
.cid-ugm4FkhyCK .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-ugm4FkhyCK .soc-item {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
  z-index: 1;
  background: #9b8db7;
  border-radius: 50%;
  position: relative;
  margin-right: 0.6rem;
}
.cid-ugm4FkhyCK .soc-item span {
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ugm4FkhyCK .dot::before {
  content: '';
  margin: 0 10px 0 9px;
  display: inline-block;
  width: 5px;
  height: 5px;
  vertical-align: middle;
  margin-top: -2.5px;
  border-radius: 50%;
  background: currentColor;
}
.cid-ugm4FkhyCK .link-card {
  color: #45b3df;
  transition: 0.3s;
  font-weight: 700;
}
.cid-ugm4FkhyCK .link-card:hover {
  color: #ff9370;
}
.cid-ugm4FkhyCK .block-flex {
  display: flex;
  margin-bottom: 1rem;
}
.cid-ugm4FkhyCK .wrapper-block {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.cid-ugm4FkhyCK .client-name {
  color: #fa9db7;
}
.cid-ugm4FkhyCK .items {
  margin-right: 1rem;
  margin-bottom: 0;
  color: #45b3df;
}
.cid-ugm4FkhyCK .soc-item1 {
  color: #9b8db7;
}
.cid-ugm4FkhyCK .soc-item2 {
  background-color: #bfd5e1;
  color: #bfd5e1;
}
.cid-ugm4FkhyCK .soc-item3 {
  background-color: #decf73;
  color: #decf73;
}
.cid-ugm4FkhyCK .block-column {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-ugm4FkhyCK {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  .cid-ugm4FkhyCK .social-list {
    justify-content: space-around;
  }
  .cid-ugm4FkhyCK .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugm4FkhyCK .block-flex {
    justify-content: space-around;
  }
}
.cid-ugm4FkWFaL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugm4FkWFaL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm4FkWFaL .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-ugm4FkWFaL .container {
    padding: 0 16px;
  }
}
.cid-ugm4FkWFaL .row {
  margin: 0 -28px;
  position: relative;
  z-index: 1;
  justify-content: center;
}
.cid-ugm4FkWFaL .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ugm4FkWFaL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-ugm4FkWFaL .item {
  padding: 0 28px;
  margin-bottom: 32px;
}
.cid-ugm4FkWFaL .item:hover .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont,
.cid-ugm4FkWFaL .item:focus .item-wrapper .item-content .mbr-section-btn .btn .mbr-iconfont {
  transform: translateX(8px);
}
.cid-ugm4FkWFaL .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-ugm4FkWFaL .item .item-wrapper .item-img img {
  height: 280px;
  object-fit: cover;
  margin-bottom: 26px;
}
.cid-ugm4FkWFaL .item .item-wrapper .item-img .item-text {
  margin-bottom: 12px;
}
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0;
  border: none !important;
  flex-direction: row;
}
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline .mbr-iconfont,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline .mbr-iconfont {
  margin-left: 8px;
  margin-right: 0;
  transition: all 0.3s ease-in-out;
}
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus,
.cid-ugm4FkWFaL .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus {
  transform: scale(1);
}
.cid-ugm4FkWFaL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-ugm4FkWFaL .item-text {
  color: #000000;
}
.cid-ugm4Flu4wC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ugm4Flu4wC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm4Flu4wC .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-ugm4Flu4wC .container {
    padding: 0 30px;
  }
}
.cid-ugm4Flu4wC .row {
  justify-content: center;
}
.cid-ugm4Flu4wC .desc-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-ugm4Flu4wC .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugm4Flu4wC .mbr-desc {
  color: #144031;
}
.cid-ugm4Flu4wC .mbr-text {
  color: #144031;
}
.cid-ugm4Fm1l0i {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #fa9db7;
}
@media (max-width: 767px) {
  .cid-ugm4Fm1l0i {
    padding-top: 25px;
    padding-bottom: 0px;
  }
}
.cid-ugm4Fmy6cF {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #fa9db7;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-ugm4Fmy6cF .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-ugm4Fmy6cF .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugm4Fmy6cF .carousel-inner {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
.cid-ugm4Fmy6cF .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ugm4Fmy6cF .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-ugm4Fmy6cF .row > .row {
  display: block;
}
.cid-ugm4Fmy6cF .mbr-gallery-item {
  width: 100%;
}
.cid-ugm4Fmy6cF .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #45b3df;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
  border-radius: 30px;
  background: linear-gradient(to left, #45b3df, #45505b) !important;
}
.cid-ugm4Fmy6cF .mbr-gallery-item > div {
  position: relative;
  transition: 0.5s;
  margin: 0.3rem;
  border-radius: 30px;
  overflow: hidden;
}
.cid-ugm4Fmy6cF .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-ugm4Fmy6cF .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-ugm4Fmy6cF .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #ffffff;
  z-index: 2;
}
.cid-ugm4Fmy6cF .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #45b3df !important;
  opacity: 0.7;
  transition: 0.2s background ease-in-out;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(to left, #45b3df, #45505b) !important;
}
.cid-ugm4Fmy6cF .container {
  max-width: 1200px;
  padding: 0.7rem;
}
.cid-ugm4Fmy6cF .mbr-gallery-item > div:hover {
  transform: translate(1rem, 1rem);
}
@media (max-width: 767px) {
  .cid-ugm4Fmy6cF {
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .cid-ugm4Fmy6cF .col-sm-12 {
    padding: 0 !important;
  }
}
.cid-ugm4FnUcHc {
  padding-top: 135px;
  padding-bottom: 75px;
  background-color: #88d4f2;
}
.cid-ugm4FnUcHc rect {
  width: 85%;
  height: 90%;
}
.cid-ugm4FnUcHc .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugm4FnUcHc .mbr-text {
  margin: 0;
}
.cid-ugm4FnUcHc .mbr-iconfont {
  transition: all 0.3s;
  margin-left: 1rem;
}
.cid-ugm4FnUcHc .card-1 {
  margin-right: 2rem;
}
.cid-ugm4FnUcHc .card-3 {
  margin-left: 2rem;
}
.cid-ugm4FnUcHc .mbr-section-btn {
  margin-bottom: 1.6rem;
}
.cid-ugm4FnUcHc .mbr-section-btn .btn-underline {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}
.cid-ugm4FnUcHc .mbr-section-btn .btn-underline:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (min-width: 992px) {
  .cid-ugm4FnUcHc .media-container-row {
    margin: 0 2rem;
  }
}
.cid-ugm4FnUcHc .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugm4FnUcHc .svg-1 path,
.cid-ugm4FnUcHc .svg-2 path {
  fill: #ffffff;
}
.cid-ugm4FnUcHc .svg-2 {
  position: absolute;
  top: 0;
}
.cid-ugm4FnUcHc .img-border {
  width: 186px;
  height: 186px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-ugm4FnUcHc .dinosaur-img {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  margin-top: 1rem;
}
.cid-ugm4FnUcHc .circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  right: 0%;
  top: 0%;
}
.cid-ugm4FnUcHc .circle1 {
  background-color: #9b8db7;
}
.cid-ugm4FnUcHc .circle2 {
  background-color: #e3d688;
}
.cid-ugm4FnUcHc .circle3 {
  background-color: #ff9370;
}
.cid-ugm4FnUcHc .card:hover .circle {
  position: absolute;
  right: 37%;
  top: 38%;
  animation: Orbita 2s linear infinite;
}
@keyframes Orbita {
  from {
    -webkit-transform: rotate(0deg) translateX(93px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(93px) rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .cid-ugm4FnUcHc {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .cid-ugm4FnUcHc .card {
    margin-bottom: 1rem;
  }
  .cid-ugm4FnUcHc .media-container-row {
    margin: 0;
  }
  .cid-ugm4FnUcHc .card-1 {
    margin-right: 0;
  }
  .cid-ugm4FnUcHc .card-3 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-ugm4FnUcHc {
    padding-top: 45px;
    padding-bottom: 25px;
  }
  .cid-ugm4FnUcHc .mbr-text {
    padding: 0rem;
  }
}
.cid-ugm4FoBVLR {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #88d4f2;
}
.cid-ugm4FoBVLR rect {
  width: 85%;
  height: 90%;
}
.cid-ugm4FoBVLR .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugm4FoBVLR .mbr-text {
  margin: 0;
}
.cid-ugm4FoBVLR .mbr-iconfont {
  transition: all 0.3s;
  margin-left: 1rem;
}
.cid-ugm4FoBVLR .card-1 {
  margin-right: 2rem;
}
.cid-ugm4FoBVLR .card-3 {
  margin-left: 2rem;
}
.cid-ugm4FoBVLR .mbr-section-btn {
  margin-bottom: 1.6rem;
}
.cid-ugm4FoBVLR .mbr-section-btn .btn-underline {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}
.cid-ugm4FoBVLR .mbr-section-btn .btn-underline:hover .icon-btn {
  transform: rotateZ(180deg);
}
@media (min-width: 992px) {
  .cid-ugm4FoBVLR .media-container-row {
    margin: 0 2rem;
  }
}
.cid-ugm4FoBVLR .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-ugm4FoBVLR .svg-1 path,
.cid-ugm4FoBVLR .svg-2 path {
  fill: #ffffff;
}
.cid-ugm4FoBVLR .svg-2 {
  position: absolute;
  top: 0;
}
.cid-ugm4FoBVLR .img-border {
  width: 186px;
  height: 186px;
  border: 2px dashed #ffffff;
  border-radius: 50%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.cid-ugm4FoBVLR .dinosaur-img {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translate(-50%);
  width: 120px;
  margin-top: 1rem;
}
.cid-ugm4FoBVLR .circle {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  right: 0%;
  top: 0%;
}
.cid-ugm4FoBVLR .circle1 {
  background-color: #9b8db7;
}
.cid-ugm4FoBVLR .circle2 {
  background-color: #e3d688;
}
.cid-ugm4FoBVLR .circle3 {
  background-color: #ff9370;
}
.cid-ugm4FoBVLR .card:hover .circle {
  position: absolute;
  right: 37%;
  top: 38%;
  animation: Orbita 2s linear infinite;
}
@keyframes Orbita {
  from {
    -webkit-transform: rotate(0deg) translateX(93px) rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg) translateX(93px) rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .cid-ugm4FoBVLR {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .cid-ugm4FoBVLR .card {
    margin-bottom: 1rem;
  }
  .cid-ugm4FoBVLR .media-container-row {
    margin: 0;
  }
  .cid-ugm4FoBVLR .card-1 {
    margin-right: 0;
  }
  .cid-ugm4FoBVLR .card-3 {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cid-ugm4FoBVLR {
    padding-top: 25px;
    padding-bottom: 20px;
  }
  .cid-ugm4FoBVLR .mbr-text {
    padding: 0rem;
  }
}
.cid-ugm4FpgzLq {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-ugm4FpgzLq .card-title {
  margin: 0;
  color: #12265a;
  display: inline-block;
  width: auto;
}
.cid-ugm4FpgzLq .dash {
  width: 100%;
  padding: 2rem 2rem;
  border: 2px dashed #ffffff !important;
  border-radius: 30px;
}
.cid-ugm4FpgzLq .mbr-section-subtitle {
  margin-bottom: 2rem;
}
.cid-ugm4FpgzLq .imageContainer {
  position: relative;
}
.cid-ugm4FpgzLq .imageContainer img {
  width: 65%;
  border-radius: 30px;
}
.cid-ugm4FpgzLq .form-title {
  color: #ffffff;
  margin-bottom: 1.7rem;
}
.cid-ugm4FpgzLq .form-group {
  padding: 0rem;
}
.cid-ugm4FpgzLq .textarea {
  height: 8rem;
}
.cid-ugm4FpgzLq .container-fluid {
  max-width: 1200px;
  padding: 0 1.8rem;
}
.cid-ugm4FpgzLq .mbr-section-btn {
  margin: 0;
}
.cid-ugm4FpgzLq .btn {
  margin: 0;
  width: 100%;
}
.cid-ugm4FpgzLq .btn:hover {
  background-color: #ffa68a !important;
}
.cid-ugm4FpgzLq .circle-icon {
  width: 100%;
  display: block;
  margin-bottom: 1.7rem;
  text-align: left;
}
.cid-ugm4FpgzLq .circle-icon > * {
  display: inline-block;
  vertical-align: middle;
}
.cid-ugm4FpgzLq .wgl-icon {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  position: relative;
  background-color: #45b3df;
}
.cid-ugm4FpgzLq .icon1 {
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
  position: absolute;
  top: 8px;
  left: 8px;
}
.cid-ugm4FpgzLq .mbr-text {
  margin-top: 2rem;
}
.cid-ugm4FpgzLq .itemList {
  margin-top: 2rem;
}
.cid-ugm4FpgzLq .dragArea {
  position: absolute;
  top: 4rem;
  right: 0;
  background-color: #9b8db7;
  border-radius: 30px;
  padding: 1.5rem;
  width: 350px;
}
@media (max-width: 767px) {
  .cid-ugm4FpgzLq {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .cid-ugm4FpgzLq .imageContainer img {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  .cid-ugm4FpgzLq .left-wrapper {
    margin-top: 2.5rem;
    padding: 0;
    text-align: center;
  }
  .cid-ugm4FpgzLq .row {
    margin: 0rem;
  }
  .cid-ugm4FpgzLq .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugm4FpgzLq .mbr-text {
    text-align: left;
  }
  .cid-ugm4FpgzLq .dragArea {
    position: static;
    width: 100%;
    padding: 1rem;
  }
  .cid-ugm4FpgzLq .dash {
    padding: 1rem 1rem;
  }
  .cid-ugm4FpgzLq .imageContainer {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-ugm4FpgzLq .left-wrapper {
    padding-left: 5.2rem;
    margin-top: 4rem;
  }
}
@media (min-width: 767px) and (max-width: 991px) {
  .cid-ugm4FpgzLq .dragArea {
    right: 4rem;
  }
  .cid-ugm4FpgzLq .left-wrapper {
    margin-top: 2.5rem;
  }
}
.cid-ugm4FpZujU {
  padding-top: 0rem;
  padding-bottom: 9rem;
  overflow: hidden;
  background-image: url("../../../assets/images/barra-lpg6-2000x195.jpg");
}
.cid-ugm4FpZujU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugm4FpZujU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugm4FpZujU .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ugm4FpZujU .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ugm4FpZujU .container {
    padding: 0 24px;
  }
}
.cid-ugm4FpZujU .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-ugm4FpZujU .content-wrapper .desc-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ugm4FpZujU .content-wrapper .mbr-section-title {
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-ugm4FpZujU .content-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ugm4FpZujU .content-wrapper .date-wrapper .date-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-ugm4FpZujU .content-wrapper .date-wrapper .date-wrap .mbr-iconfont {
  font-size: 40px;
  margin-right: 16px;
  color: #bbbbbb;
}
.cid-ugm4FpZujU .content-wrapper .date-wrapper .date-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-ugm4FpZujU .mbr-desc {
  color: #202020;
}
.cid-ugm4FpZujU .mbr-section-title {
  color: #202020;
}
.cid-ugm4FpZujU .mbr-date {
  color: #202020;
}
.cid-ugm4FqDdAr {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #2d4073;
}
.cid-ugm4FqDdAr .container-fluid {
  max-width: 1200px;
  padding: 0 1.5rem;
}
.cid-ugm4FqDdAr .group-title {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugm4FqDdAr .navbar-logo {
  width: 110px;
}
.cid-ugm4FqDdAr .mbr-text {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugm4FqDdAr .text2 {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-ugm4FqDdAr .links {
  margin-top: 2rem;
  color: #ffffff;
  line-height: 1.6;
}
.cid-ugm4FqDdAr .navbar-brand {
  margin: 0rem;
  width: 100%;
  margin-top: -1.5rem;
}
.cid-ugm4FqDdAr .list-item {
  display: flex;
  padding: 0;
  margin-bottom: 10px !important;
  align-items: center;
}
.cid-ugm4FqDdAr .list-item .item-image,
.cid-ugm4FqDdAr .list-item .social-data {
  display: inline-block;
  vertical-align: middle;
}
.cid-ugm4FqDdAr .tips {
  height: 75px;
  width: 75px;
  border-radius: 20px;
  margin: 4px;
  display: inline-block;
}
.cid-ugm4FqDdAr .socicon {
  font-size: 1.3rem;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  margin-right: 0.5rem;
}
.cid-ugm4FqDdAr .socicon:hover {
  transform: translate(0, -10px);
}
.cid-ugm4FqDdAr .socion1 {
  background: #9b8db7;
}
.cid-ugm4FqDdAr .socion2 {
  background-color: #bfd5e1;
}
.cid-ugm4FqDdAr .socion3 {
  background-color: #decf73;
}
.cid-ugm4FqDdAr .social-list {
  margin-top: 2rem;
  display: block;
  margin-bottom: 0;
}
.cid-ugm4FqDdAr .social-list .soc-item {
  display: inline-block;
  margin: 0 .3rem;
}
.cid-ugm4FqDdAr .social-list a {
  transition: .2s linear;
}
.cid-ugm4FqDdAr .social-list a:hover {
  opacity: .4;
}
.cid-ugm4FqDdAr .wrapper {
  background: #2d4073;
  padding: 2rem;
  border-radius: 30px;
}
.cid-ugm4FqDdAr .svg-1 {
  position: absolute;
  top: 0;
}
.cid-ugm4FqDdAr .svg-1 path {
  fill: #ffffff;
}
.cid-ugm4FqDdAr .item-image {
  margin-right: 2rem;
}
.cid-ugm4FqDdAr [class*=" socicon-"]:before {
  line-height: 1;
  margin-left: -1px;
}
.cid-ugm4FqDdAr .soc-item::after {
  display: none;
}
.cid-ugm4FqDdAr .icon1 {
  font-size: 2rem;
  font-weight: 300;
  color: #9b8db7;
}
.cid-ugm4FqDdAr .icon2 {
  font-size: 2rem;
  font-weight: 300;
  color: #e3d688;
}
.cid-ugm4FqDdAr .icon3 {
  font-size: 2rem;
  font-weight: 300;
  color: #ff9370;
}
@media (max-width: 991px) {
  .cid-ugm4FqDdAr .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-ugm4FqDdAr .group-title {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .cid-ugm4FqDdAr .tips {
    width: 100%;
    height: auto;
    max-width: 103px;
  }
}
@media (max-width: 767px) {
  .cid-ugm4FqDdAr {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .cid-ugm4FqDdAr .container-fluid {
    padding: 0 1rem;
  }
  .cid-ugm4FqDdAr .wrapper {
    padding: 1rem;
  }
}
.cid-ugm4FrsXST {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #223668;
}
.cid-ugm4FrsXST svg {
  position: absolute;
  top: 0;
}
.cid-ugm4FrsXST .svg-1 {
  fill: #2d4073;
}
.cid-ugm4FrsXST .container-fluid {
  max-width: 1200px;
}
@media (max-width: 767px) {
  .cid-ugm4FrsXST {
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.cid-ugm4FrsXST .mbr-text {
  color: #b1bee0;
}
.cid-ugm4FrsXST a {
  text-decoration: underline;
  font-weight: 400 !important;
}
