body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #353535 !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #a4a4a4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #353535 !important;
  border-color: #353535 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #797979 !important;
  border-color: #797979 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #797979 !important;
  border-color: #797979 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a4a4a4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #797979 !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: #a4a4a4 !important;
  border-color: #a4a4a4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #353535 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #a4a4a4 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #020202 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #717171 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #353535;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #a4a4a4;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #353535;
  border-color: #353535;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #353535;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #a8a8a8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e4e4e4;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #353535 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #353535;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #353535;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #353535;
}
.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: #353535;
  border-bottom-color: #353535;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #353535 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%23353535' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZMJoT3llE {
  background-image: url("../../../assets/images/logo-cinza-25-grande-2000x2000-fundo-branco-2000x2000.jpg");
}
.cid-sZMJoT3llE .mbr-text,
.cid-sZMJoT3llE .typed-text,
.cid-sZMJoT3llE .mbr-section-text {
  letter-spacing: 0.09rem;
}
.cid-sZMJoT3llE .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-sZMJoT3llE .btn {
  margin-left: 4px !important;
}
.cid-sZMJoT3llE .animated-element {
  color: #ffffff;
}
.cid-sZMJoT3llE .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sZMJoT3llE .mbr-section-text,
.cid-sZMJoT3llE .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-sZMJoT3llE .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-sZMJoT3llE .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-zlcbfH7fZY h1,
.cid-zlcbfH7fZY p,
.cid-zlcbfH7fZY img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
.cid-zlcbfH7fZY html {
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  .cid-zlcbfH7fZY aside {
    display: none;
  }
}
.cid-zlcbfH7fZY aside {
  right: 26px;
  z-index: 1000;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cid-zlcbfH7fZY aside ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  margin: 0;
}
.cid-zlcbfH7fZY aside ul li .indicator {
  cursor: pointer;
  margin-top: 1rem;
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #bbbbbb;
}
.cid-zlcbfH7fZY aside ul li .active {
  transform: scale(1.2);
  transition: transform 200ms ease-in-out;
  background-color: #353535;
}
.cid-zlcbfH7fZY div.imgtest {
  content: url("../../../assets/images/perdigoto-pb-4.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-zlcbfH7fZY div.imgtest1 {
  content: url("../../../assets/images/frente-longe-horzt-025-cena1-3-04-02-15cm-relvaperdigoto-telhamarselha-ondul1-pb.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-zlcbfH7fZY div.imgtest2 {
  content: url("../../../assets/images/foto-lourinha-pb-2.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-zlcbfH7fZY div.imgtest3 {
  content: url("../../../assets/images/sobral-pb-4.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-zlcbfH7fZY div.imgtest4 {
  content: url("../../../assets/images/bicracte-24801856-pb-60.jpg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 0.6;
  -webkit-filter: blur(0px) grayscale(1);
  -moz-filter: blur(0px) grayscale(1);
  -o-filter: blur(0px) grayscale(1);
  -ms-filter: blur(0px) grayscale(1);
  filter: blur(0px) grayscale(1);
}
.cid-zlcbfH7fZY .split .split-image.object-cover img,
.cid-zlcbfH7fZY .slide-image.object-cover img .grid-image img,
.cid-zlcbfH7fZY .video-wrap .poster img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.cid-zlcbfH7fZY .slide-image.object-contain video,
.cid-zlcbfH7fZY .slide-image.object-contain img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.cid-zlcbfH7fZY .home-hero .safari-fix a,
.cid-zlcbfH7fZY .fullscreen a {
  background: none !important;
  text-shadow: none !important;
}
.cid-zlcbfH7fZY .wrap {
  padding: 3rem;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .cid-zlcbfH7fZY .wrap {
    padding: 6rem;
  }
  .cid-zlcbfH7fZY p + p {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .cid-zlcbfH7fZY .wrap {
    padding: 6rem 6rem 5.4rem;
  }
  .cid-zlcbfH7fZY section:last-child .wrap,
  .cid-zlcbfH7fZY .wrap:last-child {
    padding-bottom: 6rem;
  }
  .cid-zlcbfH7fZY .wrap.align-center q {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .cid-zlcbfH7fZY .wrap {
    padding: 8.2rem 6rem 7.6rem;
  }
  .cid-zlcbfH7fZY section:last-child .wrap,
  .cid-zlcbfH7fZY .wrap:last-child {
    padding-bottom: 8.2rem;
  }
}
.cid-zlcbfH7fZY input,
.cid-zlcbfH7fZY textarea,
.cid-zlcbfH7fZY button,
.cid-zlcbfH7fZY select,
.cid-zlcbfH7fZY body {
  font-family: acumin-pro, Helvetica, Arial, sans-serif;
  font-style: normal;
}
.cid-zlcbfH7fZY h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.16666667;
}
.cid-zlcbfH7fZY body {
  width: 100%;
  min-height: 100%;
  font-size: 2rem;
  line-height: 1.45;
  overflow-x: hidden;
}
@media only screen and (min-width: 700px) and (min-height: 500px) {
  .cid-zlcbfH7fZY h1 {
    font-size: calc(4.6rem);
  }
}
.cid-zlcbfH7fZY h1 + button {
  margin-top: 2rem;
}
.cid-zlcbfH7fZY h1 + p {
  margin-top: 1rem;
}
.cid-zlcbfH7fZY p + p {
  margin-top: 1.6rem;
}
.cid-zlcbfH7fZY img {
  display: block;
  max-width: 100%;
}
.cid-zlcbfH7fZY img::after {
  content: "🖼️" attr(alt);
  font-size: 1.4rem;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 4.5rem;
  height: 100%;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #eeecec;
}
@media all and (orientation: landscape) {
  .cid-zlcbfH7fZY body:not(.touchscreen) header {
    will-change: auto;
    transition: all 0.4s ease-in-out;
  }
  .cid-zlcbfH7fZY .landscape-image ~ .portrait-image {
    opacity: 0;
    display: none;
  }
}
.cid-zlcbfH7fZY .wrap.text-wrap {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}
.cid-zlcbfH7fZY .wrap.full-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: calc(94%) !important;
}
.cid-zlcbfH7fZY .wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.cid-zlcbfH7fZY .content > section:not(.hero):first-child {
  padding-top: 5rem;
}
.cid-zlcbfH7fZY .align-left {
  text-align: left;
}
.cid-zlcbfH7fZY .align-center {
  text-align: center;
}
.cid-zlcbfH7fZY .align-right {
  text-align: right;
}
.cid-zlcbfH7fZY .text_block-section + .text-wrap,
.cid-zlcbfH7fZY .flexible-section:not(.video-section) + .flexible-section:not(.video-section) > .wrap:first-child,
.cid-zlcbfH7fZY .section-title-wrap + .flexible-section > .wrap:first-child,
.cid-zlcbfH7fZY .body-copy-with-intro + .hidden-content > .flexible-section > .wrap:first-child,
.cid-zlcbfH7fZY .wrap + .wrap {
  padding-top: 0;
}
.cid-zlcbfH7fZY .fullscreen {
  position: relative;
  height: 100vh;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-zlcbfH7fZY .fullscreen .wrap {
  margin: 0;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-zlcbfH7fZY .fullscreen .fixed-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-zlcbfH7fZY .fullscreen .fixed-wrap.fixed {
  position: fixed;
}
@supports (-ms-ime-align: auto) {
  .cid-zlcbfH7fZY .fullscreen {
    clip-path: none !important;
  }
  .cid-zlcbfH7fZY .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cid-zlcbfH7fZY .fullscreen {
    clip-path: none !important;
  }
  .cid-zlcbfH7fZY .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
.cid-zlcbfH7fZY .fullscreen .slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.cid-zlcbfH7fZY .fullscreen .slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}
.cid-zlcbfH7fZY .fullscreen a {
  color: #ffffff;
}
.cid-zlcbfH7fZY .slide-image + .slide-text,
.cid-zlcbfH7fZY .slide-text.over-image {
  color: #fff;
  background: radial-gradient(ellipse 50% 50%, rgba(18, 18, 18, 0.125), rgba(18, 18, 18, 0));
}
.cid-zlcbfH7fZY .hero .slide-image {
  opacity: 0.8;
}
.cid-zlcbfH7fZY .hero.auto-height {
  padding: 5rem 0;
}
.cid-zlcbfH7fZY .hero.auto-height .slide-text {
  position: relative;
}
.cid-zlcbfH7fZY .home-hero {
  position: relative;
  z-index: 1;
}
.cid-zlcbfH7fZY .home-hero + section {
  z-index: 0;
}
.cid-zlcbfH7fZY .home-hero + section + section {
  z-index: 1;
}
.cid-zlcbfH7fZY .home-hero .safari-fix {
  position: absolute;
  top: 0;
  background: transparent !important;
  overflow: hidden;
}
.cid-zlcbfH7fZY .home-hero .safari-fix a {
  display: block;
  position: relative;
  width: 100vw;
  height: 100%;
  background: transparent !important;
  opacity: 0;
}
.cid-zlcbfH7fZY body > .fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-zlcbfH7fZY body > .fullscreen .slide-image {
  opacity: 0.8;
}
.cid-zlcbfH7fZY body > .fullscreen button,
.cid-zlcbfH7fZY .project-hero .slide-text button {
  background-color: #fff;
  color: #121212;
  border-color: #fff;
  opacity: 0;
}
.cid-zlcbfH7fZY .page-hero .slide-image {
  position: fixed;
}
.cid-zlcbfH7fZY .page-hero .slide-text {
  position: relative;
  height: auto;
  margin: 100vh auto 25vh;
  background: transparent;
}
@media all and (orientation: portrait) {
  .cid-zlcbfH7fZY .page-hero .wrap h4 {
    font-size: calc(2.25rem);
  }
  .cid-zlcbfH7fZY .portrait-image ~ .landscape-image {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.cid-zlcbfH7fZY .fullscreen .slide-text button:only-child {
  margin-top: 2rem;
}
.cid-zlcbfH7fZY .offblack-bg {
  background-color: #231f20;
}
.cid-zlcbfH7fZY .offblack-bg a:not(.button):not([title]):not(:hover) {
  background: linear-gradient(#231f20 calc(99%), #ffffff calc(99%));
  text-shadow: 0 1px #231f20, -1px 0 #231f20, 1px 0 #231f20, -2px 0 #231f20, 2px 0 #231f20;
}
.cid-zlcbfH7fZY .hidden {
  display: none;
  visibility: hidden;
}
.cid-zlcbfH7fZY H1 {
  color: #ffffff;
}
.cid-zlcbfH7fZY .mbr-section-title {
  color: #000000;
}
.cid-zlcbfH7fZY .mbr-section-subtitle {
  color: #353535;
}
.cid-ur8KGdFad4 h1,
.cid-ur8KGdFad4 p,
.cid-ur8KGdFad4 img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
.cid-ur8KGdFad4 html {
  scroll-behavior: smooth;
}
@media (max-width: 991px) {
  .cid-ur8KGdFad4 aside {
    display: none;
  }
}
.cid-ur8KGdFad4 aside {
  right: 29px;
  z-index: 1000;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cid-ur8KGdFad4 aside ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style-type: none;
  margin: 0;
}
.cid-ur8KGdFad4 aside ul li .indicator {
  cursor: pointer;
  margin-top: 1rem;
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #bbbbbb;
}
.cid-ur8KGdFad4 aside ul li .active {
  transform: scale(1.2);
  transition: transform 200ms ease-in-out;
  background-color: #353535;
}
.cid-ur8KGdFad4 div.imgtest {
  content: url("../../../assets/images/logo-fundo-preto-linha-18pt.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-ur8KGdFad4 div.imgtest1 {
  content: url("../../../assets/images/logo-fundo-verde729572-linha-18pt-1.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-ur8KGdFad4 div.imgtest2 {
  content: url("../../../assets/images/carrazeda-pb-2.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 0.6;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-ur8KGdFad4 div.imgtest3 {
  content: url("../../../assets/images/sobral-pb.jpeg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 0.6;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-ur8KGdFad4 div.imgtest4 {
  content: url("https://www.unsitepourtous.be/mobi/flower5.jpg");
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  opacity: 1;
  -webkit-filter: blur(0px) grayscale(0);
  -moz-filter: blur(0px) grayscale(0);
  -o-filter: blur(0px) grayscale(0);
  -ms-filter: blur(0px) grayscale(0);
  filter: blur(0px) grayscale(0);
}
.cid-ur8KGdFad4 .split .split-image.object-cover img,
.cid-ur8KGdFad4 .slide-image.object-cover img .grid-image img,
.cid-ur8KGdFad4 .video-wrap .poster img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.cid-ur8KGdFad4 .slide-image.object-contain video,
.cid-ur8KGdFad4 .slide-image.object-contain img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  font-family: 'object-fit: contain;';
}
.cid-ur8KGdFad4 .home-hero .safari-fix a,
.cid-ur8KGdFad4 .fullscreen a {
  background: none !important;
  text-shadow: none !important;
}
.cid-ur8KGdFad4 .wrap {
  padding: 3rem;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 700px) {
  .cid-ur8KGdFad4 .wrap {
    padding: 6rem;
  }
  .cid-ur8KGdFad4 p + p {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .cid-ur8KGdFad4 .wrap {
    padding: 6rem 6rem 5.4rem;
  }
  .cid-ur8KGdFad4 section:last-child .wrap,
  .cid-ur8KGdFad4 .wrap:last-child {
    padding-bottom: 6rem;
  }
  .cid-ur8KGdFad4 .wrap.align-center q {
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .cid-ur8KGdFad4 .wrap {
    padding: 8.2rem 6rem 7.6rem;
  }
  .cid-ur8KGdFad4 section:last-child .wrap,
  .cid-ur8KGdFad4 .wrap:last-child {
    padding-bottom: 8.2rem;
  }
}
.cid-ur8KGdFad4 input,
.cid-ur8KGdFad4 textarea,
.cid-ur8KGdFad4 button,
.cid-ur8KGdFad4 select,
.cid-ur8KGdFad4 body {
  font-family: acumin-pro, Helvetica, Arial, sans-serif;
  font-style: normal;
}
.cid-ur8KGdFad4 h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.16666667;
}
.cid-ur8KGdFad4 body {
  width: 100%;
  min-height: 100%;
  font-size: 2rem;
  line-height: 1.45;
  overflow-x: hidden;
}
@media only screen and (min-width: 700px) and (min-height: 500px) {
  .cid-ur8KGdFad4 h1 {
    font-size: calc(4.6rem);
  }
}
.cid-ur8KGdFad4 h1 + button {
  margin-top: 2rem;
}
.cid-ur8KGdFad4 h1 + p {
  margin-top: 1rem;
}
.cid-ur8KGdFad4 p + p {
  margin-top: 1.6rem;
}
.cid-ur8KGdFad4 img {
  display: block;
  max-width: 100%;
}
.cid-ur8KGdFad4 img::after {
  content: "🖼️" attr(alt);
  font-size: 1.4rem;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 4.5rem;
  height: 100%;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #eeecec;
}
@media all and (orientation: landscape) {
  .cid-ur8KGdFad4 body:not(.touchscreen) header {
    will-change: auto;
    transition: all 0.4s ease-in-out;
  }
  .cid-ur8KGdFad4 .landscape-image ~ .portrait-image {
    opacity: 0;
    display: none;
  }
}
.cid-ur8KGdFad4 .wrap.text-wrap {
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
}
.cid-ur8KGdFad4 .wrap.full-width {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: calc(94%) !important;
}
.cid-ur8KGdFad4 .wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.cid-ur8KGdFad4 .content > section:not(.hero):first-child {
  padding-top: 5rem;
}
.cid-ur8KGdFad4 .align-left {
  text-align: left;
}
.cid-ur8KGdFad4 .align-center {
  text-align: center;
}
.cid-ur8KGdFad4 .align-right {
  text-align: right;
}
.cid-ur8KGdFad4 .text_block-section + .text-wrap,
.cid-ur8KGdFad4 .flexible-section:not(.video-section) + .flexible-section:not(.video-section) > .wrap:first-child,
.cid-ur8KGdFad4 .section-title-wrap + .flexible-section > .wrap:first-child,
.cid-ur8KGdFad4 .body-copy-with-intro + .hidden-content > .flexible-section > .wrap:first-child,
.cid-ur8KGdFad4 .wrap + .wrap {
  padding-top: 0;
}
.cid-ur8KGdFad4 .fullscreen {
  position: relative;
  height: 100vh;
  overflow: hidden;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.cid-ur8KGdFad4 .fullscreen .wrap {
  margin: 0;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
}
.cid-ur8KGdFad4 .fullscreen .fixed-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.cid-ur8KGdFad4 .fullscreen .fixed-wrap.fixed {
  position: fixed;
}
@supports (-ms-ime-align: auto) {
  .cid-ur8KGdFad4 .fullscreen {
    clip-path: none !important;
  }
  .cid-ur8KGdFad4 .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .cid-ur8KGdFad4 .fullscreen {
    clip-path: none !important;
  }
  .cid-ur8KGdFad4 .fullscreen .fixed-wrap.fixed {
    position: absolute !important;
  }
}
.cid-ur8KGdFad4 .fullscreen .slide-image {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.cid-ur8KGdFad4 .fullscreen .slide-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 2;
}
.cid-ur8KGdFad4 .fullscreen a {
  color: #ffffff;
}
.cid-ur8KGdFad4 .slide-image + .slide-text,
.cid-ur8KGdFad4 .slide-text.over-image {
  color: #fff;
  background: radial-gradient(ellipse 50% 50%, rgba(18, 18, 18, 0.125), rgba(18, 18, 18, 0));
}
.cid-ur8KGdFad4 .hero .slide-image {
  opacity: 0.8;
}
.cid-ur8KGdFad4 .hero.auto-height {
  padding: 5rem 0;
}
.cid-ur8KGdFad4 .hero.auto-height .slide-text {
  position: relative;
}
.cid-ur8KGdFad4 .home-hero {
  position: relative;
  z-index: 1;
}
.cid-ur8KGdFad4 .home-hero + section {
  z-index: 0;
}
.cid-ur8KGdFad4 .home-hero + section + section {
  z-index: 1;
}
.cid-ur8KGdFad4 .home-hero .safari-fix {
  position: absolute;
  top: 0;
  background: transparent !important;
  overflow: hidden;
}
.cid-ur8KGdFad4 .home-hero .safari-fix a {
  display: block;
  position: relative;
  width: 100vw;
  height: 100%;
  background: transparent !important;
  opacity: 0;
}
.cid-ur8KGdFad4 body > .fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.cid-ur8KGdFad4 body > .fullscreen .slide-image {
  opacity: 0.8;
}
.cid-ur8KGdFad4 body > .fullscreen button,
.cid-ur8KGdFad4 .project-hero .slide-text button {
  background-color: #fff;
  color: #121212;
  border-color: #fff;
  opacity: 0;
}
.cid-ur8KGdFad4 .page-hero .slide-image {
  position: fixed;
}
.cid-ur8KGdFad4 .page-hero .slide-text {
  position: relative;
  height: auto;
  margin: 100vh auto 25vh;
  background: transparent;
}
@media all and (orientation: portrait) {
  .cid-ur8KGdFad4 .page-hero .wrap h4 {
    font-size: calc(2.25rem);
  }
  .cid-ur8KGdFad4 .portrait-image ~ .landscape-image {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.cid-ur8KGdFad4 .fullscreen .slide-text button:only-child {
  margin-top: 2rem;
}
.cid-ur8KGdFad4 .offblack-bg {
  background-color: #231f20;
}
.cid-ur8KGdFad4 .offblack-bg a:not(.button):not([title]):not(:hover) {
  background: linear-gradient(#231f20 calc(99%), #ffffff calc(99%));
  text-shadow: 0 1px #231f20, -1px 0 #231f20, 1px 0 #231f20, -2px 0 #231f20, 2px 0 #231f20;
}
.cid-ur8KGdFad4 .hidden {
  display: none;
  visibility: hidden;
}
.cid-ur8KGdFad4 H1 {
  color: #ffffff;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWCbEkNPdT {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWCbEkNPdT .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sWCbEkNPdT .mbr-text,
.cid-sWCbEkNPdT .mbr-section-btn {
  text-align: right;
}
.cid-sWMRfncRfz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWMRfncRfz .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #353535;
  margin-left: 1rem;
}
.cid-sWMRfncRfz .panel-group {
  border: none;
}
.cid-sWMRfncRfz .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sWMRfncRfz .panel-body,
.cid-sWMRfncRfz .card-header {
  padding: 1rem 0;
}
.cid-sWMRfncRfz .panel-title-edit {
  color: #ffffff;
}
.cid-sWMRfncRfz .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sWMRfncRfz .panel-text {
  color: #ffffff;
}
.cid-sWMSebJHFI {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #111111;
}
.cid-sWMSebJHFI .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #353535;
  margin-left: 1rem;
}
.cid-sWMSebJHFI .panel-group {
  border: none;
}
.cid-sWMSebJHFI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sWMSebJHFI .panel-body,
.cid-sWMSebJHFI .card-header {
  padding: 1rem 0;
}
.cid-sWMSebJHFI .panel-title-edit {
  color: #ffffff;
  text-align: center;
}
.cid-sWMSebJHFI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sWMSebJHFI .panel-text {
  color: #ffffff;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWCcAb1JwU {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWCcAb1JwU .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sWCcAb1JwU .mbr-text,
.cid-sWCcAb1JwU .mbr-section-btn {
  text-align: right;
}
.cid-sWMT1yGl00 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #111111;
}
.cid-sWMT1yGl00 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #353535;
  margin-left: 1rem;
}
.cid-sWMT1yGl00 .panel-group {
  border: none;
}
.cid-sWMT1yGl00 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sWMT1yGl00 .panel-body,
.cid-sWMT1yGl00 .card-header {
  padding: 1rem 0;
}
.cid-sWMT1yGl00 .panel-title-edit {
  color: #ffffff;
  text-align: center;
}
.cid-sWMT1yGl00 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sWMT1yGl00 .panel-text {
  color: #ffffff;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWCdMi24HX {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWCdMi24HX .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sWCdMi24HX .mbr-text,
.cid-sWCdMi24HX .mbr-section-btn {
  text-align: right;
}
.cid-sZHUdXCiJ8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/negocio-lavandaria-pb-502480.jpg");
}
.cid-sZHUdXCiJ8 .mbr-text,
.cid-sZHUdXCiJ8 .mbr-section-btn {
  text-align: left;
}
.cid-sZHUdXCiJ8 .mbr-section-title {
  text-align: left;
}
.cid-sZHUdXCiJ8 .reveal {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZHUdXCiJ8 .reveal span {
  display: inline-block;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZHUdXCiJ8 .reveal span:after {
  content: "";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  bottom: -10px;
  left: 50%;
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all 400ms;
}
.cid-sZHUdXCiJ8 .reveal:hover {
  color: rgba(0, 0, 0, 0.1);
}
.cid-sZHUdXCiJ8 .reveal:hover span {
  transform: scale(2);
  color: #000;
  margin: 0 45px;
}
.cid-sZHUdXCiJ8 .reveal:hover span:after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.cid-sU8QcwCdqN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
@media (min-width: 1500px) {
  .cid-sU8QcwCdqN .container {
    max-width: 1400px;
  }
}
.cid-sU8QcwCdqN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-sU8QcwCdqN .card-wrapper {
  margin-top: 3rem;
}
.cid-sU8QcwCdqN .row {
  justify-content: center;
}
.cid-sU8QcwCdqN .card-text {
  text-align: center;
  color: #ffffff;
}
.cid-sU8QcwCdqN .card-title,
.cid-sU8QcwCdqN .iconfont-wrapper {
  color: #ffffff;
}
.cid-sZHUYKQjMN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/industria-dura-1-pb-50-crop.jpg");
}
.cid-sZHUYKQjMN .mbr-text,
.cid-sZHUYKQjMN .mbr-section-btn {
  text-align: left;
}
.cid-sZHUYKQjMN .mbr-section-title {
  text-align: left;
}
.cid-sZHUYKQjMN .reveal {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZHUYKQjMN .reveal span {
  display: inline-block;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZHUYKQjMN .reveal span:after {
  content: "";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  bottom: -10px;
  left: 50%;
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all 400ms;
}
.cid-sZHUYKQjMN .reveal:hover {
  color: rgba(0, 0, 0, 0.1);
}
.cid-sZHUYKQjMN .reveal:hover span {
  transform: scale(2);
  color: #000;
  margin: 0 45px;
}
.cid-sZHUYKQjMN .reveal:hover span:after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZquPloGz0 {
  background-image: url("../../../assets/images/logo-cinza-25-grande-2000x2000.png");
}
.cid-sZquPloGz0 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sZquPloGz0 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sZquPloGz0 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sZquPloGz0 .mbr-text,
.cid-sZquPloGz0 .mbr-section-btn,
.cid-sZquPloGz0 .social-row {
  text-align: left;
}
.cid-sZquPloGz0 .mbr-section-title {
  text-align: right;
}
.cid-sZquPloGz0 .mbr-section-subtitle {
  text-align: right;
}
.cid-sTQL4pB9sh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
@media (min-width: 1500px) {
  .cid-sTQL4pB9sh .container {
    max-width: 1400px;
  }
}
.cid-sTQL4pB9sh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sTQL4pB9sh .card-wrapper {
  margin-top: 3rem;
}
.cid-sTQL4pB9sh .row {
  justify-content: center;
}
.cid-sTQL4pB9sh .card-title,
.cid-sTQL4pB9sh .iconfont-wrapper {
  color: #fafafa;
}
.cid-sTQL4pB9sh .card-text {
  color: #fafafa;
}
.cid-sWus0nUSgi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWus0nUSgi .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sWus0nUSgi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sWus0nUSgi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWus0nUSgi .card-wrapper {
    padding: 4rem;
  }
}
.cid-sWus0nUSgi .mbr-text,
.cid-sWus0nUSgi .mbr-section-btn {
  color: #353535;
  text-align: left;
}
.cid-sWus0nUSgi .card-title,
.cid-sWus0nUSgi .card-box {
  text-align: left;
  color: #111111;
}
.cid-sTQLeyb3wG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sTQLeyb3wG .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sTQLeyb3wG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sTQLeyb3wG .row {
  flex-direction: row-reverse;
}
.cid-sTQLeyb3wG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sTQLeyb3wG .text-wrapper {
    padding: 2rem;
  }
}
.cid-sTQLeyb3wG .mbr-section-title {
  text-align: left;
}
.cid-sTQLeyb3wG .mbr-text {
  color: #111111;
}
.cid-sUM51vRyiH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-sUM51vRyiH .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-sUM51vRyiH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sUM51vRyiH .row {
  flex-direction: row-reverse;
}
.cid-sUM51vRyiH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sUM51vRyiH .text-wrapper {
    padding: 2rem;
  }
}
.cid-sUM51vRyiH .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-sUM51vRyiH .mbr-text {
  color: #ffffff;
}
.cid-sTQL548suV {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
@media (min-width: 1500px) {
  .cid-sTQL548suV .container {
    max-width: 1400px;
  }
}
.cid-sTQL548suV .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sTQL548suV .card-wrapper {
  margin-top: 3rem;
}
.cid-sTQL548suV .row {
  justify-content: center;
}
.cid-sTQL548suV .card-title,
.cid-sTQL548suV .iconfont-wrapper {
  color: #353535;
}
.cid-sTQL548suV .card-text {
  color: #353535;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWLWG1NcBJ {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWLWG1NcBJ .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sWLWG1NcBJ .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sWLWG1NcBJ .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sWLWG1NcBJ .card-wrapper {
    padding: 4rem;
  }
}
.cid-sWLWG1NcBJ .mbr-text,
.cid-sWLWG1NcBJ .mbr-section-btn {
  color: #353535;
  text-align: right;
}
.cid-sWLWG1NcBJ .card-title,
.cid-sWLWG1NcBJ .card-box {
  text-align: right;
  color: #111111;
}
.cid-sWMiBeRIVb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWMiBeRIVb .timeline-element {
  position: relative;
}
.cid-sWMiBeRIVb .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-sWMiBeRIVb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sWMiBeRIVb .mbr-section-title,
.cid-sWMiBeRIVb .mbr-section-subtitle,
.cid-sWMiBeRIVb .timeline-date {
  text-align: center;
}
.cid-sWMiBeRIVb .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #bbbbbb;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sWMiBeRIVb .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sWMiBeRIVb .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sWMiBeRIVb .row:after {
  content: "";
  position: absolute;
  background-color: #bbbbbb;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sWMiBeRIVb .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sWMiBeRIVb .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sWMiBeRIVb .timeline-date-wrapper,
  .cid-sWMiBeRIVb .timeline-text-wrapper,
  .cid-sWMiBeRIVb .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sWMiBeRIVb .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sWMiBeRIVb .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sWMiBeRIVb .timeline-date-wrapper,
  .cid-sWMiBeRIVb .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWMiBeRIVb .timeline-date-wrapper,
  .cid-sWMiBeRIVb .timeline-text-wrapper,
  .cid-sWMiBeRIVb .image-wrapper {
    padding: 2rem;
  }
}
.cid-sWMiBeRIVb .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sWMiBeRIVb .mbr-text {
  color: #111111;
}
.cid-sWMiBeRIVb .mbr-timeline-title {
  color: #111111;
}
.cid-sWMiBeRIVb .mbr-timeline-date {
  color: #111111;
}
.cid-sWMeoM7B2H {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sWMeoM7B2H img,
.cid-sWMeoM7B2H .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sWMeoM7B2H .item:focus,
.cid-sWMeoM7B2H span:focus {
  outline: none;
}
.cid-sWMeoM7B2H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sWMeoM7B2H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sWMeoM7B2H .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sWMeoM7B2H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sWMeoM7B2H .item-wrapper {
  background: transparent;
}
.cid-sWMeoM7B2H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sWMeoM7B2H .mbr-section-title {
  color: #111111;
  text-align: left;
}
.cid-sWMeoM7B2H .mbr-text,
.cid-sWMeoM7B2H .mbr-section-btn {
  text-align: center;
}
.cid-sWMeoM7B2H .item-title {
  text-align: center;
}
.cid-sWMeoM7B2H .item-subtitle {
  text-align: center;
}
.cid-sWMgcaYVKn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #111111;
}
.cid-sWMgcaYVKn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sWMgcaYVKn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sWMgcaYVKn .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #353535;
}
.cid-sWMgcaYVKn .panel-body,
.cid-sWMgcaYVKn .card-header {
  padding: 1rem 0;
}
.cid-sWMgcaYVKn .panel-title-edit {
  color: #ffffff;
  text-align: left;
}
.cid-sWMgcaYVKn H3 {
  color: #ffffff;
  text-align: left;
}
.cid-sWMgcaYVKn .panel-text {
  color: #ffffff;
}
.cid-sWMk7fpOia {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #111111;
}
.cid-sWMk7fpOia .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWMk7fpOia .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWMk7fpOia .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWMk7fpOia .mbr-section-title {
  color: #ffffff;
}
.cid-sWMk7fpOia .mbr-text {
  color: #ffffff;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sWQyESuf4M {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sWQyESuf4M .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sWQyESuf4M .mbr-text,
.cid-sWQyESuf4M .mbr-section-btn {
  text-align: right;
}
.cid-sWQyESuf4M .mbr-section-subtitle {
  text-align: right;
}
.cid-sWQDfuoLay {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQDfuoLay .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQDfuoLay .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQDfuoLay .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQDfuoLay .mbr-section-title {
  color: #ffffff;
}
.cid-sWQDfuoLay .mbr-text {
  color: #ffffff;
}
.cid-sWQEPYsMIS {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQEPYsMIS .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQEPYsMIS .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQEPYsMIS .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQEPYsMIS .mbr-section-title {
  color: #ffffff;
}
.cid-sWQEPYsMIS .mbr-text {
  color: #ffffff;
}
.cid-sWQGjCjtrM {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQGjCjtrM .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQGjCjtrM .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQGjCjtrM .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQGjCjtrM .mbr-section-title {
  color: #ffffff;
}
.cid-sWQGjCjtrM .mbr-text {
  color: #ffffff;
}
.cid-sWQDR8iMYQ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQDR8iMYQ .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQDR8iMYQ .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQDR8iMYQ .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQDR8iMYQ .mbr-section-title {
  color: #ffffff;
}
.cid-sWQDR8iMYQ .mbr-text {
  color: #ffffff;
}
.cid-sWQFlDJjTg {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQFlDJjTg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQFlDJjTg .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQFlDJjTg .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQFlDJjTg .mbr-section-title {
  color: #ffffff;
}
.cid-sWQFlDJjTg .mbr-text {
  color: #ffffff;
}
.cid-sWQGyoOKFt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQGyoOKFt .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQGyoOKFt .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQGyoOKFt .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQGyoOKFt .mbr-section-title {
  color: #ffffff;
}
.cid-sWQGyoOKFt .mbr-text {
  color: #ffffff;
}
.cid-sWQGImPC4u {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #111111;
}
.cid-sWQGImPC4u .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sWQGImPC4u .counter-container ul li {
  margin-bottom: 1rem;
  position: relative;
}
.cid-sWQGImPC4u .counter-container ul li:before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
  line-height: 1.2;
}
.cid-sWQGImPC4u .mbr-section-title {
  color: #ffffff;
}
.cid-sWQGImPC4u .mbr-text {
  color: #ffffff;
}
.cid-sZRHZ3wbZZ {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sZRHZ3wbZZ img {
  width: 80px;
  margin: auto;
}
.cid-sZRHZ3wbZZ .card {
  transition: infinite 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sZRHZ3wbZZ .card {
    max-width: 12.5%;
  }
}
.cid-sZRHZ3wbZZ .mbr-section-title {
  text-align: left;
  color: #22a5e5;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZGJs3oANt {
  background-image: url("../../../assets/images/logo-cinza-25-grande-2480x1856-fundo-preto171717rgb-linh-abranca.png");
}
.cid-sZGJs3oANt .mbr-text,
.cid-sZGJs3oANt .typed-text,
.cid-sZGJs3oANt .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sZGJs3oANt .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-sZGJs3oANt .btn {
  margin-left: 4px !important;
}
.cid-sZGJs3oANt .animated-element {
  color: #ffffff;
}
.cid-sZGJs3oANt .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sZGJs3oANt .mbr-section-text,
.cid-sZGJs3oANt .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-sZGJs3oANt .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-sZGJs3oANt .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0c5TqqCFB {
  overflow-x: hidden !important;
}
.cid-t0c5TqqCFB .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-t0c5TqqCFB .mbr-section-title {
  color: #ffffff;
}
.cid-t0c5TqqCFB .mbr-section-title span {
  color: #353535;
}
.cid-t0c5TqqCFB .mbr-text {
  color: #efefef;
  letter-spacing: 5px;
  font-weight: 100;
  line-height: 400%;
}
.cid-t0c5TqqCFB .arj-text2 {
  color: #999999;
  letter-spacing: 1px;
  font-weight: 40%;
  line-height: 40%;
  margin-bottom: 1mm;
  padding-right: 1mm;
  font: smaller;
  font-variant: normal;
  font-size: xx-small;
  background-color: #111111;
}
.cid-t0c5TqqCFB .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left;
  background-size: cover;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-animation-duration: 17s !important;
  animation-duration: 17s;
  background-image: url("../../../assets/images/montagem06-1.jpg");
  -webkit-animation: scroll-wrapper alternate-reverse 2;
  -moz-animation: scroll-wrapper alternate-reverse 2;
  -o-animation: scroll-wrapper alternate-reverse 2;
  animation: scroll-wrapper alternate-reverse 2;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.cid-t0c5TqqCFB .scroll-wrapper.second {
  left: calc(100% - 1px);
}
.cid-t0c5TqqCFB .mbr-overlay {
  z-index: 1;
}
.cid-t0c5TqqCFB .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.cid-urh5wgKKAF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #fafafa;
}
.cid-urh5wgKKAF .mbr-text,
.cid-urh5wgKKAF .typed-text,
.cid-urh5wgKKAF .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urh5wgKKAF .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urh5wgKKAF .btn {
  margin-left: 4px !important;
}
.cid-urh5wgKKAF .animated-element {
  color: #353535;
}
.cid-urh5wgKKAF .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urh5wgKKAF .mbr-section-text,
.cid-urh5wgKKAF .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urh5wgKKAF .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urh5wgKKAF .mbr-section-title {
  text-align: right;
  color: #353535;
}
.cid-urhz0CEP9w {
  background-image: url("../../../assets/images/img-1522.jpeg");
}
.cid-urhz0CEP9w .mbr-text,
.cid-urhz0CEP9w .typed-text,
.cid-urhz0CEP9w .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhz0CEP9w .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhz0CEP9w .btn {
  margin-left: 4px !important;
}
.cid-urhz0CEP9w .animated-element {
  color: #353535;
}
.cid-urhz0CEP9w .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhz0CEP9w .mbr-section-text,
.cid-urhz0CEP9w .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urhz0CEP9w .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhz0CEP9w .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urhddsFCmS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/bicracte-24801856-pb-60.jpeg");
}
.cid-urhddsFCmS .mbr-text,
.cid-urhddsFCmS .typed-text,
.cid-urhddsFCmS .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhddsFCmS .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhddsFCmS .btn {
  margin-left: 4px !important;
}
.cid-urhddsFCmS .animated-element {
  color: #353535;
}
.cid-urhddsFCmS .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhddsFCmS .mbr-section-text,
.cid-urhddsFCmS .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urhddsFCmS .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhddsFCmS .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urh5y9dRae {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/hidrcave-620x464.png");
}
.cid-urh5y9dRae .mbr-text,
.cid-urh5y9dRae .typed-text,
.cid-urh5y9dRae .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urh5y9dRae .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urh5y9dRae .btn {
  margin-left: 4px !important;
}
.cid-urh5y9dRae .animated-element {
  color: #353535;
}
.cid-urh5y9dRae .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urh5y9dRae .mbr-section-text,
.cid-urh5y9dRae .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urh5y9dRae .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urh5y9dRae .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urh5uhA6Md {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fafafa;
}
.cid-urh5uhA6Md .mbr-text,
.cid-urh5uhA6Md .typed-text,
.cid-urh5uhA6Md .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urh5uhA6Md .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urh5uhA6Md .btn {
  margin-left: 4px !important;
}
.cid-urh5uhA6Md .animated-element {
  color: #353535;
}
.cid-urh5uhA6Md .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urh5uhA6Md .mbr-section-text,
.cid-urh5uhA6Md .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urh5uhA6Md .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urh5uhA6Md .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urh5qO6WJi {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fafafa;
}
.cid-urh5qO6WJi .mbr-text,
.cid-urh5qO6WJi .typed-text,
.cid-urh5qO6WJi .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urh5qO6WJi .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urh5qO6WJi .btn {
  margin-left: 4px !important;
}
.cid-urh5qO6WJi .animated-element {
  color: #353535;
}
.cid-urh5qO6WJi .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urh5qO6WJi .mbr-section-text,
.cid-urh5qO6WJi .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urh5qO6WJi .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urh5qO6WJi .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urh5oZ5mev {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #fafafa;
}
.cid-urh5oZ5mev .mbr-text,
.cid-urh5oZ5mev .typed-text,
.cid-urh5oZ5mev .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urh5oZ5mev .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urh5oZ5mev .btn {
  margin-left: 4px !important;
}
.cid-urh5oZ5mev .animated-element {
  color: #353535;
}
.cid-urh5oZ5mev .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urh5oZ5mev .mbr-section-text,
.cid-urh5oZ5mev .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urh5oZ5mev .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urh5oZ5mev .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sZRIE9IpHC {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZRIE9IpHC .mbr-section-title {
  text-align: left;
  color: #111111;
}
.cid-sZRIE9IpHC .mbr-text,
.cid-sZRIE9IpHC .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-sZRIF3IsGV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111111;
}
.cid-sZRIF3IsGV ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sZRIF3IsGV li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sZRIF3IsGV ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sZRIF3IsGV H3 {
  color: #ffffff;
}
.cid-sZRIF3IsGV .list {
  color: #ffffff;
}
.cid-sZRIFWYCWE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111111;
}
.cid-sZRIFWYCWE ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sZRIFWYCWE li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sZRIFWYCWE ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sZRIFWYCWE H3 {
  color: #ffffff;
}
.cid-sZRIFWYCWE .list {
  color: #ffffff;
}
.cid-sZRIGkqIoc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111111;
}
.cid-sZRIGkqIoc ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sZRIGkqIoc li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sZRIGkqIoc ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sZRIGkqIoc H3 {
  color: #ffffff;
}
.cid-sZRIGkqIoc .list {
  color: #ffffff;
}
.cid-sZRIGIENHe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #111111;
}
.cid-sZRIGIENHe ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sZRIGIENHe li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sZRIGIENHe ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #fafafa;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sZRIGIENHe H3 {
  color: #ffffff;
}
.cid-sZRIGIENHe .list {
  color: #ffffff;
}
.cid-sZRxNY650L {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZRxNY650L .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZRxNY650L .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZRxNY650L .row {
    text-align: center;
  }
  .cid-sZRxNY650L .row > div {
    margin: auto;
  }
  .cid-sZRxNY650L .social-row {
    justify-content: center;
  }
}
.cid-sZRxNY650L .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZRxNY650L .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZRxNY650L .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZRxNY650L .list {
    margin-bottom: 0rem;
  }
}
.cid-sZRxNY650L .mbr-text {
  color: #111111;
}
.cid-sZRxNY650L .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZRxNY650L .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZRxNY650L div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZRxNY650L .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZGLLsXP8O {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/ajuste-exterior1-12-620x464.png");
}
.cid-sZGLLsXP8O .mbr-text,
.cid-sZGLLsXP8O .typed-text,
.cid-sZGLLsXP8O .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sZGLLsXP8O .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-sZGLLsXP8O .btn {
  margin-left: 4px !important;
}
.cid-sZGLLsXP8O .animated-element {
  color: #353535;
}
.cid-sZGLLsXP8O .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sZGLLsXP8O .mbr-section-text,
.cid-sZGLLsXP8O .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-sZGLLsXP8O .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-sZGLLsXP8O .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sZGXIp0pCx {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZGXIp0pCx .mbr-text,
.cid-sZGXIp0pCx .typed-text,
.cid-sZGXIp0pCx .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sZGXIp0pCx .row {
  backdrop-filter: blur(10px);
  border: 1px solid white;
}
.cid-sZGXIp0pCx .btn {
  margin-left: 4px !important;
}
.cid-sZGXIp0pCx .animated-element {
  color: #353535;
}
.cid-sZGXIp0pCx .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sZGXIp0pCx .mbr-section-text,
.cid-sZGXIp0pCx .mbr-section-btn {
  text-align: left;
  color: #111111;
}
.cid-sZGXIp0pCx .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-sZGXIp0pCx .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-sZI4amZ3MF {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-sZI4amZ3MF .mbr-text,
.cid-sZI4amZ3MF .mbr-section-btn {
  text-align: left;
}
.cid-sZI4amZ3MF .mbr-section-title {
  text-align: left;
}
.cid-sZI4amZ3MF .reveal {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZI4amZ3MF .reveal span {
  display: inline-block;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZI4amZ3MF .reveal span:after {
  content: "";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  bottom: -10px;
  left: 50%;
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all 400ms;
}
.cid-sZI4amZ3MF .reveal:hover {
  color: rgba(0, 0, 0, 0.1);
}
.cid-sZI4amZ3MF .reveal:hover span {
  transform: scale(2);
  color: #000;
  margin: 0 45px;
}
.cid-sZI4amZ3MF .reveal:hover span:after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.cid-sZI4uZQfvh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZI4uZQfvh hr {
  border: none;
  color: #000000;
  background-color: #000000;
  border-radius: 0.5em;
  height: 2px;
}
.cid-sZI4kh25v7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-sZI4kh25v7 .mbr-text,
.cid-sZI4kh25v7 .mbr-section-btn {
  text-align: left;
}
.cid-sZI4kh25v7 .mbr-section-title {
  text-align: left;
}
.cid-sZI4kh25v7 .reveal {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZI4kh25v7 .reveal span {
  display: inline-block;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.cid-sZI4kh25v7 .reveal span:after {
  content: "";
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  bottom: -10px;
  left: 50%;
  width: 200px;
  text-align: center;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all 400ms;
}
.cid-sZI4kh25v7 .reveal:hover {
  color: rgba(0, 0, 0, 0.1);
}
.cid-sZI4kh25v7 .reveal:hover span {
  transform: scale(2);
  color: #000;
  margin: 0 45px;
}
.cid-sZI4kh25v7 .reveal:hover span:after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sZvOMN6Hm7 {
  background-image: url("../../../assets/images/accueil-sustainability.jpg");
}
.cid-sZvOMN6Hm7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-sZvOMN6Hm7 .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-sZvOMN6Hm7 .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-sZvOMN6Hm7 .mbr-text,
.cid-sZvOMN6Hm7 .mbr-section-btn,
.cid-sZvOMN6Hm7 .social-row {
  text-align: right;
  color: #ffffff;
}
.cid-sZvOMN6Hm7 .mbr-section-title {
  text-align: right;
  color: #ffffff;
}
.cid-sZvOMN6Hm7 .mbr-section-subtitle {
  text-align: right;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-sZq1ufLtUD {
  z-index: 1000;
  width: 100%;
}
.cid-sZq1ufLtUD nav.navbar {
  position: fixed;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sZq1ufLtUD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sZq1ufLtUD .dropdown-item:hover,
.cid-sZq1ufLtUD .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-sZq1ufLtUD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sZq1ufLtUD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sZq1ufLtUD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sZq1ufLtUD .nav-link {
  position: relative;
}
.cid-sZq1ufLtUD .container {
  display: flex;
  margin: auto;
}
.cid-sZq1ufLtUD .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown-menu,
.cid-sZq1ufLtUD .navbar.opened {
  background: #ffffff !important;
}
.cid-sZq1ufLtUD .nav-item:focus,
.cid-sZq1ufLtUD .nav-link:focus {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sZq1ufLtUD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sZq1ufLtUD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sZq1ufLtUD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sZq1ufLtUD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-sZq1ufLtUD .navbar.opened {
  transition: all 0.3s;
}
.cid-sZq1ufLtUD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sZq1ufLtUD .navbar .navbar-logo img {
  width: auto;
}
.cid-sZq1ufLtUD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar.collapsed {
  justify-content: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sZq1ufLtUD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sZq1ufLtUD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sZq1ufLtUD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sZq1ufLtUD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sZq1ufLtUD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sZq1ufLtUD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sZq1ufLtUD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sZq1ufLtUD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sZq1ufLtUD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sZq1ufLtUD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sZq1ufLtUD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sZq1ufLtUD .navbar.navbar-short {
  min-height: 60px;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sZq1ufLtUD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sZq1ufLtUD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sZq1ufLtUD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sZq1ufLtUD .dropdown-item.active,
.cid-sZq1ufLtUD .dropdown-item:active {
  background-color: transparent;
}
.cid-sZq1ufLtUD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sZq1ufLtUD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sZq1ufLtUD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sZq1ufLtUD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sZq1ufLtUD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sZq1ufLtUD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sZq1ufLtUD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sZq1ufLtUD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sZq1ufLtUD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sZq1ufLtUD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sZq1ufLtUD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sZq1ufLtUD .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-sZq1ufLtUD .navbar {
    height: 70px;
  }
  .cid-sZq1ufLtUD .navbar.opened {
    height: auto;
  }
  .cid-sZq1ufLtUD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urhCJfx5WJ {
  background-image: url("../../../assets/images/frente-longe-horzt-025-cena1-3-04-02-15cm-relvaperdigoto-telhamarselha-ondul1.jpeg");
}
.cid-urhCJfx5WJ .mbr-text,
.cid-urhCJfx5WJ .typed-text,
.cid-urhCJfx5WJ .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhCJfx5WJ .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhCJfx5WJ .btn {
  margin-left: 4px !important;
}
.cid-urhCJfx5WJ .animated-element {
  color: #353535;
}
.cid-urhCJfx5WJ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhCJfx5WJ .mbr-section-text,
.cid-urhCJfx5WJ .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-urhCJfx5WJ .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhCJfx5WJ .mbr-section-title {
  text-align: right;
  color: #000000;
}
.cid-urhCI9ScTf {
  background-image: url("../../../assets/images/01-moradia-em-alenquer-3.jpeg");
}
.cid-urhCI9ScTf .mbr-text,
.cid-urhCI9ScTf .typed-text,
.cid-urhCI9ScTf .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhCI9ScTf .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhCI9ScTf .btn {
  margin-left: 4px !important;
}
.cid-urhCI9ScTf .animated-element {
  color: #353535;
}
.cid-urhCI9ScTf .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhCI9ScTf .mbr-section-text,
.cid-urhCI9ScTf .mbr-section-btn {
  text-align: right;
  color: #353535;
}
.cid-urhCI9ScTf .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhCI9ScTf .mbr-section-title {
  text-align: right;
  color: #000000;
}
.cid-urhCLkMXjl {
  background-image: url("../../../assets/images/03-loft-em-sobral-de-mte-agraco-3.jpeg");
}
.cid-urhCLkMXjl .mbr-text,
.cid-urhCLkMXjl .typed-text,
.cid-urhCLkMXjl .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhCLkMXjl .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhCLkMXjl .btn {
  margin-left: 4px !important;
}
.cid-urhCLkMXjl .animated-element {
  color: #353535;
}
.cid-urhCLkMXjl .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhCLkMXjl .mbr-section-text,
.cid-urhCLkMXjl .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-urhCLkMXjl .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhCLkMXjl .mbr-section-title {
  text-align: right;
  color: #000000;
}
.cid-sZApcrQZYH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sZApcrQZYH .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sZApcrQZYH .row {
    text-align: center;
  }
  .cid-sZApcrQZYH .row > div {
    margin: auto;
  }
  .cid-sZApcrQZYH .social-row {
    justify-content: center;
  }
}
.cid-sZApcrQZYH .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sZApcrQZYH .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sZApcrQZYH .list {
    margin-bottom: 0rem;
  }
}
.cid-sZApcrQZYH .mbr-text {
  color: #111111;
}
.cid-sZApcrQZYH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sZApcrQZYH .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sZApcrQZYH div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sZApcrQZYH .mbr-section-subtitle {
  color: #111111;
}
.cid-urhE1ov0fc {
  z-index: 1000;
  width: 100%;
}
.cid-urhE1ov0fc nav.navbar {
  position: fixed;
}
.cid-urhE1ov0fc .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-urhE1ov0fc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urhE1ov0fc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urhE1ov0fc .dropdown-item:hover,
.cid-urhE1ov0fc .dropdown-item:focus {
  background: #353535 !important;
  color: white !important;
}
.cid-urhE1ov0fc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urhE1ov0fc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urhE1ov0fc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urhE1ov0fc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urhE1ov0fc .nav-link {
  position: relative;
}
.cid-urhE1ov0fc .container {
  display: flex;
  margin: auto;
}
.cid-urhE1ov0fc .iconfont-wrapper {
  color: #111111 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urhE1ov0fc .dropdown-menu,
.cid-urhE1ov0fc .navbar.opened {
  background: #ffffff !important;
}
.cid-urhE1ov0fc .nav-item:focus,
.cid-urhE1ov0fc .nav-link:focus {
  outline: none;
}
.cid-urhE1ov0fc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urhE1ov0fc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urhE1ov0fc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urhE1ov0fc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urhE1ov0fc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urhE1ov0fc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urhE1ov0fc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(255, 255, 255, 0);
}
.cid-urhE1ov0fc .navbar.opened {
  transition: all 0.3s;
}
.cid-urhE1ov0fc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urhE1ov0fc .navbar .navbar-logo img {
  width: auto;
}
.cid-urhE1ov0fc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urhE1ov0fc .navbar.collapsed {
  justify-content: center;
}
.cid-urhE1ov0fc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urhE1ov0fc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urhE1ov0fc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-urhE1ov0fc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urhE1ov0fc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urhE1ov0fc .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-urhE1ov0fc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urhE1ov0fc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urhE1ov0fc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urhE1ov0fc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urhE1ov0fc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urhE1ov0fc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urhE1ov0fc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urhE1ov0fc .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-urhE1ov0fc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urhE1ov0fc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urhE1ov0fc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urhE1ov0fc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urhE1ov0fc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urhE1ov0fc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urhE1ov0fc .navbar.navbar-short {
  min-height: 60px;
}
.cid-urhE1ov0fc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urhE1ov0fc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urhE1ov0fc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urhE1ov0fc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urhE1ov0fc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urhE1ov0fc .dropdown-item.active,
.cid-urhE1ov0fc .dropdown-item:active {
  background-color: transparent;
}
.cid-urhE1ov0fc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urhE1ov0fc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urhE1ov0fc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urhE1ov0fc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urhE1ov0fc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urhE1ov0fc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urhE1ov0fc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urhE1ov0fc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urhE1ov0fc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urhE1ov0fc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #111111;
}
.cid-urhE1ov0fc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urhE1ov0fc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urhE1ov0fc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urhE1ov0fc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urhE1ov0fc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urhE1ov0fc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urhE1ov0fc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urhE1ov0fc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urhE1ov0fc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urhE1ov0fc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urhE1ov0fc .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-urhE1ov0fc .navbar {
    height: 70px;
  }
  .cid-urhE1ov0fc .navbar.opened {
    height: auto;
  }
  .cid-urhE1ov0fc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urhEwmeJ2a {
  background-image: url("../../../assets/images/entrada-de-norte-para-sul-620x464.png");
}
.cid-urhEwmeJ2a .mbr-text,
.cid-urhEwmeJ2a .typed-text,
.cid-urhEwmeJ2a .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhEwmeJ2a .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhEwmeJ2a .btn {
  margin-left: 4px !important;
}
.cid-urhEwmeJ2a .animated-element {
  color: #353535;
}
.cid-urhEwmeJ2a .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhEwmeJ2a .mbr-section-text,
.cid-urhEwmeJ2a .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urhEwmeJ2a .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhEwmeJ2a .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urhEbzE7FQ {
  background-image: url("../../../assets/images/santana.jpg");
}
.cid-urhEbzE7FQ .mbr-text,
.cid-urhEbzE7FQ .typed-text,
.cid-urhEbzE7FQ .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhEbzE7FQ .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhEbzE7FQ .btn {
  margin-left: 4px !important;
}
.cid-urhEbzE7FQ .animated-element {
  color: #353535;
}
.cid-urhEbzE7FQ .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhEbzE7FQ .mbr-section-text,
.cid-urhEbzE7FQ .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urhEbzE7FQ .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhEbzE7FQ .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urhEaj7Zvr {
  background-image: url("../../../assets/images/eiras.jpg");
}
.cid-urhEaj7Zvr .mbr-text,
.cid-urhEaj7Zvr .typed-text,
.cid-urhEaj7Zvr .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-urhEaj7Zvr .row {
  backdrop-filter: blur(0px);
  border: 0px solid white;
}
.cid-urhEaj7Zvr .btn {
  margin-left: 4px !important;
}
.cid-urhEaj7Zvr .animated-element {
  color: #353535;
}
.cid-urhEaj7Zvr .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #353535;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-urhEaj7Zvr .mbr-section-text,
.cid-urhEaj7Zvr .mbr-section-btn {
  text-align: right;
  color: #111111;
}
.cid-urhEaj7Zvr .mbr-section-subtitle {
  text-align: center;
  color: #111111;
}
.cid-urhEaj7Zvr .mbr-section-title {
  text-align: right;
  color: #111111;
}
.cid-urhE1pPGyG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urhE1pPGyG .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-urhE1pPGyG .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-urhE1pPGyG .row {
    text-align: center;
  }
  .cid-urhE1pPGyG .row > div {
    margin: auto;
  }
  .cid-urhE1pPGyG .social-row {
    justify-content: center;
  }
}
.cid-urhE1pPGyG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-urhE1pPGyG .list {
  list-style: none;
  padding-left: 0;
  color: #111111;
}
@media (max-width: 991px) {
  .cid-urhE1pPGyG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-urhE1pPGyG .list {
    margin-bottom: 0rem;
  }
}
.cid-urhE1pPGyG .mbr-text {
  color: #111111;
}
.cid-urhE1pPGyG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-urhE1pPGyG .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-urhE1pPGyG div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-urhE1pPGyG .mbr-section-subtitle {
  color: #111111;
}
