.btn {
  border-width: 2px;
}
.video-wrapper {
  overflow: hidden;
}
body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4.5rem;
  line-height: 1.25;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.4rem;
  line-height: 1.25;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}
.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: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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: 1.25rem 2rem;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1.25rem 2rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #1e3f86 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #25607d !important;
}
.bg-danger {
  background-color: #ff0000 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: inherit;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #eb6029 !important;
  border-color: #eb6029 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: inherit;
  background-color: #ef8358 !important;
  border-color: #ef8358 !important;
  box-shadow: none;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ef8358 !important;
  border-color: #ef8358 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: none;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success,
.btn-success:active {
  background-color: #1e3f86 !important;
  border-color: #1e3f86 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: inherit;
  background-color: #2753b0 !important;
  border-color: #2753b0 !important;
  box-shadow: none;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2753b0 !important;
  border-color: #2753b0 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #25607d !important;
  border-color: #25607d !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: inherit;
  background-color: #317ea4 !important;
  border-color: #317ea4 !important;
  box-shadow: none;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #317ea4 !important;
  border-color: #317ea4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: inherit;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
  box-shadow: none;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff3333 !important;
  border-color: #ff3333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #eff0ec !important;
  border-color: #eff0ec !important;
  color: #757b62 !important;
  box-shadow: none;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: inherit;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: none;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #757b62 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: inherit;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: none;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: #000000 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #eb6029;
  color: #eb6029;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ad3d10 !important;
  background-color: transparent !important;
  border-color: #ad3d10 !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #eb6029 !important;
  border-color: #eb6029 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: #d4d4d4 !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #1e3f86;
  color: #1e3f86;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0e1e3f !important;
  background-color: transparent !important;
  border-color: #0e1e3f !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1e3f86 !important;
  border-color: #1e3f86 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #25607d;
  color: #25607d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #112d3a !important;
  background-color: transparent !important;
  border-color: #112d3a !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #25607d !important;
  border-color: #25607d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff0000;
  color: #ff0000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a80000 !important;
  background-color: transparent !important;
  border-color: #a80000 !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #000000 !important;
}
.text-secondary {
  color: #eb6029 !important;
}
.text-success {
  color: #1e3f86 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #25607d !important;
}
.text-danger {
  color: #ff0000 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9f380f !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0b1833 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #0e242e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #990000 !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #25607d;
}
.alert-danger {
  background-color: #ff0000;
}
.mbr-section-btn .btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4c78d7;
}
.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: #55a5cd;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcccc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
  border-radius: 100px !important;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.mbr-form .input-group-btn .btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn .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: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #232323;
  border-bottom-color: #232323;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #eb6029 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  padding: 15px 24px;
  border-radius: 4rem !important;
  flex-direction: row-reverse;
  border: none !important;
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin: 0 16px 0 0;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0;
  border-radius: 0 !important;
  font-weight: 400 !important;
}
.mbr-section-btn .btn-primary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-primary-outline .mbr-iconfont,
.mbr-section-btn .btn-secondary-outline .mbr-iconfont,
.mbr-section-btn-main .btn-secondary-outline .mbr-iconfont,
.mbr-section-btn .btn-success-outline .mbr-iconfont,
.mbr-section-btn-main .btn-success-outline .mbr-iconfont,
.mbr-section-btn .btn-info-outline .mbr-iconfont,
.mbr-section-btn-main .btn-info-outline .mbr-iconfont,
.mbr-section-btn .btn-warning-outline .mbr-iconfont,
.mbr-section-btn-main .btn-warning-outline .mbr-iconfont,
.mbr-section-btn .btn-danger-outline .mbr-iconfont,
.mbr-section-btn-main .btn-danger-outline .mbr-iconfont,
.mbr-section-btn .btn-black-outline .mbr-iconfont,
.mbr-section-btn-main .btn-black-outline .mbr-iconfont,
.mbr-section-btn .btn-white-outline .mbr-iconfont,
.mbr-section-btn-main .btn-white-outline .mbr-iconfont {
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-primary-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-primary-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-secondary-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-secondary-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-success-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-success-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-info-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-info-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-warning-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-warning-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-danger-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-danger-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-black-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-black-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-white-outline:hover .mbr-iconfont,
.mbr-section-btn-main .btn-white-outline:hover .mbr-iconfont,
.mbr-section-btn .btn-primary-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-primary-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-secondary-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-secondary-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-success-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-success-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-info-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-info-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-warning-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-warning-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-danger-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-danger-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-black-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-black-outline:focus .mbr-iconfont,
.mbr-section-btn .btn-white-outline:focus .mbr-iconfont,
.mbr-section-btn-main .btn-white-outline:focus .mbr-iconfont {
  transform: translateX(4px);
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  font-weight: 700 !important;
}
.mbr-section-btn .btn-primary .mbr-iconfont,
.mbr-section-btn-main .btn-primary .mbr-iconfont,
.mbr-section-btn .btn-secondary .mbr-iconfont,
.mbr-section-btn-main .btn-secondary .mbr-iconfont,
.mbr-section-btn .btn-success .mbr-iconfont,
.mbr-section-btn-main .btn-success .mbr-iconfont,
.mbr-section-btn .btn-info .mbr-iconfont,
.mbr-section-btn-main .btn-info .mbr-iconfont,
.mbr-section-btn .btn-warning .mbr-iconfont,
.mbr-section-btn-main .btn-warning .mbr-iconfont,
.mbr-section-btn .btn-danger .mbr-iconfont,
.mbr-section-btn-main .btn-danger .mbr-iconfont,
.mbr-section-btn .btn-black .mbr-iconfont,
.mbr-section-btn-main .btn-black .mbr-iconfont,
.mbr-section-btn .btn-white .mbr-iconfont,
.mbr-section-btn-main .btn-white .mbr-iconfont {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 400 !important;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-primary:hover .mbr-iconfont,
.mbr-section-btn-main .btn-primary:hover .mbr-iconfont,
.mbr-section-btn .btn-secondary:hover .mbr-iconfont,
.mbr-section-btn-main .btn-secondary:hover .mbr-iconfont,
.mbr-section-btn .btn-success:hover .mbr-iconfont,
.mbr-section-btn-main .btn-success:hover .mbr-iconfont,
.mbr-section-btn .btn-info:hover .mbr-iconfont,
.mbr-section-btn-main .btn-info:hover .mbr-iconfont,
.mbr-section-btn .btn-warning:hover .mbr-iconfont,
.mbr-section-btn-main .btn-warning:hover .mbr-iconfont,
.mbr-section-btn .btn-danger:hover .mbr-iconfont,
.mbr-section-btn-main .btn-danger:hover .mbr-iconfont,
.mbr-section-btn .btn-black:hover .mbr-iconfont,
.mbr-section-btn-main .btn-black:hover .mbr-iconfont,
.mbr-section-btn .btn-white:hover .mbr-iconfont,
.mbr-section-btn-main .btn-white:hover .mbr-iconfont,
.mbr-section-btn .btn-primary:focus .mbr-iconfont,
.mbr-section-btn-main .btn-primary:focus .mbr-iconfont,
.mbr-section-btn .btn-secondary:focus .mbr-iconfont,
.mbr-section-btn-main .btn-secondary:focus .mbr-iconfont,
.mbr-section-btn .btn-success:focus .mbr-iconfont,
.mbr-section-btn-main .btn-success:focus .mbr-iconfont,
.mbr-section-btn .btn-info:focus .mbr-iconfont,
.mbr-section-btn-main .btn-info:focus .mbr-iconfont,
.mbr-section-btn .btn-warning:focus .mbr-iconfont,
.mbr-section-btn-main .btn-warning:focus .mbr-iconfont,
.mbr-section-btn .btn-danger:focus .mbr-iconfont,
.mbr-section-btn-main .btn-danger:focus .mbr-iconfont,
.mbr-section-btn .btn-black:focus .mbr-iconfont,
.mbr-section-btn-main .btn-black:focus .mbr-iconfont,
.mbr-section-btn .btn-white:focus .mbr-iconfont,
.mbr-section-btn-main .btn-white:focus .mbr-iconfont {
  transform: scale(1.3);
}
.mbr-section-btn .btn-primary .mbr-iconfont,
.mbr-section-btn-main .btn-primary .mbr-iconfont {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.mbr-section-btn .btn-secondary .mbr-iconfont,
.mbr-section-btn-main .btn-secondary .mbr-iconfont {
  color: #eb6029 !important;
  background-color: #000000 !important;
}
.mbr-section-btn .btn-success .mbr-iconfont,
.mbr-section-btn-main .btn-success .mbr-iconfont {
  color: #1e3f86 !important;
  background-color: #000000 !important;
}
.mbr-section-btn .btn-info .mbr-iconfont,
.mbr-section-btn-main .btn-info .mbr-iconfont {
  color: #ffffff !important;
  background-color: #000000 !important;
}
.mbr-section-btn .btn-warning .mbr-iconfont,
.mbr-section-btn-main .btn-warning .mbr-iconfont {
  color: #25607d !important;
  background-color: #000000 !important;
}
.mbr-section-btn .btn-danger .mbr-iconfont,
.mbr-section-btn-main .btn-danger .mbr-iconfont {
  color: #ff0000 !important;
  background-color: #000000 !important;
}
.container-fluid {
  padding: 0 200px;
}
@media (max-width: 1440px) {
  .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .container {
    padding: 0 16px;
  }
}
.cid-urVs8GLtd7 {
  z-index: 1000;
  width: 100%;
}
.cid-urVs8GLtd7 nav.navbar {
  position: fixed;
}
.cid-urVs8GLtd7 .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-urVs8GLtd7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urVs8GLtd7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urVs8GLtd7 .dropdown-item:hover,
.cid-urVs8GLtd7 .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urVs8GLtd7 .dropdown-item:hover span {
  color: white;
}
.cid-urVs8GLtd7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urVs8GLtd7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urVs8GLtd7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urVs8GLtd7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urVs8GLtd7 .nav-link {
  position: relative;
}
.cid-urVs8GLtd7 .container {
  display: flex;
  margin: auto;
}
.cid-urVs8GLtd7 .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urVs8GLtd7 .dropdown-menu,
.cid-urVs8GLtd7 .navbar.opened {
  background: #ffffff !important;
}
.cid-urVs8GLtd7 .nav-item:focus,
.cid-urVs8GLtd7 .nav-link:focus {
  outline: none;
}
.cid-urVs8GLtd7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urVs8GLtd7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urVs8GLtd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urVs8GLtd7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urVs8GLtd7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urVs8GLtd7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urVs8GLtd7 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urVs8GLtd7 .navbar.opened {
  transition: all 0.3s;
}
.cid-urVs8GLtd7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urVs8GLtd7 .navbar .navbar-logo img {
  width: auto;
}
.cid-urVs8GLtd7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urVs8GLtd7 .navbar.collapsed {
  justify-content: center;
}
.cid-urVs8GLtd7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urVs8GLtd7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urVs8GLtd7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urVs8GLtd7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urVs8GLtd7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urVs8GLtd7 .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-urVs8GLtd7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urVs8GLtd7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urVs8GLtd7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urVs8GLtd7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urVs8GLtd7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urVs8GLtd7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urVs8GLtd7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urVs8GLtd7 .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-urVs8GLtd7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urVs8GLtd7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urVs8GLtd7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urVs8GLtd7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urVs8GLtd7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urVs8GLtd7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urVs8GLtd7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-urVs8GLtd7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urVs8GLtd7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urVs8GLtd7 .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-urVs8GLtd7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urVs8GLtd7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urVs8GLtd7 .dropdown-item.active,
.cid-urVs8GLtd7 .dropdown-item:active {
  background-color: transparent;
}
.cid-urVs8GLtd7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urVs8GLtd7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urVs8GLtd7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urVs8GLtd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urVs8GLtd7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urVs8GLtd7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urVs8GLtd7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urVs8GLtd7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urVs8GLtd7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urVs8GLtd7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urVs8GLtd7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urVs8GLtd7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVs8GLtd7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVs8GLtd7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urVs8GLtd7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVs8GLtd7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urVs8GLtd7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urVs8GLtd7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVs8GLtd7 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urVs8GLtd7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urVs8GLtd7 .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-urVs8GLtd7 .navbar {
    height: 70px;
  }
  .cid-urVs8GLtd7 .navbar.opened {
    height: auto;
  }
  .cid-urVs8GLtd7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCgV5SizXT {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
  background-image: url("../../../assets/images/black-white-modern-desktop-wallpaper.webp");
}
.cid-uCgV5SizXT::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uCgV5SizXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCgV5SizXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uCgV5SizXT .container {
    padding: 0 22px;
  }
}
.cid-uCgV5SizXT .row {
  justify-content: center;
}
.cid-uCgV5SizXT .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uCgV5SizXT .content-wrapper {
    padding: 0;
  }
}
.cid-uCgV5SizXT .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCgV5SizXT .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uCgV5SizXT .mbr-section-title {
  color: #ffffff;
}
.cid-uCgV5SizXT .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uCgV5SizXT .mbr-section-title,
.cid-uCgV5SizXT .mbr-section-btn {
  text-align: center;
  color: #d0e59f;
}
.cid-u9JV2In4or {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eb6029;
}
.cid-u9JV2In4or .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u9JV2In4or .container-fluid {
    padding: 0 16px;
  }
}
.cid-u9JV2In4or .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 950px;
  max-width: 950px;
}
@media (max-width: 767px) {
  .cid-u9JV2In4or .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-u9JV2In4or .embla__slide .slide-content {
  width: 100%;
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  width: fit-content;
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-img {
  width: 80px;
  margin: 0 64px;
}
@media (max-width: 992px) {
  .cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-img {
    margin: 0 30px;
  }
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-img img {
  width: 80px;
  height: 80px;
  border-radius: 0;
  object-fit: contain;
}
.cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-line {
  width: 250px;
  height: 2px;
  background-color: #000000;
}
@media (max-width: 992px) {
  .cid-u9JV2In4or .embla__slide .slide-content .item-wrapper .item-line {
    display: none;
  }
}
.cid-u9JV2In4or .embla__button--next,
.cid-u9JV2In4or .embla__button--prev {
  display: flex;
}
.cid-u9JV2In4or .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 16px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  font-weight: 700 !important;
  display: none;
}
.cid-u9JV2In4or .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u9JV2In4or .embla__button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.cid-u9JV2In4or .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u9JV2In4or .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u9JV2In4or .embla {
  position: relative;
  width: 100%;
  padding: 24px 0;
}
.cid-u9JV2In4or .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-u9JV2In4or .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u9JV2In4or .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u9JV2In4or .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-u9JV2In4or .item-menu-overlay {
  background-color: transparent;
}
.cid-u9JV2In4or .item-title {
  color: #000000;
}
.cid-u9JUOsSBaG {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u9JUOsSBaG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9JUOsSBaG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9JUOsSBaG .content-wrapper {
  padding: 115px 80px;
  background-color: #f6f6f6;
  border-radius: 6rem;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .cid-u9JUOsSBaG .content-wrapper {
    padding: 115px 40px;
  }
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .content-wrapper {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}
.cid-u9JUOsSBaG .content-wrap {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .content-wrap {
    margin-bottom: 35px;
  }
}
.cid-u9JUOsSBaG .content-wrap .mbr-desc {
  margin-bottom: 95px;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .content-wrap .mbr-desc {
    margin-bottom: 35px;
  }
}
.cid-u9JUOsSBaG .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .content-wrap .mbr-section-title {
    margin-bottom: 15px;
  }
}
.cid-u9JUOsSBaG .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-u9JUOsSBaG .image-wrapper {
  margin-bottom: 70px;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .image-wrapper {
    margin-bottom: 35px;
  }
}
.cid-u9JUOsSBaG .image-wrapper img {
  height: 464px;
  width: 150%;
  border-radius: 2rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .image-wrapper img {
    height: 350px;
    width: 100%;
  }
}
.cid-u9JUOsSBaG .item {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .item {
    margin-bottom: 35px;
  }
  .cid-u9JUOsSBaG .item:last-child {
    margin-bottom: 0;
  }
}
.cid-u9JUOsSBaG .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-u9JUOsSBaG .item .item-wrapper .card-box .icon-wrapper {
    margin-bottom: 15px;
  }
}
.cid-u9JUOsSBaG .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1e3f86;
  color: #ffffff;
  font-size: 60px;
}
.cid-u9JUOsSBaG .item .item-wrapper .card-box .item-title {
  margin-bottom: 0;
}
.cid-u9JUOsSBaG .item .item-wrapper .card-box .item-desc {
  margin-bottom: 0;
}
.cid-u9JUOsSBaG .item .item-wrapper .card-box .item-text {
  margin: 30px 0 0 0;
}
.cid-u9JUOsSBaG .mbr-section-title {
  color: #000000;
}
.cid-u9JUOsSBaG .mbr-desc {
  color: #1e3f86;
}
.cid-u9JUOsSBaG .mbr-text {
  color: #000000;
}
.cid-u9JUOsSBaG .item-title {
  color: #000000;
}
.cid-u9JUOsSBaG .item-desc {
  color: #000000;
}
.cid-u9JUOsSBaG .item-text {
  color: #000000;
}
.cid-u9JUP4XBgn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e3f86;
}
.cid-u9JUP4XBgn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9JUP4XBgn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9JUP4XBgn .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .content-wrapper {
    margin-bottom: 35px;
  }
}
.cid-u9JUP4XBgn .content-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .content-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-u9JUP4XBgn .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u9JUP4XBgn .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .content-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-u9JUP4XBgn .image-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .image-wrapper {
    padding-left: 0;
  }
}
.cid-u9JUP4XBgn .image-wrapper img {
  height: 540px;
  object-fit: cover;
  border-radius: 0 16rem;
}
@media (max-width: 992px) {
  .cid-u9JUP4XBgn .image-wrapper img {
    height: 350px;
    border-radius: 0 8rem;
  }
}
.cid-u9JUP4XBgn .mbr-section-title {
  color: #000000;
}
.cid-u9JUP4XBgn .mbr-desc {
  color: #ffffff;
}
.cid-u9JUP4XBgn .mbr-text {
  color: #ffffff;
}
.cid-u9JUP4XBgn .mbr-section-title,
.cid-u9JUP4XBgn .mbr-section-btn {
  color: #ffffff;
}
.cid-u9JURJ4o5Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/shutterstock-769971967-1024x680.webp");
}
.cid-u9JURJ4o5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9JURJ4o5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9JURJ4o5Y .row {
  justify-content: space-between;
}
.cid-u9JURJ4o5Y .content-wrapper {
  padding: 90px;
  border-radius: 3rem;
  background-color: #1e3f86;
}
@media (max-width: 992px) {
  .cid-u9JURJ4o5Y .content-wrapper {
    padding: 40px 16px;
    border-radius: 2rem;
  }
}
.cid-u9JURJ4o5Y .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u9JURJ4o5Y .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u9JURJ4o5Y .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u9JURJ4o5Y .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u9JURJ4o5Y .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-u9JURJ4o5Y .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-u9JURJ4o5Y .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-u9JURJ4o5Y .content-wrapper .logo-wrapper .logo-wrap .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-u9JURJ4o5Y .content-wrapper .logo-wrapper .logo-wrap .desc-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-u9JURJ4o5Y .mbr-section-title {
  color: #000000;
}
.cid-u9JURJ4o5Y .mbr-section-subtitle {
  color: #000000;
}
.cid-u9JURJ4o5Y .mbr-desc {
  color: #000000;
}
.cid-u9JURJ4o5Y .mbr-text {
  color: #ffffff;
}
.cid-u9JURJ4o5Y .mbr-section-title,
.cid-u9JURJ4o5Y .mbr-section-btn {
  color: #ffffff;
}
.cid-u9JURJ4o5Y .mbr-section-subtitle,
.cid-u9JURJ4o5Y .logo-wrapper {
  color: #ffffff;
}
.cid-uAEoTGBL7M .hidden {
  display: none;
}
.cid-uAEoUxkhSx P {
  color: #1281fc;
}
.cid-uAEoUxkhSx DIV {
  color: #ffffff;
}
.cid-uAEoUxkhSx H10 {
  color: #034e75;
}
.cid-uAEoUxkhSx .hidden {
  display: none;
}
.cid-uAEoUxkhSx .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEoUxkhSx .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEoUxkhSx .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEoUxkhSx .flag {
  background: transparent;
}
.cid-uAEoUxkhSx .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEoUxkhSx .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEoUxkhSx #google_translate_element {
  display: none;
}
.cid-uAEoUxkhSx .goog-te-banner {
  display: none;
}
.cid-uAEoUxkhSx .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEoUxkhSx .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEoUxkhSx body {
  top: 0px !important;
}
.cid-uAEoUxkhSx body body {
  top: 0 !important;
}
.cid-uAEoUxkhSx body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEoUxkhSx .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEoUxkhSx .goog-tooltip {
  display: none !important;
}
.cid-uAEoUxkhSx .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEoUxkhSx .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEoUxkhSx #goog-gt-tt,
.cid-uAEoUxkhSx .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEoUxkhSx #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEoUxkhSx .goog-logo-link {
  display: none !important;
}
.cid-uAEoUxkhSx .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEoUxkhSx div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEoUxkhSx div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uBtHnENEa2 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
  z-index: 0;
}
.cid-uBtHnENEa2 .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBtHnENEa2 img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBtHnENEa2 .icon1 {
  background: #1e3f86;
}
.cid-uBtHnENEa2 .icon2 {
  background: #1e3f86;
}
.cid-uBtHnENEa2 .icon3 {
  background: #1e3f86;
}
.cid-uBtHnENEa2 .card-box {
  padding-left: 1rem;
}
.cid-uBtHnENEa2 .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBtHnENEa2 .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBtHnENEa2 .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBtHnENEa2 .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBtHnENEa2 .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBtHnENEa2 .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBtHnENEa2 .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBtHnENEa2 .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBtHnENEa2 .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBtHnENEa2 .card-text {
  color: #000000;
}
.cid-uBtHnENEa2 .title {
  color: #ffffff;
}
.cid-uBtHnENEa2 .title,
.cid-uBtHnENEa2 .img-col {
  color: #000000;
}
.cid-uBtHogwV6A {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e9e6;
}
.cid-uBtHogwV6A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtHogwV6A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtHogwV6A .container {
    padding: 0 22px;
  }
}
.cid-uBtHogwV6A .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtHogwV6A .mbr-text {
  color: #000000;
}
.cid-uBL47Ixpdy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL47Ixpdy .row {
  justify-content: center;
}
.cid-uBL47Ixpdy .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL47Ixpdy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL47Ixpdy .item:focus,
.cid-uBL47Ixpdy span:focus {
  outline: none;
}
.cid-uBL47Ixpdy .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL47Ixpdy .col-items {
    padding: 0 !important;
  }
}
.cid-uBL47Ixpdy .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL47Ixpdy .item {
    padding: 0 20px;
  }
}
.cid-uBL47Ixpdy .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL47Ixpdy .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL47Ixpdy .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL47Ixpdy .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL47Ixpdy .item-content {
    text-align: center;
  }
}
.cid-uBL47Ixpdy .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL47Ixpdy .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL47Ixpdy .item-title {
  color: #000000;
}
.cid-uBL47Ixpdy .item-subtitle {
  color: #000000;
}
.cid-uBL47Ixpdy .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL47Ixpdy .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL47Ixpdy .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL47Ixpdy .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL47Ixpdy .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL47Ixpdy .item-title,
.cid-uBL47Ixpdy .mbr-section-btn {
  text-align: center;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urVM2XHFaY {
  z-index: 1000;
  width: 100%;
}
.cid-urVM2XHFaY nav.navbar {
  position: fixed;
}
.cid-urVM2XHFaY .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-urVM2XHFaY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urVM2XHFaY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urVM2XHFaY .dropdown-item:hover,
.cid-urVM2XHFaY .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urVM2XHFaY .dropdown-item:hover span {
  color: white;
}
.cid-urVM2XHFaY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urVM2XHFaY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urVM2XHFaY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urVM2XHFaY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urVM2XHFaY .nav-link {
  position: relative;
}
.cid-urVM2XHFaY .container {
  display: flex;
  margin: auto;
}
.cid-urVM2XHFaY .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urVM2XHFaY .dropdown-menu,
.cid-urVM2XHFaY .navbar.opened {
  background: #ffffff !important;
}
.cid-urVM2XHFaY .nav-item:focus,
.cid-urVM2XHFaY .nav-link:focus {
  outline: none;
}
.cid-urVM2XHFaY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urVM2XHFaY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urVM2XHFaY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urVM2XHFaY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urVM2XHFaY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urVM2XHFaY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urVM2XHFaY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urVM2XHFaY .navbar.opened {
  transition: all 0.3s;
}
.cid-urVM2XHFaY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urVM2XHFaY .navbar .navbar-logo img {
  width: auto;
}
.cid-urVM2XHFaY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urVM2XHFaY .navbar.collapsed {
  justify-content: center;
}
.cid-urVM2XHFaY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urVM2XHFaY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urVM2XHFaY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urVM2XHFaY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urVM2XHFaY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urVM2XHFaY .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-urVM2XHFaY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urVM2XHFaY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urVM2XHFaY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urVM2XHFaY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urVM2XHFaY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urVM2XHFaY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urVM2XHFaY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urVM2XHFaY .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-urVM2XHFaY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urVM2XHFaY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urVM2XHFaY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urVM2XHFaY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urVM2XHFaY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urVM2XHFaY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urVM2XHFaY .navbar.navbar-short {
  min-height: 60px;
}
.cid-urVM2XHFaY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urVM2XHFaY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urVM2XHFaY .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-urVM2XHFaY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urVM2XHFaY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urVM2XHFaY .dropdown-item.active,
.cid-urVM2XHFaY .dropdown-item:active {
  background-color: transparent;
}
.cid-urVM2XHFaY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urVM2XHFaY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urVM2XHFaY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urVM2XHFaY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urVM2XHFaY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urVM2XHFaY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urVM2XHFaY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urVM2XHFaY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urVM2XHFaY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urVM2XHFaY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urVM2XHFaY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urVM2XHFaY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM2XHFaY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM2XHFaY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urVM2XHFaY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM2XHFaY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urVM2XHFaY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urVM2XHFaY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM2XHFaY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urVM2XHFaY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urVM2XHFaY .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-urVM2XHFaY .navbar {
    height: 70px;
  }
  .cid-urVM2XHFaY .navbar.opened {
    height: auto;
  }
  .cid-urVM2XHFaY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urWu0YY58Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urWu0YY58Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-urWu0YY58Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urWu0YY58Y .container {
    padding: 0 30px;
  }
}
.cid-urWu0YY58Y .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urWu0YY58Y .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urWu0YY58Y .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urWu0YY58Y .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urWu0YY58Y .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urWu0YY58Y .mbr-section-title {
  color: #ffffff;
}
.cid-urWu0YY58Y .mbr-text,
.cid-urWu0YY58Y .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urWu0YY58Y .mbr-section-title,
.cid-urWu0YY58Y .mbr-section-btn {
  text-align: center;
}
.cid-us3ewO6cOH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-us3ewO6cOH img,
.cid-us3ewO6cOH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-us3ewO6cOH .item:focus,
.cid-us3ewO6cOH span:focus {
  outline: none;
}
.cid-us3ewO6cOH .item-wrapper {
  position: relative;
}
.cid-us3ewO6cOH .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-us3ewO6cOH .slide-content .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-us3ewO6cOH .slide-content .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us3ewO6cOH .slide-content .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-us3ewO6cOH .slide-content .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-us3ewO6cOH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-us3ewO6cOH .mbr-section-title {
  color: #232323;
}
.cid-us3ewO6cOH .mbr-text,
.cid-us3ewO6cOH .mbr-section-btn {
  text-align: left;
  color: #a4a4a1;
}
.cid-us3ewO6cOH .item-title {
  text-align: left;
  color: #1e3f86;
}
.cid-us3ewO6cOH .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-us3ewO6cOH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-us3ewO6cOH .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-us3ewO6cOH .embla__button--next,
.cid-us3ewO6cOH .embla__button--prev {
  display: flex;
}
.cid-us3ewO6cOH .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-us3ewO6cOH .embla__button {
    display: none;
  }
}
.cid-us3ewO6cOH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-us3ewO6cOH .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-us3ewO6cOH .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-us3ewO6cOH .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-us3ewO6cOH .embla__button {
    top: auto;
  }
}
.cid-us3ewO6cOH .embla {
  position: relative;
  width: 100%;
}
.cid-us3ewO6cOH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-us3ewO6cOH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-us3ewO6cOH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-us3ewO6cOH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-us3ewO6cOH .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-us3ewO6cOH .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-us3ewO6cOH .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uCgou59CRw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mercedes-e-819x452.webp");
}
.cid-uCgou59CRw .mbr-iconfont {
  font-size: 1.2rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(180deg);
  padding-left: 0.5rem;
}
.cid-uCgou59CRw .panel-group {
  border: none;
}
.cid-uCgou59CRw .card-header {
  padding: 0rem;
}
@media (max-width: 767px) {
  .cid-uCgou59CRw .card-header {
    padding: 0rem;
  }
}
.cid-uCgou59CRw .panel-body {
  padding: 0rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}
.cid-uCgou59CRw .img-col {
  padding: 0;
}
.cid-uCgou59CRw .img-item {
  height: 100%;
}
.cid-uCgou59CRw img {
  height: 100%;
  object-fit: cover;
}
.cid-uCgou59CRw .collapsed span {
  transform: rotate(0deg);
}
.cid-uCgou59CRw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uCgou59CRw p {
  margin-bottom: 0.3rem;
}
.cid-uCgou59CRw .panel-title-edit {
  color: #000000;
}
.cid-uCgou59CRw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-uCgou59CRw .card {
  background: #eb6029;
  padding: 2.25rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-uCgou59CRw .card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uCgou59CRw .card {
    margin-bottom: 1rem;
    padding: 2rem 1.5rem;
  }
}
.cid-uCgou59CRw .panel-text {
  color: #ffffff;
}
.cid-uCgou59CRw .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uCgou59CRw .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uCgou59CRw .panel-title-edit,
.cid-uCgou59CRw .mbr-iconfont {
  color: #ffffff;
}
.cid-uAEplERghl P {
  color: #1281fc;
}
.cid-uAEplERghl DIV {
  color: #ffffff;
}
.cid-uAEplERghl H10 {
  color: #034e75;
}
.cid-uAEplERghl .hidden {
  display: none;
}
.cid-uAEplERghl .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEplERghl .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEplERghl .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEplERghl .flag {
  background: transparent;
}
.cid-uAEplERghl .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEplERghl .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEplERghl #google_translate_element {
  display: none;
}
.cid-uAEplERghl .goog-te-banner {
  display: none;
}
.cid-uAEplERghl .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEplERghl .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEplERghl body {
  top: 0px !important;
}
.cid-uAEplERghl body body {
  top: 0 !important;
}
.cid-uAEplERghl body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEplERghl .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEplERghl .goog-tooltip {
  display: none !important;
}
.cid-uAEplERghl .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEplERghl .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEplERghl #goog-gt-tt,
.cid-uAEplERghl .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEplERghl #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEplERghl .goog-logo-link {
  display: none !important;
}
.cid-uAEplERghl .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEplERghl div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEplERghl div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uBnPCj2Dt2 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a7a6a4;
  z-index: 0;
}
.cid-uBnPCj2Dt2 .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBnPCj2Dt2 img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBnPCj2Dt2 .icon1 {
  background: #1e3f86;
}
.cid-uBnPCj2Dt2 .icon2 {
  background: #1e3f86;
}
.cid-uBnPCj2Dt2 .icon3 {
  background: #1e3f86;
}
.cid-uBnPCj2Dt2 .card-box {
  padding-left: 1rem;
}
.cid-uBnPCj2Dt2 .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBnPCj2Dt2 .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBnPCj2Dt2 .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBnPCj2Dt2 .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBnPCj2Dt2 .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBnPCj2Dt2 .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBnPCj2Dt2 .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBnPCj2Dt2 .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBnPCj2Dt2 .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBnPCj2Dt2 .card-text {
  color: #000000;
}
.cid-uBnPCj2Dt2 .title {
  color: #ffffff;
}
.cid-uBnPCj2Dt2 .title,
.cid-uBnPCj2Dt2 .img-col {
  color: #000000;
}
.cid-uBo8357WjA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBo8357WjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBo8357WjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBo8357WjA .container {
    padding: 0 22px;
  }
}
.cid-uBo8357WjA .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBo8357WjA .mbr-text {
  color: #000000;
}
.cid-uBnUFz2OQI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBnUFz2OQI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBnUFz2OQI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBnUFz2OQI .container {
    padding: 0 22px;
  }
}
.cid-uBnUFz2OQI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBnUFz2OQI .mbr-text {
  color: #000000;
}
.cid-uBL81o0JZt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL81o0JZt .row {
  justify-content: center;
}
.cid-uBL81o0JZt .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL81o0JZt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL81o0JZt .item:focus,
.cid-uBL81o0JZt span:focus {
  outline: none;
}
.cid-uBL81o0JZt .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL81o0JZt .col-items {
    padding: 0 !important;
  }
}
.cid-uBL81o0JZt .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL81o0JZt .item {
    padding: 0 20px;
  }
}
.cid-uBL81o0JZt .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL81o0JZt .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL81o0JZt .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL81o0JZt .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL81o0JZt .item-content {
    text-align: center;
  }
}
.cid-uBL81o0JZt .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL81o0JZt .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL81o0JZt .item-title {
  color: #000000;
}
.cid-uBL81o0JZt .item-subtitle {
  color: #000000;
}
.cid-uBL81o0JZt .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL81o0JZt .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL81o0JZt .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL81o0JZt .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL81o0JZt .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL81o0JZt .item-title,
.cid-uBL81o0JZt .mbr-section-btn {
  text-align: center;
}
.cid-uAEpllrEfH .hidden {
  display: none;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urVM4FmEFW {
  z-index: 1000;
  width: 100%;
}
.cid-urVM4FmEFW nav.navbar {
  position: fixed;
}
.cid-urVM4FmEFW .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-urVM4FmEFW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urVM4FmEFW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urVM4FmEFW .dropdown-item:hover,
.cid-urVM4FmEFW .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urVM4FmEFW .dropdown-item:hover span {
  color: white;
}
.cid-urVM4FmEFW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urVM4FmEFW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urVM4FmEFW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urVM4FmEFW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urVM4FmEFW .nav-link {
  position: relative;
}
.cid-urVM4FmEFW .container {
  display: flex;
  margin: auto;
}
.cid-urVM4FmEFW .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urVM4FmEFW .dropdown-menu,
.cid-urVM4FmEFW .navbar.opened {
  background: #ffffff !important;
}
.cid-urVM4FmEFW .nav-item:focus,
.cid-urVM4FmEFW .nav-link:focus {
  outline: none;
}
.cid-urVM4FmEFW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urVM4FmEFW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urVM4FmEFW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urVM4FmEFW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urVM4FmEFW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urVM4FmEFW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urVM4FmEFW .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urVM4FmEFW .navbar.opened {
  transition: all 0.3s;
}
.cid-urVM4FmEFW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urVM4FmEFW .navbar .navbar-logo img {
  width: auto;
}
.cid-urVM4FmEFW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urVM4FmEFW .navbar.collapsed {
  justify-content: center;
}
.cid-urVM4FmEFW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urVM4FmEFW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urVM4FmEFW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urVM4FmEFW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urVM4FmEFW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urVM4FmEFW .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-urVM4FmEFW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urVM4FmEFW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urVM4FmEFW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urVM4FmEFW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urVM4FmEFW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urVM4FmEFW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urVM4FmEFW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urVM4FmEFW .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-urVM4FmEFW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urVM4FmEFW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urVM4FmEFW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urVM4FmEFW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urVM4FmEFW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urVM4FmEFW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urVM4FmEFW .navbar.navbar-short {
  min-height: 60px;
}
.cid-urVM4FmEFW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urVM4FmEFW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urVM4FmEFW .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-urVM4FmEFW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urVM4FmEFW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urVM4FmEFW .dropdown-item.active,
.cid-urVM4FmEFW .dropdown-item:active {
  background-color: transparent;
}
.cid-urVM4FmEFW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urVM4FmEFW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urVM4FmEFW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urVM4FmEFW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urVM4FmEFW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urVM4FmEFW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urVM4FmEFW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urVM4FmEFW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urVM4FmEFW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urVM4FmEFW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urVM4FmEFW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urVM4FmEFW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM4FmEFW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM4FmEFW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urVM4FmEFW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM4FmEFW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urVM4FmEFW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urVM4FmEFW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM4FmEFW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urVM4FmEFW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urVM4FmEFW .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-urVM4FmEFW .navbar {
    height: 70px;
  }
  .cid-urVM4FmEFW .navbar.opened {
    height: auto;
  }
  .cid-urVM4FmEFW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urWubT7iU6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urWubT7iU6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urWubT7iU6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urWubT7iU6 .container {
    padding: 0 30px;
  }
}
.cid-urWubT7iU6 .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urWubT7iU6 .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urWubT7iU6 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urWubT7iU6 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urWubT7iU6 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urWubT7iU6 .mbr-section-title {
  color: #ffffff;
}
.cid-urWubT7iU6 .mbr-text,
.cid-urWubT7iU6 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urWubT7iU6 .mbr-section-title,
.cid-urWubT7iU6 .mbr-section-btn {
  text-align: center;
}
.cid-uBhHzcKL2f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uBhHzcKL2f .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .title-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uBhHzcKL2f .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 50%;
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .title-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBhHzcKL2f .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBhHzcKL2f .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBhHzcKL2f .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 850px;
  max-width: 850px;
}
@media (max-width: 1200px) {
  .cid-uBhHzcKL2f .embla__slide {
    min-width: 650px;
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .cid-uBhHzcKL2f .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uBhHzcKL2f .embla__slide:hover .slide-content .item-wrapper .item-img img,
.cid-uBhHzcKL2f .embla__slide:focus .slide-content .item-wrapper .item-img img {
  border: 2px solid #078efb;
}
.cid-uBhHzcKL2f .embla__slide .slide-content {
  width: 100%;
}
.cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-img img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  padding: 2px;
}
.cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-content .title-wrap .item-title {
    width: 100%;
  }
}
.cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .embla__slide .slide-content .item-wrapper .item-content .text-wrap .item-text {
    width: 100%;
  }
}
.cid-uBhHzcKL2f .embla__button--next,
.cid-uBhHzcKL2f .embla__button--prev {
  display: flex;
}
.cid-uBhHzcKL2f .embla__button {
  bottom: 0;
  width: 48px;
  height: 48px;
  font-size: 24px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uBhHzcKL2f .embla__button:hover {
  transform: scale(1.05);
}
.cid-uBhHzcKL2f .embla__button.embla__button--prev {
  left: 0;
}
.cid-uBhHzcKL2f .embla__button.embla__button--next {
  right: 0;
}
.cid-uBhHzcKL2f .embla {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 4rem;
}
@media (max-width: 992px) {
  .cid-uBhHzcKL2f .embla {
    margin-bottom: 38px;
  }
}
.cid-uBhHzcKL2f .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-uBhHzcKL2f .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBhHzcKL2f .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBhHzcKL2f .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uBhHzcKL2f .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uBhHzcKL2f .mbr-section-title {
  color: #ffffff;
}
.cid-uBhHzcKL2f .mbr-text,
.cid-uBhHzcKL2f .text-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uBhHzcKL2f .mbr-desc,
.cid-uBhHzcKL2f .desc-wrapper {
  color: #9aa0a6;
  text-align: center;
}
.cid-uBhHzcKL2f .item-title,
.cid-uBhHzcKL2f .title-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-uBhHzcKL2f .item-text,
.cid-uBhHzcKL2f .text-wrap {
  color: #9aa0a6;
  text-align: center;
}
.cid-uBhHzcKL2f .mbr-section-title,
.cid-uBhHzcKL2f .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-urVM4Qp5JR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9e9e6;
}
.cid-urVM4Qp5JR .mbr-fallback-image.disabled {
  display: none;
}
.cid-urVM4Qp5JR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urVM4Qp5JR .row {
  justify-content: space-between;
}
.cid-urVM4Qp5JR .text-wrapper .mbr-text {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-urVM4Qp5JR .text-wrapper .mbr-text {
    margin-bottom: 35px;
  }
}
.cid-urVM4Qp5JR .image-wrap {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-urVM4Qp5JR .image-wrap {
    margin-bottom: 16px;
  }
}
.cid-urVM4Qp5JR .image-wrapper img {
  height: 350px;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-urVM4Qp5JR .mbr-section-title {
  color: #000000;
}
.cid-urVM4Qp5JR .mbr-desc {
  color: #000000;
}
.cid-urVM4Qp5JR .mbr-text {
  color: #000000;
}
.cid-uAEpyEp2kZ P {
  color: #1281fc;
}
.cid-uAEpyEp2kZ DIV {
  color: #ffffff;
}
.cid-uAEpyEp2kZ H10 {
  color: #034e75;
}
.cid-uAEpyEp2kZ .hidden {
  display: none;
}
.cid-uAEpyEp2kZ .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEpyEp2kZ .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEpyEp2kZ .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEpyEp2kZ .flag {
  background: transparent;
}
.cid-uAEpyEp2kZ .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEpyEp2kZ .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEpyEp2kZ #google_translate_element {
  display: none;
}
.cid-uAEpyEp2kZ .goog-te-banner {
  display: none;
}
.cid-uAEpyEp2kZ .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEpyEp2kZ .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEpyEp2kZ body {
  top: 0px !important;
}
.cid-uAEpyEp2kZ body body {
  top: 0 !important;
}
.cid-uAEpyEp2kZ body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-tooltip {
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEpyEp2kZ #goog-gt-tt,
.cid-uAEpyEp2kZ .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEpyEp2kZ #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-logo-link {
  display: none !important;
}
.cid-uAEpyEp2kZ .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEpyEp2kZ div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEpyEp2kZ div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uBtHzWzmIn {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a7a6a4;
  z-index: 0;
}
.cid-uBtHzWzmIn .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBtHzWzmIn img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBtHzWzmIn .icon1 {
  background: #1e3f86;
}
.cid-uBtHzWzmIn .icon2 {
  background: #1e3f86;
}
.cid-uBtHzWzmIn .icon3 {
  background: #1e3f86;
}
.cid-uBtHzWzmIn .card-box {
  padding-left: 1rem;
}
.cid-uBtHzWzmIn .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBtHzWzmIn .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBtHzWzmIn .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBtHzWzmIn .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBtHzWzmIn .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBtHzWzmIn .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBtHzWzmIn .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBtHzWzmIn .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBtHzWzmIn .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBtHzWzmIn .card-text {
  color: #000000;
}
.cid-uBtHzWzmIn .title {
  color: #ffffff;
}
.cid-uBtHzWzmIn .title,
.cid-uBtHzWzmIn .img-col {
  color: #000000;
}
.cid-uBtHAqGV3R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtHAqGV3R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtHAqGV3R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtHAqGV3R .container {
    padding: 0 22px;
  }
}
.cid-uBtHAqGV3R .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtHAqGV3R .mbr-text {
  color: #000000;
}
.cid-uBL8LkyyPW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL8LkyyPW .row {
  justify-content: center;
}
.cid-uBL8LkyyPW .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL8LkyyPW img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL8LkyyPW .item:focus,
.cid-uBL8LkyyPW span:focus {
  outline: none;
}
.cid-uBL8LkyyPW .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL8LkyyPW .col-items {
    padding: 0 !important;
  }
}
.cid-uBL8LkyyPW .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL8LkyyPW .item {
    padding: 0 20px;
  }
}
.cid-uBL8LkyyPW .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL8LkyyPW .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL8LkyyPW .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL8LkyyPW .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL8LkyyPW .item-content {
    text-align: center;
  }
}
.cid-uBL8LkyyPW .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL8LkyyPW .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL8LkyyPW .item-title {
  color: #000000;
}
.cid-uBL8LkyyPW .item-subtitle {
  color: #000000;
}
.cid-uBL8LkyyPW .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL8LkyyPW .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL8LkyyPW .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL8LkyyPW .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL8LkyyPW .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL8LkyyPW .item-title,
.cid-uBL8LkyyPW .mbr-section-btn {
  text-align: center;
}
.cid-uAEpykS8B0 .hidden {
  display: none;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urVM64azLV {
  z-index: 1000;
  width: 100%;
}
.cid-urVM64azLV nav.navbar {
  position: fixed;
}
.cid-urVM64azLV .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-urVM64azLV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urVM64azLV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urVM64azLV .dropdown-item:hover,
.cid-urVM64azLV .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urVM64azLV .dropdown-item:hover span {
  color: white;
}
.cid-urVM64azLV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urVM64azLV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urVM64azLV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urVM64azLV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urVM64azLV .nav-link {
  position: relative;
}
.cid-urVM64azLV .container {
  display: flex;
  margin: auto;
}
.cid-urVM64azLV .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urVM64azLV .dropdown-menu,
.cid-urVM64azLV .navbar.opened {
  background: #ffffff !important;
}
.cid-urVM64azLV .nav-item:focus,
.cid-urVM64azLV .nav-link:focus {
  outline: none;
}
.cid-urVM64azLV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urVM64azLV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urVM64azLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urVM64azLV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urVM64azLV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urVM64azLV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urVM64azLV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urVM64azLV .navbar.opened {
  transition: all 0.3s;
}
.cid-urVM64azLV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urVM64azLV .navbar .navbar-logo img {
  width: auto;
}
.cid-urVM64azLV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urVM64azLV .navbar.collapsed {
  justify-content: center;
}
.cid-urVM64azLV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urVM64azLV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urVM64azLV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urVM64azLV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urVM64azLV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urVM64azLV .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-urVM64azLV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urVM64azLV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urVM64azLV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urVM64azLV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urVM64azLV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urVM64azLV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urVM64azLV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urVM64azLV .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-urVM64azLV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urVM64azLV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urVM64azLV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urVM64azLV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urVM64azLV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urVM64azLV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urVM64azLV .navbar.navbar-short {
  min-height: 60px;
}
.cid-urVM64azLV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urVM64azLV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urVM64azLV .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-urVM64azLV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urVM64azLV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urVM64azLV .dropdown-item.active,
.cid-urVM64azLV .dropdown-item:active {
  background-color: transparent;
}
.cid-urVM64azLV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urVM64azLV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urVM64azLV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urVM64azLV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urVM64azLV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urVM64azLV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urVM64azLV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urVM64azLV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urVM64azLV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urVM64azLV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urVM64azLV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urVM64azLV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM64azLV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM64azLV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urVM64azLV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM64azLV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urVM64azLV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urVM64azLV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM64azLV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urVM64azLV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urVM64azLV .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-urVM64azLV .navbar {
    height: 70px;
  }
  .cid-urVM64azLV .navbar.opened {
    height: auto;
  }
  .cid-urVM64azLV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urWukEW4bS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urWukEW4bS .mbr-fallback-image.disabled {
  display: none;
}
.cid-urWukEW4bS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urWukEW4bS .container {
    padding: 0 30px;
  }
}
.cid-urWukEW4bS .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urWukEW4bS .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urWukEW4bS .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urWukEW4bS .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urWukEW4bS .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urWukEW4bS .mbr-section-title {
  color: #ffffff;
}
.cid-urWukEW4bS .mbr-text,
.cid-urWukEW4bS .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urWukEW4bS .mbr-section-title,
.cid-urWukEW4bS .mbr-section-btn {
  text-align: center;
}
.cid-urVM6jpTfk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-urVM6jpTfk img {
  border-radius: 0px;
}
.cid-urVM6jpTfk .mbr-section-title {
  color: #000000;
  text-align: left;
  padding-top: 0.4rem;
}
.cid-urVM6jpTfk .date {
  text-transform: uppercase;
  color: #000000;
  text-align: left;
  padding-top: 1rem;
}
.cid-urVM6jpTfk .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-urVM6jpTfk .heading {
  text-align: center;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-urVM6jpTfk .right {
  display: flex;
  flex-direction: column;
}
.cid-urVM6jpTfk .mbr-section-btn {
  border: 2px solid #000000;
  width: auto;
}
.cid-urVM6jpTfk .mbr-section-btn:hover {
  background-color: #000000;
  border: 2px solid #000000;
}
.cid-urVM6jpTfk .card-heading {
  padding-top: 0;
}
.cid-urVM6jpTfk .mbr-text {
  padding-top: 10px;
  text-align: center;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urVM75m4Cp {
  z-index: 1000;
  width: 100%;
}
.cid-urVM75m4Cp nav.navbar {
  position: fixed;
}
.cid-urVM75m4Cp .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-urVM75m4Cp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urVM75m4Cp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urVM75m4Cp .dropdown-item:hover,
.cid-urVM75m4Cp .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urVM75m4Cp .dropdown-item:hover span {
  color: white;
}
.cid-urVM75m4Cp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urVM75m4Cp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urVM75m4Cp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urVM75m4Cp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urVM75m4Cp .nav-link {
  position: relative;
}
.cid-urVM75m4Cp .container {
  display: flex;
  margin: auto;
}
.cid-urVM75m4Cp .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urVM75m4Cp .dropdown-menu,
.cid-urVM75m4Cp .navbar.opened {
  background: #ffffff !important;
}
.cid-urVM75m4Cp .nav-item:focus,
.cid-urVM75m4Cp .nav-link:focus {
  outline: none;
}
.cid-urVM75m4Cp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urVM75m4Cp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urVM75m4Cp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urVM75m4Cp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urVM75m4Cp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urVM75m4Cp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urVM75m4Cp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urVM75m4Cp .navbar.opened {
  transition: all 0.3s;
}
.cid-urVM75m4Cp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urVM75m4Cp .navbar .navbar-logo img {
  width: auto;
}
.cid-urVM75m4Cp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urVM75m4Cp .navbar.collapsed {
  justify-content: center;
}
.cid-urVM75m4Cp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urVM75m4Cp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urVM75m4Cp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urVM75m4Cp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urVM75m4Cp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urVM75m4Cp .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-urVM75m4Cp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urVM75m4Cp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urVM75m4Cp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urVM75m4Cp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urVM75m4Cp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urVM75m4Cp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urVM75m4Cp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urVM75m4Cp .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-urVM75m4Cp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urVM75m4Cp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urVM75m4Cp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urVM75m4Cp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urVM75m4Cp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urVM75m4Cp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urVM75m4Cp .navbar.navbar-short {
  min-height: 60px;
}
.cid-urVM75m4Cp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urVM75m4Cp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urVM75m4Cp .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-urVM75m4Cp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urVM75m4Cp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urVM75m4Cp .dropdown-item.active,
.cid-urVM75m4Cp .dropdown-item:active {
  background-color: transparent;
}
.cid-urVM75m4Cp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urVM75m4Cp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urVM75m4Cp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urVM75m4Cp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urVM75m4Cp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urVM75m4Cp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urVM75m4Cp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urVM75m4Cp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urVM75m4Cp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urVM75m4Cp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urVM75m4Cp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urVM75m4Cp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM75m4Cp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urVM75m4Cp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urVM75m4Cp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM75m4Cp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urVM75m4Cp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urVM75m4Cp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urVM75m4Cp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urVM75m4Cp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urVM75m4Cp .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-urVM75m4Cp .navbar {
    height: 70px;
  }
  .cid-urVM75m4Cp .navbar.opened {
    height: auto;
  }
  .cid-urVM75m4Cp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urWusbiptE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urWusbiptE .mbr-fallback-image.disabled {
  display: none;
}
.cid-urWusbiptE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urWusbiptE .container {
    padding: 0 30px;
  }
}
.cid-urWusbiptE .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urWusbiptE .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urWusbiptE .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urWusbiptE .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urWusbiptE .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urWusbiptE .mbr-section-title {
  color: #ffffff;
}
.cid-urWusbiptE .mbr-text,
.cid-urWusbiptE .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urWusbiptE .mbr-section-title,
.cid-urWusbiptE .mbr-section-btn {
  text-align: center;
}
.cid-us1NS10HbI {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-us1NS10HbI .mbr-fallback-image.disabled {
  display: none;
}
.cid-us1NS10HbI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us1NS10HbI .dot {
  width: 6px;
  height: 6px;
  background: currentColor;
}
.cid-us1NS10HbI .dot-right {
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1500px) {
  .cid-us1NS10HbI .container {
    max-width: 1400px;
  }
}
.cid-us1NS10HbI .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #1e3f86;
  margin-bottom: 2rem;
}
.cid-us1NS10HbI .card-wrapper {
  box-shadow: inset 0px 0px 10px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  padding-top: 3rem;
  border-radius: 2rem;
}
.cid-us1NS10HbI .row {
  justify-content: center;
}
.cid-us1NS10HbI .card-title,
.cid-us1NS10HbI .iconfont-wrapper,
.cid-us1NS10HbI .dot {
  color: #000000;
}
.cid-us1NS10HbI .mbr-section-subtitle {
  color: #1e3f86;
}
.cid-us1MFqORcn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e9e9e6;
}
@media (min-width: 992px) {
  .cid-us1MFqORcn .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-us1MFqORcn .content {
    padding: 0 2rem;
  }
}
.cid-us1MFqORcn .icon-wrap {
  display: flex;
  margin-bottom: 2rem;
}
.cid-us1MFqORcn .icon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-us1MFqORcn .mbr-iconfont {
  font-size: 3.5rem;
  color: #eb6029 !important;
  padding-right: 1.5rem;
  padding-bottom: 4px;
}
.cid-us1MFqORcn .icon-title,
.cid-us1MFqORcn .mbr-iconfont {
  color: #1e3f86;
}
.cid-us1MFqORcn .icons-wrap {
  display: flex;
}
.cid-us1MFqORcn .google-map {
  height: 100%;
  position: relative;
}
.cid-us1MFqORcn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-us1MFqORcn .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-us1MFqORcn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-us1MFqORcn .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
@media (max-width: 992px) {
  .cid-us1MFqORcn .content {
    margin: auto;
  }
  .cid-us1MFqORcn .google-map {
    height: 30rem;
  }
}
@media (max-width: 767px) {
  .cid-us1MFqORcn .icons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-us1MFqORcn .icon-wrap {
    margin-right: 0rem;
  }
  .cid-us1MFqORcn .google-map {
    height: 20rem;
  }
}
.cid-us1MFqORcn .mbr-fallback-image.disabled {
  display: none;
}
.cid-us1MFqORcn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us2Ofd4ZLL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
.cid-us2Ofd4ZLL .decor-wrap_1 {
  position: absolute;
  top: 2rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-us2Ofd4ZLL .decor-wrap_2 {
  position: absolute;
  top: 20%;
  right: -4rem;
  width: 245px;
  height: 245px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-us2Ofd4ZLL .decor-wrap_3 {
  position: absolute;
  bottom: -35%;
  left: -10rem;
  width: 539px;
  height: 539px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-us2Ofd4ZLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-us2Ofd4ZLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-us2Ofd4ZLL .container {
    padding: 0 30px;
  }
}
.cid-us2Ofd4ZLL .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-us2Ofd4ZLL .title-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-us2Ofd4ZLL .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-us2Ofd4ZLL .title-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-us2Ofd4ZLL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row {
  margin: 0 -30px;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 40px !important;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 40px !important;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group {
  position: relative;
  margin-bottom: 30px !important;
  padding: 0 30px;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 10px;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 30px 30px 10px;
  border: none !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
  border-bottom: 2px solid #1e3f86 !important;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control {
    padding: 16px;
  }
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #1e3f86;
  transition: all 0.3s ease-in-out;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control:focus {
  background-color: #e9e9e6;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control:hover::placeholder,
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control:focus::placeholder {
  opacity: .5;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control textarea {
  min-height: 150px;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .form-group .form-control .form-check .form-check-input {
  background-color: #1e3f86;
  border-color: #1e3f86;
  border-radius: 0;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
  padding: 0;
  margin: 0;
}
.cid-us2Ofd4ZLL .form-wrapper .dragArea.row .mbr-section-btn .btn {
  margin-top: 10px;
}
.cid-us2Ofd4ZLL .mbr-desc {
  color: #1e3f86;
  text-align: center;
}
.cid-us2Ofd4ZLL .mbr-section-title {
  color: #ffffff;
}
.cid-us2Ofd4ZLL .mbr-section-title,
.cid-us2Ofd4ZLL .mbr-section-btn {
  text-align: center;
  color: #eb6029;
}
.cid-uAEpMqNFCr P {
  color: #1281fc;
}
.cid-uAEpMqNFCr DIV {
  color: #ffffff;
}
.cid-uAEpMqNFCr H10 {
  color: #034e75;
}
.cid-uAEpMqNFCr .hidden {
  display: none;
}
.cid-uAEpMqNFCr .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEpMqNFCr .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEpMqNFCr .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEpMqNFCr .flag {
  background: transparent;
}
.cid-uAEpMqNFCr .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEpMqNFCr .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEpMqNFCr #google_translate_element {
  display: none;
}
.cid-uAEpMqNFCr .goog-te-banner {
  display: none;
}
.cid-uAEpMqNFCr .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEpMqNFCr .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEpMqNFCr body {
  top: 0px !important;
}
.cid-uAEpMqNFCr body body {
  top: 0 !important;
}
.cid-uAEpMqNFCr body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEpMqNFCr .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEpMqNFCr .goog-tooltip {
  display: none !important;
}
.cid-uAEpMqNFCr .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEpMqNFCr .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEpMqNFCr #goog-gt-tt,
.cid-uAEpMqNFCr .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEpMqNFCr #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEpMqNFCr .goog-logo-link {
  display: none !important;
}
.cid-uAEpMqNFCr .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEpMqNFCr div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEpMqNFCr div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uBtHE8v0Ow {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a7a6a4;
  z-index: 0;
}
.cid-uBtHE8v0Ow .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBtHE8v0Ow img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBtHE8v0Ow .icon1 {
  background: #1e3f86;
}
.cid-uBtHE8v0Ow .icon2 {
  background: #1e3f86;
}
.cid-uBtHE8v0Ow .icon3 {
  background: #1e3f86;
}
.cid-uBtHE8v0Ow .card-box {
  padding-left: 1rem;
}
.cid-uBtHE8v0Ow .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBtHE8v0Ow .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBtHE8v0Ow .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBtHE8v0Ow .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBtHE8v0Ow .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBtHE8v0Ow .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBtHE8v0Ow .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBtHE8v0Ow .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBtHE8v0Ow .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBtHE8v0Ow .card-text {
  color: #000000;
}
.cid-uBtHE8v0Ow .title {
  color: #ffffff;
}
.cid-uBtHE8v0Ow .title,
.cid-uBtHE8v0Ow .img-col {
  color: #000000;
}
.cid-uBtIEwSpeZ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtIEwSpeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtIEwSpeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtIEwSpeZ .container {
    padding: 0 22px;
  }
}
.cid-uBtIEwSpeZ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtIEwSpeZ .mbr-text {
  color: #000000;
}
.cid-uBtHEEMYyB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtHEEMYyB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtHEEMYyB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtHEEMYyB .container {
    padding: 0 22px;
  }
}
.cid-uBtHEEMYyB .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtHEEMYyB .mbr-text {
  color: #000000;
}
.cid-uBL8RFmc4Z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL8RFmc4Z .row {
  justify-content: center;
}
.cid-uBL8RFmc4Z .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL8RFmc4Z img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL8RFmc4Z .item:focus,
.cid-uBL8RFmc4Z span:focus {
  outline: none;
}
.cid-uBL8RFmc4Z .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL8RFmc4Z .col-items {
    padding: 0 !important;
  }
}
.cid-uBL8RFmc4Z .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL8RFmc4Z .item {
    padding: 0 20px;
  }
}
.cid-uBL8RFmc4Z .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL8RFmc4Z .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL8RFmc4Z .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL8RFmc4Z .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL8RFmc4Z .item-content {
    text-align: center;
  }
}
.cid-uBL8RFmc4Z .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL8RFmc4Z .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL8RFmc4Z .item-title {
  color: #000000;
}
.cid-uBL8RFmc4Z .item-subtitle {
  color: #000000;
}
.cid-uBL8RFmc4Z .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL8RFmc4Z .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL8RFmc4Z .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL8RFmc4Z .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL8RFmc4Z .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL8RFmc4Z .item-title,
.cid-uBL8RFmc4Z .mbr-section-btn {
  text-align: center;
}
.cid-uAEpLClKT5 .hidden {
  display: none;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urXuWz5bBq {
  z-index: 1000;
  width: 100%;
}
.cid-urXuWz5bBq nav.navbar {
  position: fixed;
}
.cid-urXuWz5bBq .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-urXuWz5bBq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urXuWz5bBq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urXuWz5bBq .dropdown-item:hover,
.cid-urXuWz5bBq .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urXuWz5bBq .dropdown-item:hover span {
  color: white;
}
.cid-urXuWz5bBq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urXuWz5bBq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urXuWz5bBq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urXuWz5bBq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urXuWz5bBq .nav-link {
  position: relative;
}
.cid-urXuWz5bBq .container {
  display: flex;
  margin: auto;
}
.cid-urXuWz5bBq .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urXuWz5bBq .dropdown-menu,
.cid-urXuWz5bBq .navbar.opened {
  background: #ffffff !important;
}
.cid-urXuWz5bBq .nav-item:focus,
.cid-urXuWz5bBq .nav-link:focus {
  outline: none;
}
.cid-urXuWz5bBq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urXuWz5bBq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urXuWz5bBq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urXuWz5bBq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urXuWz5bBq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urXuWz5bBq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urXuWz5bBq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urXuWz5bBq .navbar.opened {
  transition: all 0.3s;
}
.cid-urXuWz5bBq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urXuWz5bBq .navbar .navbar-logo img {
  width: auto;
}
.cid-urXuWz5bBq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urXuWz5bBq .navbar.collapsed {
  justify-content: center;
}
.cid-urXuWz5bBq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urXuWz5bBq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urXuWz5bBq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urXuWz5bBq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urXuWz5bBq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urXuWz5bBq .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-urXuWz5bBq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urXuWz5bBq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urXuWz5bBq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urXuWz5bBq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urXuWz5bBq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urXuWz5bBq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urXuWz5bBq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urXuWz5bBq .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-urXuWz5bBq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urXuWz5bBq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urXuWz5bBq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urXuWz5bBq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urXuWz5bBq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urXuWz5bBq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urXuWz5bBq .navbar.navbar-short {
  min-height: 60px;
}
.cid-urXuWz5bBq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urXuWz5bBq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urXuWz5bBq .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-urXuWz5bBq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urXuWz5bBq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urXuWz5bBq .dropdown-item.active,
.cid-urXuWz5bBq .dropdown-item:active {
  background-color: transparent;
}
.cid-urXuWz5bBq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urXuWz5bBq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urXuWz5bBq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urXuWz5bBq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urXuWz5bBq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urXuWz5bBq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urXuWz5bBq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urXuWz5bBq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urXuWz5bBq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urXuWz5bBq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urXuWz5bBq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urXuWz5bBq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urXuWz5bBq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urXuWz5bBq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urXuWz5bBq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urXuWz5bBq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urXuWz5bBq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urXuWz5bBq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urXuWz5bBq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urXuWz5bBq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urXuWz5bBq .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-urXuWz5bBq .navbar {
    height: 70px;
  }
  .cid-urXuWz5bBq .navbar.opened {
    height: auto;
  }
  .cid-urXuWz5bBq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urXuWzrJ9R {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urXuWzrJ9R .mbr-fallback-image.disabled {
  display: none;
}
.cid-urXuWzrJ9R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urXuWzrJ9R .container {
    padding: 0 30px;
  }
}
.cid-urXuWzrJ9R .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urXuWzrJ9R .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urXuWzrJ9R .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urXuWzrJ9R .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urXuWzrJ9R .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urXuWzrJ9R .mbr-section-title {
  color: #ffffff;
}
.cid-urXuWzrJ9R .mbr-text,
.cid-urXuWzrJ9R .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urXuWzrJ9R .mbr-section-title,
.cid-urXuWzrJ9R .mbr-section-btn {
  text-align: center;
}
.cid-urXvBRfPb4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urXvBRfPb4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urXvBRfPb4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urXvBRfPb4 .container {
    padding: 0 22px;
  }
}
.cid-urXvBRfPb4 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urXvBRfPb4 .mbr-text {
  color: #000000;
}
.cid-uAEqttpplQ P {
  color: #1281fc;
}
.cid-uAEqttpplQ DIV {
  color: #ffffff;
}
.cid-uAEqttpplQ H10 {
  color: #034e75;
}
.cid-uAEqttpplQ .hidden {
  display: none;
}
.cid-uAEqttpplQ .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEqttpplQ .icon-bar a {
  display: block;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEqttpplQ .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEqttpplQ .flag {
  background: transparent;
}
.cid-uAEqttpplQ .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEqttpplQ .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEqttpplQ #google_translate_element {
  display: none;
}
.cid-uAEqttpplQ .goog-te-banner {
  display: none;
}
.cid-uAEqttpplQ .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEqttpplQ .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEqttpplQ body {
  top: 0px !important;
}
.cid-uAEqttpplQ body body {
  top: 0 !important;
}
.cid-uAEqttpplQ body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEqttpplQ .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEqttpplQ .goog-tooltip {
  display: none !important;
}
.cid-uAEqttpplQ .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEqttpplQ .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEqttpplQ #goog-gt-tt,
.cid-uAEqttpplQ .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEqttpplQ #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEqttpplQ .goog-logo-link {
  display: none !important;
}
.cid-uAEqttpplQ .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEqttpplQ div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEqttpplQ div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-urXv0IadKn {
  z-index: 1000;
  width: 100%;
}
.cid-urXv0IadKn nav.navbar {
  position: fixed;
}
.cid-urXv0IadKn .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-urXv0IadKn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-urXv0IadKn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-urXv0IadKn .dropdown-item:hover,
.cid-urXv0IadKn .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-urXv0IadKn .dropdown-item:hover span {
  color: white;
}
.cid-urXv0IadKn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-urXv0IadKn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-urXv0IadKn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-urXv0IadKn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-urXv0IadKn .nav-link {
  position: relative;
}
.cid-urXv0IadKn .container {
  display: flex;
  margin: auto;
}
.cid-urXv0IadKn .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-urXv0IadKn .dropdown-menu,
.cid-urXv0IadKn .navbar.opened {
  background: #ffffff !important;
}
.cid-urXv0IadKn .nav-item:focus,
.cid-urXv0IadKn .nav-link:focus {
  outline: none;
}
.cid-urXv0IadKn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urXv0IadKn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urXv0IadKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urXv0IadKn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urXv0IadKn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urXv0IadKn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urXv0IadKn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-urXv0IadKn .navbar.opened {
  transition: all 0.3s;
}
.cid-urXv0IadKn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urXv0IadKn .navbar .navbar-logo img {
  width: auto;
}
.cid-urXv0IadKn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-urXv0IadKn .navbar.collapsed {
  justify-content: center;
}
.cid-urXv0IadKn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urXv0IadKn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urXv0IadKn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-urXv0IadKn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urXv0IadKn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urXv0IadKn .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-urXv0IadKn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urXv0IadKn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urXv0IadKn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-urXv0IadKn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urXv0IadKn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urXv0IadKn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urXv0IadKn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urXv0IadKn .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-urXv0IadKn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-urXv0IadKn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urXv0IadKn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urXv0IadKn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-urXv0IadKn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urXv0IadKn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urXv0IadKn .navbar.navbar-short {
  min-height: 60px;
}
.cid-urXv0IadKn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-urXv0IadKn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-urXv0IadKn .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-urXv0IadKn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urXv0IadKn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urXv0IadKn .dropdown-item.active,
.cid-urXv0IadKn .dropdown-item:active {
  background-color: transparent;
}
.cid-urXv0IadKn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urXv0IadKn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urXv0IadKn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urXv0IadKn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urXv0IadKn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urXv0IadKn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urXv0IadKn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urXv0IadKn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-urXv0IadKn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urXv0IadKn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-urXv0IadKn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urXv0IadKn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urXv0IadKn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urXv0IadKn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urXv0IadKn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urXv0IadKn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urXv0IadKn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urXv0IadKn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urXv0IadKn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-urXv0IadKn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urXv0IadKn .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-urXv0IadKn .navbar {
    height: 70px;
  }
  .cid-urXv0IadKn .navbar.opened {
    height: auto;
  }
  .cid-urXv0IadKn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urXv0IzGke {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-urXv0IzGke .mbr-fallback-image.disabled {
  display: none;
}
.cid-urXv0IzGke .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urXv0IzGke .container {
    padding: 0 30px;
  }
}
.cid-urXv0IzGke .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-urXv0IzGke .content-wrapper {
    padding: 80px 0;
  }
}
.cid-urXv0IzGke .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-urXv0IzGke .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-urXv0IzGke .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-urXv0IzGke .mbr-section-title {
  color: #ffffff;
}
.cid-urXv0IzGke .mbr-text,
.cid-urXv0IzGke .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-urXv0IzGke .mbr-section-title,
.cid-urXv0IzGke .mbr-section-btn {
  text-align: center;
}
.cid-urXvwvCjzq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urXvwvCjzq .mbr-fallback-image.disabled {
  display: none;
}
.cid-urXvwvCjzq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-urXvwvCjzq .container {
    padding: 0 22px;
  }
}
.cid-urXvwvCjzq .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-urXvwvCjzq .mbr-text {
  color: #000000;
}
.cid-uAEqEigBTl P {
  color: #1281fc;
}
.cid-uAEqEigBTl DIV {
  color: #ffffff;
}
.cid-uAEqEigBTl H10 {
  color: #034e75;
}
.cid-uAEqEigBTl .hidden {
  display: none;
}
.cid-uAEqEigBTl .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uAEqEigBTl .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uAEqEigBTl .icon-bar a:hover {
  background-color: #000000;
}
.cid-uAEqEigBTl .flag {
  background: transparent;
}
.cid-uAEqEigBTl .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uAEqEigBTl .nav-right {
  float: left !important;
  position: relative;
}
.cid-uAEqEigBTl #google_translate_element {
  display: none;
}
.cid-uAEqEigBTl .goog-te-banner {
  display: none;
}
.cid-uAEqEigBTl .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uAEqEigBTl .goog-te-spinner-pos {
  display: none !important;
}
.cid-uAEqEigBTl body {
  top: 0px !important;
}
.cid-uAEqEigBTl body body {
  top: 0 !important;
}
.cid-uAEqEigBTl body .goog-te-banner-frame {
  display: none !important;
}
.cid-uAEqEigBTl .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uAEqEigBTl .goog-tooltip {
  display: none !important;
}
.cid-uAEqEigBTl .goog-tooltip:hover {
  display: none !important;
}
.cid-uAEqEigBTl .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uAEqEigBTl #goog-gt-tt,
.cid-uAEqEigBTl .goog-te-balloon-frame {
  display: none !important;
}
.cid-uAEqEigBTl #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uAEqEigBTl .goog-logo-link {
  display: none !important;
}
.cid-uAEqEigBTl .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uAEqEigBTl div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uAEqEigBTl div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-uBcJb9niAR {
  z-index: 1000;
  width: 100%;
}
.cid-uBcJb9niAR nav.navbar {
  position: fixed;
}
.cid-uBcJb9niAR .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-uBcJb9niAR .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBcJb9niAR .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBcJb9niAR .dropdown-item:hover,
.cid-uBcJb9niAR .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBcJb9niAR .dropdown-item:hover span {
  color: white;
}
.cid-uBcJb9niAR .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBcJb9niAR .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBcJb9niAR .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBcJb9niAR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBcJb9niAR .nav-link {
  position: relative;
}
.cid-uBcJb9niAR .container {
  display: flex;
  margin: auto;
}
.cid-uBcJb9niAR .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBcJb9niAR .dropdown-menu,
.cid-uBcJb9niAR .navbar.opened {
  background: #ffffff !important;
}
.cid-uBcJb9niAR .nav-item:focus,
.cid-uBcJb9niAR .nav-link:focus {
  outline: none;
}
.cid-uBcJb9niAR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBcJb9niAR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBcJb9niAR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBcJb9niAR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBcJb9niAR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBcJb9niAR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBcJb9niAR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-uBcJb9niAR .navbar.opened {
  transition: all 0.3s;
}
.cid-uBcJb9niAR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBcJb9niAR .navbar .navbar-logo img {
  width: auto;
}
.cid-uBcJb9niAR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBcJb9niAR .navbar.collapsed {
  justify-content: center;
}
.cid-uBcJb9niAR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBcJb9niAR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBcJb9niAR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uBcJb9niAR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBcJb9niAR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBcJb9niAR .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-uBcJb9niAR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBcJb9niAR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBcJb9niAR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBcJb9niAR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBcJb9niAR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBcJb9niAR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBcJb9niAR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBcJb9niAR .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-uBcJb9niAR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBcJb9niAR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBcJb9niAR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBcJb9niAR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBcJb9niAR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBcJb9niAR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBcJb9niAR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBcJb9niAR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBcJb9niAR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBcJb9niAR .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-uBcJb9niAR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBcJb9niAR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBcJb9niAR .dropdown-item.active,
.cid-uBcJb9niAR .dropdown-item:active {
  background-color: transparent;
}
.cid-uBcJb9niAR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBcJb9niAR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBcJb9niAR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBcJb9niAR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBcJb9niAR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBcJb9niAR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBcJb9niAR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBcJb9niAR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBcJb9niAR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBcJb9niAR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-uBcJb9niAR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBcJb9niAR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBcJb9niAR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBcJb9niAR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBcJb9niAR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBcJb9niAR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBcJb9niAR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBcJb9niAR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBcJb9niAR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBcJb9niAR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBcJb9niAR .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-uBcJb9niAR .navbar {
    height: 70px;
  }
  .cid-uBcJb9niAR .navbar.opened {
    height: auto;
  }
  .cid-uBcJb9niAR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBcJb9PMuu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-uBcJb9PMuu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcJb9PMuu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBcJb9PMuu .container {
    padding: 0 30px;
  }
}
.cid-uBcJb9PMuu .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uBcJb9PMuu .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uBcJb9PMuu .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uBcJb9PMuu .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBcJb9PMuu .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBcJb9PMuu .mbr-section-title {
  color: #ffffff;
}
.cid-uBcJb9PMuu .mbr-text,
.cid-uBcJb9PMuu .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uBcJb9PMuu .mbr-section-title,
.cid-uBcJb9PMuu .mbr-section-btn {
  text-align: center;
}
.cid-uBcPcGGiUL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uBcPcGGiUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcPcGGiUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBcPcGGiUL .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPcGGiUL .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPcGGiUL .container {
    padding: 0 24px;
  }
}
.cid-uBcPcGGiUL .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .content-wrapper {
    display: block;
  }
}
.cid-uBcPcGGiUL .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uBcPcGGiUL .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uBcPcGGiUL .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBcPcGGiUL .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBcPcGGiUL .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uBcPcGGiUL .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uBcPcGGiUL .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uBcPcGGiUL .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uBcPcGGiUL .mbr-section-title {
  color: #18212d;
}
.cid-uBcPcGGiUL .mbr-desc {
  color: #18212d;
}
.cid-uBcPcGGiUL .mbr-text {
  color: #18212d;
}
.cid-uBhOODARHM {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uBhOODARHM img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uBhOODARHM img {
    height: 350px;
  }
}
.cid-uBhOODARHM .mbr-section-title {
  color: #37a83f;
  text-align: center;
}
.cid-uBhOODARHM .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBhOODARHM .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBcPIVeX6b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBcPIVeX6b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcPIVeX6b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBcPIVeX6b .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPIVeX6b .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPIVeX6b .container {
    padding: 0 24px;
  }
}
.cid-uBcPIVeX6b .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .content-wrapper {
    display: block;
  }
}
.cid-uBcPIVeX6b .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uBcPIVeX6b .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uBcPIVeX6b .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBcPIVeX6b .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBcPIVeX6b .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uBcPIVeX6b .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uBcPIVeX6b .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uBcPIVeX6b .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uBcPIVeX6b .mbr-section-title {
  color: #18212d;
}
.cid-uBcPIVeX6b .mbr-desc {
  color: #18212d;
}
.cid-uBcPIVeX6b .mbr-text {
  color: #18212d;
}
.cid-uBhOsZbfd7 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uBhOsZbfd7 img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uBhOsZbfd7 img {
    height: 350px;
  }
}
.cid-uBhOsZbfd7 .mbr-section-title {
  color: #37a83f;
  text-align: center;
}
.cid-uBhOsZbfd7 .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBhOsZbfd7 .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBcPIjyevQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBcPIjyevQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcPIjyevQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBcPIjyevQ .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPIjyevQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uBcPIjyevQ .container {
    padding: 0 24px;
  }
}
.cid-uBcPIjyevQ .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .content-wrapper {
    display: block;
  }
}
.cid-uBcPIjyevQ .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uBcPIjyevQ .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uBcPIjyevQ .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uBcPIjyevQ .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uBcPIjyevQ .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uBcPIjyevQ .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uBcPIjyevQ .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uBcPIjyevQ .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uBcPIjyevQ .mbr-section-title {
  color: #18212d;
}
.cid-uBcPIjyevQ .mbr-desc {
  color: #18212d;
}
.cid-uBcPIjyevQ .mbr-text {
  color: #18212d;
}
.cid-uBhOYVGIQl {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uBhOYVGIQl img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uBhOYVGIQl img {
    height: 350px;
  }
}
.cid-uBhOYVGIQl .mbr-section-title {
  color: #37a83f;
  text-align: center;
}
.cid-uBhOYVGIQl .mbr-section-subtitle {
  text-align: left;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uBhOYVGIQl .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uBcNqx9kj3 {
  background-color: #ededed;
}
.cid-uBcNqx9kj3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcNqx9kj3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uBcNqx9kj3 .container {
    padding: 0 16px;
  }
}
.cid-uBcNqx9kj3 .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-uBcNqx9kj3 .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uBcNqx9kj3 .mbr-figure iframe {
  border-radius: 14px !important;
}
.cid-uBcNqx9kj3 .mbr-figure .app-video-wrapper img {
  border-radius: 14px !important;
}
.cid-uBcNqx9kj3 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uBcNHVnDwG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uBcNHVnDwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcNHVnDwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uBcNHVnDwG .container {
    padding: 0 16px;
  }
}
.cid-uBcNHVnDwG .content-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-uBcNHVnDwG .content-wrapper .mbr-section-title span {
  color: #f1634f;
}
.cid-uBcNHVnDwG .mbr-figure iframe {
  border-radius: 14px !important;
}
.cid-uBcNHVnDwG .mbr-figure .app-video-wrapper img {
  border-radius: 14px !important;
}
.cid-uBcNHVnDwG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uBcJbaRTJK P {
  color: #1281fc;
}
.cid-uBcJbaRTJK DIV {
  color: #ffffff;
}
.cid-uBcJbaRTJK H10 {
  color: #034e75;
}
.cid-uBcJbaRTJK .hidden {
  display: none;
}
.cid-uBcJbaRTJK .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uBcJbaRTJK .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uBcJbaRTJK .icon-bar a:hover {
  background-color: #000000;
}
.cid-uBcJbaRTJK .flag {
  background: transparent;
}
.cid-uBcJbaRTJK .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uBcJbaRTJK .nav-right {
  float: left !important;
  position: relative;
}
.cid-uBcJbaRTJK #google_translate_element {
  display: none;
}
.cid-uBcJbaRTJK .goog-te-banner {
  display: none;
}
.cid-uBcJbaRTJK .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uBcJbaRTJK .goog-te-spinner-pos {
  display: none !important;
}
.cid-uBcJbaRTJK body {
  top: 0px !important;
}
.cid-uBcJbaRTJK body body {
  top: 0 !important;
}
.cid-uBcJbaRTJK body .goog-te-banner-frame {
  display: none !important;
}
.cid-uBcJbaRTJK .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uBcJbaRTJK .goog-tooltip {
  display: none !important;
}
.cid-uBcJbaRTJK .goog-tooltip:hover {
  display: none !important;
}
.cid-uBcJbaRTJK .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uBcJbaRTJK #goog-gt-tt,
.cid-uBcJbaRTJK .goog-te-balloon-frame {
  display: none !important;
}
.cid-uBcJbaRTJK #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uBcJbaRTJK .goog-logo-link {
  display: none !important;
}
.cid-uBcJbaRTJK .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uBcJbaRTJK div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uBcJbaRTJK div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uBtHtQ7ErO {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a7a6a4;
  z-index: 0;
}
.cid-uBtHtQ7ErO .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBtHtQ7ErO img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBtHtQ7ErO .icon1 {
  background: #1e3f86;
}
.cid-uBtHtQ7ErO .icon2 {
  background: #1e3f86;
}
.cid-uBtHtQ7ErO .icon3 {
  background: #1e3f86;
}
.cid-uBtHtQ7ErO .card-box {
  padding-left: 1rem;
}
.cid-uBtHtQ7ErO .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBtHtQ7ErO .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBtHtQ7ErO .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBtHtQ7ErO .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBtHtQ7ErO .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBtHtQ7ErO .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBtHtQ7ErO .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBtHtQ7ErO .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBtHtQ7ErO .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBtHtQ7ErO .card-text {
  color: #000000;
}
.cid-uBtHtQ7ErO .title {
  color: #ffffff;
}
.cid-uBtHtQ7ErO .title,
.cid-uBtHtQ7ErO .img-col {
  color: #000000;
}
.cid-uBtIdfKtao {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtIdfKtao .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtIdfKtao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtIdfKtao .container {
    padding: 0 22px;
  }
}
.cid-uBtIdfKtao .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtIdfKtao .mbr-text {
  color: #000000;
}
.cid-uBtHuq9uVk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtHuq9uVk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtHuq9uVk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtHuq9uVk .container {
    padding: 0 22px;
  }
}
.cid-uBtHuq9uVk .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtHuq9uVk .mbr-text {
  color: #000000;
}
.cid-uBL8xthGYG {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL8xthGYG .row {
  justify-content: center;
}
.cid-uBL8xthGYG .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL8xthGYG img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL8xthGYG .item:focus,
.cid-uBL8xthGYG span:focus {
  outline: none;
}
.cid-uBL8xthGYG .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL8xthGYG .col-items {
    padding: 0 !important;
  }
}
.cid-uBL8xthGYG .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL8xthGYG .item {
    padding: 0 20px;
  }
}
.cid-uBL8xthGYG .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL8xthGYG .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL8xthGYG .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL8xthGYG .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL8xthGYG .item-content {
    text-align: center;
  }
}
.cid-uBL8xthGYG .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL8xthGYG .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL8xthGYG .item-title {
  color: #000000;
}
.cid-uBL8xthGYG .item-subtitle {
  color: #000000;
}
.cid-uBL8xthGYG .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL8xthGYG .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL8xthGYG .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL8xthGYG .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL8xthGYG .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL8xthGYG .item-title,
.cid-uBL8xthGYG .mbr-section-btn {
  text-align: center;
}
.cid-uBcJbcXlBg .hidden {
  display: none;
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-uBssV0YOKi {
  z-index: 1000;
  width: 100%;
}
.cid-uBssV0YOKi nav.navbar {
  position: fixed;
}
.cid-uBssV0YOKi .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-uBssV0YOKi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBssV0YOKi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBssV0YOKi .dropdown-item:hover,
.cid-uBssV0YOKi .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBssV0YOKi .dropdown-item:hover span {
  color: white;
}
.cid-uBssV0YOKi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBssV0YOKi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBssV0YOKi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBssV0YOKi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBssV0YOKi .nav-link {
  position: relative;
}
.cid-uBssV0YOKi .container {
  display: flex;
  margin: auto;
}
.cid-uBssV0YOKi .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBssV0YOKi .dropdown-menu,
.cid-uBssV0YOKi .navbar.opened {
  background: #ffffff !important;
}
.cid-uBssV0YOKi .nav-item:focus,
.cid-uBssV0YOKi .nav-link:focus {
  outline: none;
}
.cid-uBssV0YOKi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBssV0YOKi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBssV0YOKi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBssV0YOKi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBssV0YOKi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBssV0YOKi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBssV0YOKi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-uBssV0YOKi .navbar.opened {
  transition: all 0.3s;
}
.cid-uBssV0YOKi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBssV0YOKi .navbar .navbar-logo img {
  width: auto;
}
.cid-uBssV0YOKi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBssV0YOKi .navbar.collapsed {
  justify-content: center;
}
.cid-uBssV0YOKi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBssV0YOKi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBssV0YOKi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uBssV0YOKi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBssV0YOKi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBssV0YOKi .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-uBssV0YOKi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBssV0YOKi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBssV0YOKi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBssV0YOKi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBssV0YOKi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBssV0YOKi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBssV0YOKi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBssV0YOKi .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-uBssV0YOKi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBssV0YOKi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBssV0YOKi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBssV0YOKi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBssV0YOKi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBssV0YOKi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBssV0YOKi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBssV0YOKi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBssV0YOKi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBssV0YOKi .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-uBssV0YOKi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBssV0YOKi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBssV0YOKi .dropdown-item.active,
.cid-uBssV0YOKi .dropdown-item:active {
  background-color: transparent;
}
.cid-uBssV0YOKi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBssV0YOKi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBssV0YOKi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBssV0YOKi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBssV0YOKi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBssV0YOKi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBssV0YOKi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBssV0YOKi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBssV0YOKi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBssV0YOKi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-uBssV0YOKi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBssV0YOKi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBssV0YOKi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBssV0YOKi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBssV0YOKi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBssV0YOKi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBssV0YOKi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBssV0YOKi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBssV0YOKi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBssV0YOKi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBssV0YOKi .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-uBssV0YOKi .navbar {
    height: 70px;
  }
  .cid-uBssV0YOKi .navbar.opened {
    height: auto;
  }
  .cid-uBssV0YOKi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBssV1lc32 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-uBssV1lc32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBssV1lc32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBssV1lc32 .container {
    padding: 0 30px;
  }
}
.cid-uBssV1lc32 .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uBssV1lc32 .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uBssV1lc32 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uBssV1lc32 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBssV1lc32 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBssV1lc32 .mbr-section-title {
  color: #ffffff;
}
.cid-uBssV1lc32 .mbr-text,
.cid-uBssV1lc32 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uBssV1lc32 .mbr-section-title,
.cid-uBssV1lc32 .mbr-section-btn {
  text-align: center;
}
.cid-uBssV1C0xP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBssV1C0xP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBssV1C0xP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBssV1C0xP .container {
    padding: 0 22px;
  }
}
.cid-uBssV1C0xP .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBssV1C0xP .mbr-text {
  color: #000000;
}
.cid-uBssV2f0Cd P {
  color: #1281fc;
}
.cid-uBssV2f0Cd DIV {
  color: #ffffff;
}
.cid-uBssV2f0Cd H10 {
  color: #034e75;
}
.cid-uBssV2f0Cd .hidden {
  display: none;
}
.cid-uBssV2f0Cd .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 47%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uBssV2f0Cd .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uBssV2f0Cd .icon-bar a:hover {
  background-color: #000000;
}
.cid-uBssV2f0Cd .flag {
  background: transparent;
}
.cid-uBssV2f0Cd .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uBssV2f0Cd .nav-right {
  float: left !important;
  position: relative;
}
.cid-uBssV2f0Cd #google_translate_element {
  display: none;
}
.cid-uBssV2f0Cd .goog-te-banner {
  display: none;
}
.cid-uBssV2f0Cd .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uBssV2f0Cd .goog-te-spinner-pos {
  display: none !important;
}
.cid-uBssV2f0Cd body {
  top: 0px !important;
}
.cid-uBssV2f0Cd body body {
  top: 0 !important;
}
.cid-uBssV2f0Cd body .goog-te-banner-frame {
  display: none !important;
}
.cid-uBssV2f0Cd .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uBssV2f0Cd .goog-tooltip {
  display: none !important;
}
.cid-uBssV2f0Cd .goog-tooltip:hover {
  display: none !important;
}
.cid-uBssV2f0Cd .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uBssV2f0Cd #goog-gt-tt,
.cid-uBssV2f0Cd .goog-te-balloon-frame {
  display: none !important;
}
.cid-uBssV2f0Cd #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uBssV2f0Cd .goog-logo-link {
  display: none !important;
}
.cid-uBssV2f0Cd .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uBssV2f0Cd div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uBssV2f0Cd div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
.cid-uBtztkgJkS {
  z-index: 1000;
  width: 100%;
}
.cid-uBtztkgJkS nav.navbar {
  position: fixed;
}
.cid-uBtztkgJkS .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-uBtztkgJkS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBtztkgJkS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBtztkgJkS .dropdown-item:hover,
.cid-uBtztkgJkS .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uBtztkgJkS .dropdown-item:hover span {
  color: white;
}
.cid-uBtztkgJkS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBtztkgJkS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBtztkgJkS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBtztkgJkS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBtztkgJkS .nav-link {
  position: relative;
}
.cid-uBtztkgJkS .container {
  display: flex;
  margin: auto;
}
.cid-uBtztkgJkS .iconfont-wrapper {
  color: #1e3f86 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBtztkgJkS .dropdown-menu,
.cid-uBtztkgJkS .navbar.opened {
  background: #ffffff !important;
}
.cid-uBtztkgJkS .nav-item:focus,
.cid-uBtztkgJkS .nav-link:focus {
  outline: none;
}
.cid-uBtztkgJkS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBtztkgJkS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBtztkgJkS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBtztkgJkS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBtztkgJkS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBtztkgJkS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBtztkgJkS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.5);
}
.cid-uBtztkgJkS .navbar.opened {
  transition: all 0.3s;
}
.cid-uBtztkgJkS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBtztkgJkS .navbar .navbar-logo img {
  width: auto;
}
.cid-uBtztkgJkS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uBtztkgJkS .navbar.collapsed {
  justify-content: center;
}
.cid-uBtztkgJkS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBtztkgJkS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBtztkgJkS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.9rem);
  }
}
.cid-uBtztkgJkS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBtztkgJkS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBtztkgJkS .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-uBtztkgJkS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBtztkgJkS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBtztkgJkS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBtztkgJkS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBtztkgJkS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBtztkgJkS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBtztkgJkS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBtztkgJkS .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-uBtztkgJkS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBtztkgJkS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBtztkgJkS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBtztkgJkS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBtztkgJkS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBtztkgJkS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBtztkgJkS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBtztkgJkS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBtztkgJkS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uBtztkgJkS .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-uBtztkgJkS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBtztkgJkS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBtztkgJkS .dropdown-item.active,
.cid-uBtztkgJkS .dropdown-item:active {
  background-color: transparent;
}
.cid-uBtztkgJkS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBtztkgJkS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBtztkgJkS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBtztkgJkS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uBtztkgJkS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBtztkgJkS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBtztkgJkS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBtztkgJkS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uBtztkgJkS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBtztkgJkS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1f1437;
}
.cid-uBtztkgJkS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBtztkgJkS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBtztkgJkS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBtztkgJkS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBtztkgJkS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBtztkgJkS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBtztkgJkS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBtztkgJkS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBtztkgJkS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uBtztkgJkS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBtztkgJkS .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-uBtztkgJkS .navbar {
    height: 70px;
  }
  .cid-uBtztkgJkS .navbar.opened {
    height: auto;
  }
  .cid-uBtztkgJkS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBtztkQOLf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/imagem-whatsapp-2025-01-30-s-16.42.42-13214ba1.webp");
}
.cid-uBtztkQOLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtztkQOLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtztkQOLf .container {
    padding: 0 30px;
  }
}
.cid-uBtztkQOLf .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uBtztkQOLf .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uBtztkQOLf .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uBtztkQOLf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uBtztkQOLf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uBtztkQOLf .mbr-section-title {
  color: #ffffff;
}
.cid-uBtztkQOLf .mbr-text,
.cid-uBtztkQOLf .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uBtztkQOLf .mbr-section-title,
.cid-uBtztkQOLf .mbr-section-btn {
  text-align: center;
}
.cid-uBtBxCCmPq {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uBtBxCCmPq .card-wrapper {
  background-color: #f2f3f7;
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #f2f3f7;
  transition: all 0.3s;
  padding: 3rem;
  padding-top: 3rem;
}
.cid-uBtBxCCmPq .mbr-section-title,
.cid-uBtBxCCmPq .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBtBxCCmPq .card-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uBtBxCCmPq .card-wrapper {
    padding: 1rem;
    padding-top: 1rem;
    border-radius: 2rem;
  }
}
.cid-uBtBxCCmPq .card-title {
  color: #1e3f86;
}
.cid-uBtBxCCmPq .price {
  color: #1e3f86;
}
.cid-uBtBxCCmPq .mbr-text {
  color: #eb6029;
}
.cid-uBtBxCCmPq .mbr-section-title {
  color: #1e3f86;
}
.cid-uBtBxCCmPq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtBxCCmPq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBtDkoFdPh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uBtDkoFdPh .card-wrapper {
  background-color: #f2f3f7;
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #f2f3f7;
  transition: all 0.3s;
  padding: 3rem;
  padding-top: 3rem;
}
.cid-uBtDkoFdPh .mbr-section-title,
.cid-uBtDkoFdPh .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBtDkoFdPh .card-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uBtDkoFdPh .card-wrapper {
    padding: 1rem;
    padding-top: 1rem;
    border-radius: 2rem;
  }
}
.cid-uBtDkoFdPh .card-title {
  color: #1e3f86;
}
.cid-uBtDkoFdPh .price {
  color: #1e3f86;
}
.cid-uBtDkoFdPh .mbr-text {
  color: #eb6029;
}
.cid-uBtDkoFdPh .mbr-section-title {
  color: #1e3f86;
}
.cid-uBtDkoFdPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtDkoFdPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBtEme6g3Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f3f7;
}
.cid-uBtEme6g3Z .card-wrapper {
  background-color: #f2f3f7;
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #f2f3f7;
  transition: all 0.3s;
  padding: 3rem;
  padding-top: 3rem;
}
.cid-uBtEme6g3Z .mbr-section-title,
.cid-uBtEme6g3Z .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBtEme6g3Z .card-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uBtEme6g3Z .card-wrapper {
    padding: 1rem;
    padding-top: 1rem;
    border-radius: 2rem;
  }
}
.cid-uBtEme6g3Z .card-title {
  color: #1e3f86;
}
.cid-uBtEme6g3Z .price {
  color: #1e3f86;
}
.cid-uBtEme6g3Z .mbr-text {
  color: #eb6029;
}
.cid-uBtEme6g3Z .mbr-section-title {
  color: #1e3f86;
}
.cid-uBtEme6g3Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtEme6g3Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBtFbHkKTf {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #f2f3f7;
}
.cid-uBtFbHkKTf .card-wrapper {
  background-color: #f2f3f7;
  margin-bottom: 2rem;
  border-radius: 3rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  background: #f2f3f7;
  transition: all 0.3s;
  padding: 3rem;
  padding-top: 3rem;
}
.cid-uBtFbHkKTf .mbr-section-title,
.cid-uBtFbHkKTf .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBtFbHkKTf .card-wrapper {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uBtFbHkKTf .card-wrapper {
    padding: 1rem;
    padding-top: 1rem;
    border-radius: 2rem;
  }
}
.cid-uBtFbHkKTf .card-title {
  color: #1e3f86;
}
.cid-uBtFbHkKTf .price {
  color: #1e3f86;
}
.cid-uBtFbHkKTf .mbr-text {
  color: #eb6029;
}
.cid-uBtFbHkKTf .mbr-section-title {
  color: #1e3f86;
}
.cid-uBtFbHkKTf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtFbHkKTf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBtHwLAF9S {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #a7a6a4;
  z-index: 0;
}
.cid-uBtHwLAF9S .card-wrapper {
  display: flex;
  overflow: visible;
}
.cid-uBtHwLAF9S img {
  width: 60px;
  display: inline-block;
  margin-bottom: 1rem;
}
.cid-uBtHwLAF9S .icon1 {
  background: #1e3f86;
}
.cid-uBtHwLAF9S .icon2 {
  background: #1e3f86;
}
.cid-uBtHwLAF9S .icon3 {
  background: #1e3f86;
}
.cid-uBtHwLAF9S .card-box {
  padding-left: 1rem;
}
.cid-uBtHwLAF9S .iconfont-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 2px #ffffff inset;
  border-radius: 50%;
  min-width: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  margin: 0 0.4rem;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uBtHwLAF9S .iconfont-wrapper:hover {
  box-shadow: 0px 0px 0px 2px transparent inset;
}
.cid-uBtHwLAF9S .iconfont-wrapper:hover .icon-bg {
  top: 0px;
  right: 0px;
}
.cid-uBtHwLAF9S .iconfont-wrapper:hover .mbr-iconfont {
  color: white;
}
.cid-uBtHwLAF9S .mbr-iconfont {
  z-index: 2;
  transition: all 0.3s;
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uBtHwLAF9S .icon-bg {
  position: absolute;
  overflow: visible;
  top: 5px;
  right: -5px;
  box-sizing: border-box;
  width: 100%;
  transition: all 0.3s;
  z-index: -1;
  height: 100%;
  border-radius: 50%;
}
.cid-uBtHwLAF9S .card-title {
  transition: all 0.3s;
}
@media (max-width: 992px) {
  .cid-uBtHwLAF9S .card-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .cid-uBtHwLAF9S .card-box {
    padding: 0;
    padding-top: 2rem;
  }
}
.cid-uBtHwLAF9S .card-text {
  color: #000000;
}
.cid-uBtHwLAF9S .title {
  color: #ffffff;
}
.cid-uBtHwLAF9S .title,
.cid-uBtHwLAF9S .img-col {
  color: #000000;
}
.cid-uBtIqVEX0O {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtIqVEX0O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtIqVEX0O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtIqVEX0O .container {
    padding: 0 22px;
  }
}
.cid-uBtIqVEX0O .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtIqVEX0O .mbr-text {
  color: #000000;
}
.cid-uBtHxq0eCY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #a7a6a4;
}
.cid-uBtHxq0eCY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBtHxq0eCY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBtHxq0eCY .container {
    padding: 0 22px;
  }
}
.cid-uBtHxq0eCY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uBtHxq0eCY .mbr-text {
  color: #000000;
}
.cid-uBL8F24xWD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBL8F24xWD .row {
  justify-content: center;
}
.cid-uBL8F24xWD .item-img {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
  border-radius: 1rem;
  overflow: hidden;
}
.cid-uBL8F24xWD img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uBL8F24xWD .item:focus,
.cid-uBL8F24xWD span:focus {
  outline: none;
}
.cid-uBL8F24xWD .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uBL8F24xWD .col-items {
    padding: 0 !important;
  }
}
.cid-uBL8F24xWD .item {
  cursor: pointer;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cid-uBL8F24xWD .item {
    padding: 0 20px;
  }
}
.cid-uBL8F24xWD .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .cid-uBL8F24xWD .item-wrapper {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uBL8F24xWD .item-wrapper {
    padding: 60px;
  }
}
.cid-uBL8F24xWD .item-content {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uBL8F24xWD .item-content {
    text-align: center;
  }
}
.cid-uBL8F24xWD .mbr-section-title {
  width: 100%;
  color: #000000;
}
.cid-uBL8F24xWD .mbr-text {
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
  opacity: 0.5;
}
.cid-uBL8F24xWD .item-title {
  color: #000000;
}
.cid-uBL8F24xWD .item-subtitle {
  color: #000000;
}
.cid-uBL8F24xWD .mbr-section-head {
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  .cid-uBL8F24xWD .mbr-section-head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBL8F24xWD .mbr-section-head {
    text-align: center !important;
  }
}
@media (max-width: 575px) {
  .cid-uBL8F24xWD .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uBL8F24xWD .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uBL8F24xWD .item-title,
.cid-uBL8F24xWD .mbr-section-btn {
  text-align: center;
}
.cid-uBtztpYcBf .hidden {
  display: none;
}
.cid-uBtztoBMKb P {
  color: #1281fc;
}
.cid-uBtztoBMKb DIV {
  color: #ffffff;
}
.cid-uBtztoBMKb H10 {
  color: #034e75;
}
.cid-uBtztoBMKb .hidden {
  display: none;
}
.cid-uBtztoBMKb .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 49%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 6px;
}
.cid-uBtztoBMKb .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 6px;
}
.cid-uBtztoBMKb .icon-bar a:hover {
  background-color: #000000;
}
.cid-uBtztoBMKb .flag {
  background: transparent;
}
.cid-uBtztoBMKb .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uBtztoBMKb .nav-right {
  float: left !important;
  position: relative;
}
.cid-uBtztoBMKb #google_translate_element {
  display: none;
}
.cid-uBtztoBMKb .goog-te-banner {
  display: none;
}
.cid-uBtztoBMKb .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uBtztoBMKb .goog-te-spinner-pos {
  display: none !important;
}
.cid-uBtztoBMKb body {
  top: 0px !important;
}
.cid-uBtztoBMKb body body {
  top: 0 !important;
}
.cid-uBtztoBMKb body .goog-te-banner-frame {
  display: none !important;
}
.cid-uBtztoBMKb .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uBtztoBMKb .goog-tooltip {
  display: none !important;
}
.cid-uBtztoBMKb .goog-tooltip:hover {
  display: none !important;
}
.cid-uBtztoBMKb .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uBtztoBMKb #goog-gt-tt,
.cid-uBtztoBMKb .goog-te-balloon-frame {
  display: none !important;
}
.cid-uBtztoBMKb #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uBtztoBMKb .goog-logo-link {
  display: none !important;
}
.cid-uBtztoBMKb .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uBtztoBMKb div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uBtztoBMKb div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uCy5QvJo6I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #e9e9e6;
}
.cid-uCy5QvJo6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCy5QvJo6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCy5QvJo6I .content-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uCy5QvJo6I .social-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .social-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .social-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  color: #f96e47;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffffff;
  background-color: #ec4b52;
  font-size: 32px;
  border-radius: .5rem;
  transition: all 0.3s ease-in-out;
  margin: 0 8px 8px 0;
}
.cid-uCy5QvJo6I .social-wrapper .social-wrap .soc-wrap .soc-item:nth-child(2n) a .mbr-iconfont {
  background-color: #0866ff;
}
.cid-uCy5QvJo6I .list-wrapper {
  margin-bottom: 78px;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .mbr-desc {
  margin-bottom: 24px;
  opacity: .4;
}
.cid-uCy5QvJo6I .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .list-wrapper .list .item-wrap {
    margin-bottom: 16px;
  }
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:hover,
.cid-uCy5QvJo6I .list-wrapper .list .item-wrap:focus {
  color: #f96e47;
}
.cid-uCy5QvJo6I .border-wrap {
  height: 1px;
  background-color: #b9b9b9;
  margin: 78px 0 24px 0;
}
@media (max-width: 992px) {
  .cid-uCy5QvJo6I .border-wrap {
    margin: 0 0 16px 0;
  }
}
.cid-uCy5QvJo6I .mbr-copy {
  margin-bottom: 0;
  color: #080808;
  text-align: center;
}
.cid-uCy5QvJo6I .mbr-section-title {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-text {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-desc {
  color: #080808;
}
.cid-uCy5QvJo6I .list {
  color: #ffffff;
}
.cid-uCy5QvJo6I .mbr-section-title,
.cid-uCy5QvJo6I .mbr-section-btn,
.cid-uCy5QvJo6I .social-wrap {
  color: #080808;
}
