.btn {
  border-width: 1px;
}
body {
  font-family: EB Garamond;
}
.display-1 {
  font-family: 'EB Garamond', serif;
  font-size: 4.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'EB Garamond', serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'EB Garamond', serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.5rem 0.75rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #3d626c !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #ffb666 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #3d626c !important;
  border-color: #3d626c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #1e3035 !important;
  border-color: #1e3035 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1e3035 !important;
  border-color: #1e3035 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #db0037 !important;
  border-color: #db0037 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #db0037 !important;
  border-color: #db0037 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #534d46 !important;
  border-color: #534d46 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #534d46 !important;
  border-color: #534d46 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #e0d40a !important;
  border-color: #e0d40a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #e0d40a !important;
  border-color: #e0d40a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb666 !important;
  border-color: #ffb666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff8d0f !important;
  border-color: #ff8d0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff8d0f !important;
  border-color: #ff8d0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #3d626c;
  color: #3d626c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1e3035 !important;
  background-color: transparent!important;
  border-color: #1e3035 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #3d626c !important;
  border-color: #3d626c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff3366;
  color: #ff3366;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #db0037 !important;
  background-color: transparent!important;
  border-color: #db0037 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #82786e;
  color: #82786e;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #534d46 !important;
  background-color: transparent!important;
  border-color: #534d46 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #f7ed4a;
  color: #f7ed4a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e0d40a !important;
  background-color: transparent!important;
  border-color: #e0d40a !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ffb666;
  color: #ffb666;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff8d0f !important;
  background-color: transparent!important;
  border-color: #ff8d0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb666 !important;
  border-color: #ffb666 !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: #3d626c !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #ffb666 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #18272b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff8500 !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) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #3d626c;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #ffb666;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #3d626c;
  border-color: #3d626c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #3d626c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #77a5b2;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #3d626c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #3d626c;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #3d626c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #3d626c;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #3d626c;
  border-bottom-color: #3d626c;
}
.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: #3d626c !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: #ff3366 !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='%233d626c' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srZTjKr2Tq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-srZTjKr2Tq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-srZTjKr2Tq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-srZTjKr2Tq button.navbar-toggler:focus {
  outline: none;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq .dropdown-toggle:after {
  display: none;
}
.cid-srZTjKr2Tq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .btn {
  display: -webkit-flex;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-srZTjKr2Tq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-srZTjKr2Tq .collapsed button.navbar-toggler {
  display: block;
}
.cid-srZTjKr2Tq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-srZTjKr2Tq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-srZTjKr2Tq .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq img {
    height: 3.8rem !important;
  }
  .cid-srZTjKr2Tq .btn {
    display: -webkit-flex;
  }
  .cid-srZTjKr2Tq button.navbar-toggler {
    display: block;
  }
  .cid-srZTjKr2Tq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-srZTjKr2Tq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing,
  .cid-srZTjKr2Tq .navbar-collapse.show {
    display: block !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-srZTjKr2Tq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-srZTjKr2Tq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-srZTjKr2Tq .nav-link,
.cid-srZTjKr2Tq .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-srZTjKr2Tq .nav-link:hover,
.cid-srZTjKr2Tq .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-srQKIiO5Q8 {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-srQKIiO5Q8 {
    padding-top: 5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-srQKIiO5Q8 {
    padding-top: 3rem;
    padding-bottom: 0rem;
  }
}
.cid-srQKIiO5Q8 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-srQKIiO5Q8 .f-row {
    flex-direction: row;
  }
}
.cid-srQKIiO5Q8 .f-item {
  flex: 1 1 100%;
}
@media (min-width: 992px) {
  .cid-srQKIiO5Q8 .f-item {
    flex: 1 1 50%;
  }
}
.cid-srQKIiO5Q8 .image-wrapper {
  height: 100%;
}
@media (min-width: 992px) {
  .cid-srQKIiO5Q8 .image-wrapper {
    min-height: 650px;
  }
}
.cid-srQKIiO5Q8 .image-wrapper img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.cid-srQKIiO5Q8 .text-wrapper {
  width: 100%;
  background: #e0e0e0;
  padding: 1rem 2rem;
}
@media (min-width: 992px) {
  .cid-srQKIiO5Q8 .text-wrapper {
    padding: 3rem;
    transform: translate(-12%, 5rem);
  }
}
@media (min-width: 1200px) {
  .cid-srQKIiO5Q8 .text-wrapper {
    padding: 6rem 3.25rem;
  }
}
.cid-srQKIiO5Q8 .mbr-section-title {
  text-align: center;
  color: #8e390e;
}
.cid-srQKIiO5Q8 .mbr-text {
  text-align: center;
  color: #8e390e;
}
.cid-ssbPIpk0f8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-ssbPIpk0f8 {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ssbPIpk0f8 {
    padding-top: 1.5rem;
    padding-bottom: 0.6rem;
  }
}
.cid-ssbPIpk0f8 .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-ssbPIpk0f8 .f-row {
    flex-direction: column;
  }
}
.cid-ssbPIpk0f8 .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-ssbPIpk0f8 .f-item {
    flex: 1 1 100%;
  }
}
.cid-ssbPIpk0f8 .text-wrapper {
  padding: 0 2rem;
}
@media (max-width: 1000px) {
  .cid-ssbPIpk0f8 .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ssbPIpk0f8 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ssbPIpk0f8 .image-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 500px) {
  .cid-ssbPIpk0f8 .image-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-ssbPIpk0f8 .image-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-ssbPIpk0f8 .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ssbPIpk0f8 .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-ssbPIpk0f8 .f-row {
    flex-direction: column;
  }
}
.cid-ssbPIpk0f8 .mbr-text,
.cid-ssbPIpk0f8 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ssbPIpk0f8 .card-title {
  text-align: left;
  color: #8e390e;
}
.cid-rv3breI29k {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #3d626c;
}
.cid-rv3breI29k h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rv3breI29k p {
  color: #767676;
  text-align: left;
}
.cid-rv3breI29k .card-box {
  padding-top: 2rem;
}
.cid-rv3breI29k .card-wrapper {
  height: 100%;
}
.cid-rv3breI29k img {
  border-radius: 100%;
  height: 250px;
  width: 250px;
  object-fit: cover;
}
.cid-rv3breI29k P {
  text-align: center;
  color: #ffffff;
}
.cid-rv3breI29k .card-title {
  text-align: center;
  color: #ff9966;
}
.cid-rv3breI29k .card-img {
  position: relative;
}
.cid-rv3breI29k .card-icon {
  position: absolute;
  background: #ff9966;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-rv3breI29k .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #3d626c;
}
.cid-ssbMYY6sX0 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-ssbMYY6sX0 {
    padding-top: 2.5rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ssbMYY6sX0 {
    padding-top: 1.5rem;
    padding-bottom: 0.6rem;
  }
}
.cid-ssbMYY6sX0 .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-ssbMYY6sX0 .f-row {
    flex-direction: column;
  }
}
.cid-ssbMYY6sX0 .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-ssbMYY6sX0 .f-item {
    flex: 1 1 100%;
  }
}
.cid-ssbMYY6sX0 .text-wrapper {
  padding: 0 2rem;
}
@media (max-width: 1000px) {
  .cid-ssbMYY6sX0 .text-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ssbMYY6sX0 .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ssbMYY6sX0 .image-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 500px) {
  .cid-ssbMYY6sX0 .image-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-ssbMYY6sX0 .image-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-ssbMYY6sX0 .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ssbMYY6sX0 .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-ssbMYY6sX0 .f-row {
    flex-direction: column;
  }
}
.cid-ssbMYY6sX0 .mbr-text,
.cid-ssbMYY6sX0 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ssbMYY6sX0 .card-title {
  text-align: left;
  color: #8e390e;
}
.cid-ss05wp2gOI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/webinar-bk-1280x1180.webp");
}
.cid-ss05wp2gOI .title_block {
  margin-bottom: 50px;
}
.cid-ss05wp2gOI .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-ss05wp2gOI .mbr-section-title {
  color: #3d626c;
}
.cid-ss05wp2gOI .item:nth-child(1) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(61, 98, 108, 0.4);
  background-image: linear-gradient(40deg, #3d626c 0%, #669ba9 100%);
}
.cid-ss05wp2gOI .item:nth-child(2) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(247, 237, 74, 0.4);
  background-image: linear-gradient(40deg, #f7ed4a 0%, #fbf7ac 100%);
}
.cid-ss05wp2gOI .item:nth-child(3) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 255, 255, 0.4);
  background-image: linear-gradient(40deg, #ffffff 0%, #ffffff 100%);
}
.cid-ss05wp2gOI .item:nth-child(4) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 182, 102, 0.4);
  background-image: linear-gradient(40deg, #ffb666 0%, #ffe7cc 100%);
}
.cid-ss05wp2gOI .item:nth-child(5) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(130, 120, 110, 0.4);
  background-image: linear-gradient(40deg, #82786e 0%, #b2aba4 100%);
}
.cid-ss05wp2gOI .item:nth-child(6) .iconfont-wrapper {
  box-shadow: 0px 14px 30px 0px rgba(255, 51, 102, 0.4);
  background-image: linear-gradient(40deg, #ff3366 0%, #ff99b3 100%);
}
.cid-ss05wp2gOI .iconfont-wrapper {
  left: 50%;
  top: -35px;
  width: 70px;
  height: 70px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
}
.cid-ss05wp2gOI .iconfont-wrapper .mbr-iconfont {
  color: #ffffff;
  font-size: 34px;
  line-height: 70px;
}
.cid-ss05wp2gOI .card_wrap {
  padding: 45px;
  padding-top: 65px;
  margin-top: 60px;
  border-radius: 5px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-ss05wp2gOI .card_wrap:hover {
  transform: translateY(-16px);
}
.cid-ss05wp2gOI .card_title {
  margin-bottom: 20px;
  color: #3d626c;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ss05wp2gOI .title_block {
    margin-bottom: 30px;
  }
  .cid-ss05wp2gOI .card_wrap {
    padding: 35px;
    padding-top: 65px;
  }
}
.cid-rv3axqIW22 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f6f6f6;
}
.cid-rv3axqIW22 .google-map {
  height: 25rem;
  position: relative;
}
.cid-rv3axqIW22 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rv3axqIW22 .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-rv3axqIW22 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rv3axqIW22 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rv3axqIW22 .text-wrap {
  max-width: 300px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-rv3axqIW22 .map1 {
    padding-bottom: 2rem;
  }
}
.cid-rv3axqIW22 .mbr-text,
.cid-rv3axqIW22 .sig-img {
  color: #9c969b;
}
.cid-rv3axqIW22 .card-title {
  color: #8e390e;
}
#custom-html-3a #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  /* Hintergrundfarbe des Body-Elements */
  color: #ffffff;
  /* Farbe für alle Schriftarten */
}
#custom-html-3a .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  /* Hintergrundfarbe des Containers */
  font-family: Arial, sans-serif;
  /* Schriftart für alle Elemente innerhalb des Containers */
  color: #ffffff;
  /* Farbe für alle Schriftarten innerhalb des Containers */
}
#custom-html-3a .signature {
  font-size: 14px;
  /* Schriftgröße auf 10 Pixel setzen */
}
#custom-html-3a .signature a {
  color: #007bff;
  text-decoration: none;
}
#custom-html-3a table {
  width: 100%;
  border-collapse: collapse;
}
#custom-html-3a td {
  padding: 10px;
  vertical-align: top;
}
#custom-html-3a .logo {
  width: 100px;
  height: auto;
}
.cid-ssc4OPXySi.popup-builder {
  background-color: #ffffff;
}
.cid-ssc4OPXySi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ssc4OPXySi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ssc4OPXySi .modal-content,
.cid-ssc4OPXySi .modal-dialog {
  height: auto;
}
.cid-ssc4OPXySi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ssc4OPXySi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ssc4OPXySi .form-wrapper .mbr-form .form-group,
  .cid-ssc4OPXySi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ssc4OPXySi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ssc4OPXySi .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ssc4OPXySi .mbr-text {
  text-align: center;
  color: #fafafa;
}
.cid-ssc4OPXySi .pt-0 {
  padding-top: 0 !important;
}
.cid-ssc4OPXySi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ssc4OPXySi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ssc4OPXySi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ssc4OPXySi .modal-open {
  overflow: hidden;
}
.cid-ssc4OPXySi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ssc4OPXySi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ssc4OPXySi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ssc4OPXySi .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ssc4OPXySi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ssc4OPXySi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ssc4OPXySi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ssc4OPXySi .modal-content {
  background: #3d626c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ssc4OPXySi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ssc4OPXySi .modal-backdrop.fade {
  opacity: 0;
}
.cid-ssc4OPXySi .modal-backdrop.show {
  opacity: .5;
}
.cid-ssc4OPXySi .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-ssc4OPXySi .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ssc4OPXySi .modal-header .close:hover {
  opacity: 1;
}
.cid-ssc4OPXySi .modal-header .close:focus {
  outline: none;
}
.cid-ssc4OPXySi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffb666;
}
.cid-ssc4OPXySi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-ssc4OPXySi .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-ssc4OPXySi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ssc4OPXySi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ssc4OPXySi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ssc4OPXySi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ssc4OPXySi .modal-sm {
    max-width: 300px;
  }
  .cid-ssc4OPXySi .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-ssc4OPXySi .modal-lg,
  .cid-ssc4OPXySi .modal-xl {
    max-width: 800px;
  }
  .cid-ssc4OPXySi .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-ssc4OPXySi .modal-xl {
    max-width: 1140px;
  }
  .cid-ssc4OPXySi .container {
    max-width: 1140px;
  }
}
.cid-ssc4OPXySi .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-ssc4OPXySi .container {
    max-width: 720px;
  }
}
.cid-ssc4OPXySi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ssc4OPXySi .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ssc4OPXySi .form-group {
  margin-bottom: 1rem;
}
.cid-ssc4OPXySi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ssc4OPXySi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ssc4OPXySi .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srZTjKr2Tq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-srZTjKr2Tq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-srZTjKr2Tq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-srZTjKr2Tq button.navbar-toggler:focus {
  outline: none;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq .dropdown-toggle:after {
  display: none;
}
.cid-srZTjKr2Tq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .btn {
  display: -webkit-flex;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-srZTjKr2Tq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-srZTjKr2Tq .collapsed button.navbar-toggler {
  display: block;
}
.cid-srZTjKr2Tq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-srZTjKr2Tq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-srZTjKr2Tq .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq img {
    height: 3.8rem !important;
  }
  .cid-srZTjKr2Tq .btn {
    display: -webkit-flex;
  }
  .cid-srZTjKr2Tq button.navbar-toggler {
    display: block;
  }
  .cid-srZTjKr2Tq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-srZTjKr2Tq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing,
  .cid-srZTjKr2Tq .navbar-collapse.show {
    display: block !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-srZTjKr2Tq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-srZTjKr2Tq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-srZTjKr2Tq .nav-link,
.cid-srZTjKr2Tq .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-srZTjKr2Tq .nav-link:hover,
.cid-srZTjKr2Tq .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-srZWbzNrRM {
  background-image: url("../../../assets/images/mbr-1-1920x1280.webp");
}
.cid-srZWbzNrRM .mbr-section-title {
  color: #ffffff;
}
.cid-srZWbzNrRM .mbr-text,
.cid-srZWbzNrRM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-srZX6AZvO7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-srZX6AZvO7 [class*="col"] {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}
.cid-srZX6AZvO7 .card {
  margin-bottom: .5rem;
  overflow: hidden;
  min-height: 426px;
}
.cid-srZX6AZvO7 .card .card-img {
  height: 100%;
  border-radius: 0;
}
.cid-srZX6AZvO7 .card .card-img img {
  object-fit: cover;
  height: 100%;
}
.cid-srZX6AZvO7 .card:hover .card-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-srZX6AZvO7 .row:nth-of-type(2) .card {
  min-height: 326px;
}
.cid-srZX6AZvO7 .card-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.cid-srZX6AZvO7 .card-img {
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}
.cid-srZX6AZvO7 .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-srZX6AZvO7 .card-sub-title {
  text-align: center;
}
.cid-srZX6AZvO7 .mbr-section-sub-title {
  text-align: left;
  color: #000000;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srZTjKr2Tq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-srZTjKr2Tq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-srZTjKr2Tq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-srZTjKr2Tq button.navbar-toggler:focus {
  outline: none;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq .dropdown-toggle:after {
  display: none;
}
.cid-srZTjKr2Tq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .btn {
  display: -webkit-flex;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-srZTjKr2Tq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-srZTjKr2Tq .collapsed button.navbar-toggler {
  display: block;
}
.cid-srZTjKr2Tq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-srZTjKr2Tq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-srZTjKr2Tq .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq img {
    height: 3.8rem !important;
  }
  .cid-srZTjKr2Tq .btn {
    display: -webkit-flex;
  }
  .cid-srZTjKr2Tq button.navbar-toggler {
    display: block;
  }
  .cid-srZTjKr2Tq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-srZTjKr2Tq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing,
  .cid-srZTjKr2Tq .navbar-collapse.show {
    display: block !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-srZTjKr2Tq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-srZTjKr2Tq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-srZTjKr2Tq .nav-link,
.cid-srZTjKr2Tq .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-srZTjKr2Tq .nav-link:hover,
.cid-srZTjKr2Tq .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-ssEHOhtPhD {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-1920x1281.webp");
}
.cid-ssEHOhtPhD .cards {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .cid-ssEHOhtPhD .cards {
    flex-direction: column;
    align-items: center;
  }
}
.cid-ssEHOhtPhD .card-row {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .cid-ssEHOhtPhD .card-row .card-box {
    margin-bottom: 4rem;
  }
}
.cid-ssEHOhtPhD .card-title {
  padding: 0;
  margin: 0;
}
.cid-ssEHOhtPhD .iconcard-wrapper {
  display: flex;
  padding-right: 5rem;
}
@media (max-width: 991px) {
  .cid-ssEHOhtPhD .iconcard-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ssEHOhtPhD .iconcard-wrapper {
    padding-right: 0rem;
    width: fit-content;
  }
}
.cid-ssEHOhtPhD .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ssEHOhtPhD .card-icon {
  font-size: 1.5rem;
  color: currentColor;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .cid-ssEHOhtPhD .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ssEHOhtPhD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ssEHOhtPhD .card-title,
.cid-ssEHOhtPhD .card-icon {
  color: #ffffff;
}
.cid-ssEHOhtPhD .mbr-section-title {
  color: #ffffff;
}
.cid-ssEHOhtPhD .mbr-text,
.cid-ssEHOhtPhD .mbr-section-btn {
  color: #ffffff;
}
.cid-ssEHOhtPhD .card-text {
  color: #ffffff;
}
.cid-ssENijXylf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-ssENijXylf {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-ssENijXylf {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-ssENijXylf .mbr-section-subtitle {
  text-align: left;
}
.cid-ssENijXylf .mbr-section-title {
  text-align: left;
}
.cid-ssENijXylf .mbr-text {
  text-align: left;
}
.cid-srZIvSBFuV {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-srZIvSBFuV {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-srZIvSBFuV {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.cid-srZIvSBFuV .mbr-section-subtitle {
  text-align: left;
}
.cid-srZIvSBFuV .mbr-section-title {
  text-align: left;
}
.cid-srZIvSBFuV .mbr-text {
  text-align: left;
  color: #3d626c;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srZTjKr2Tq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-srZTjKr2Tq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-srZTjKr2Tq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-srZTjKr2Tq button.navbar-toggler:focus {
  outline: none;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq .dropdown-toggle:after {
  display: none;
}
.cid-srZTjKr2Tq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .btn {
  display: -webkit-flex;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-srZTjKr2Tq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-srZTjKr2Tq .collapsed button.navbar-toggler {
  display: block;
}
.cid-srZTjKr2Tq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-srZTjKr2Tq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-srZTjKr2Tq .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq img {
    height: 3.8rem !important;
  }
  .cid-srZTjKr2Tq .btn {
    display: -webkit-flex;
  }
  .cid-srZTjKr2Tq button.navbar-toggler {
    display: block;
  }
  .cid-srZTjKr2Tq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-srZTjKr2Tq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing,
  .cid-srZTjKr2Tq .navbar-collapse.show {
    display: block !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-srZTjKr2Tq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-srZTjKr2Tq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-srZTjKr2Tq .nav-link,
.cid-srZTjKr2Tq .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-srZTjKr2Tq .nav-link:hover,
.cid-srZTjKr2Tq .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-srQPDDGdie {
  background-image: url("../../../assets/images/mbr-1920x1181.webp");
}
.cid-srQPDDGdie .mbr-section-title {
  color: #ffffff;
}
.cid-srQPDDGdie .mbr-text,
.cid-srQPDDGdie .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-srQPIEkhxe {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-srQPIEkhxe {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-srQPIEkhxe {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-srQPIEkhxe .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-srQPIEkhxe .f-row {
    flex-direction: column;
  }
}
.cid-srQPIEkhxe .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-srQPIEkhxe .f-item {
    flex: 1 1 100%;
  }
}
.cid-srQPIEkhxe .text-wrapper,
.cid-srQPIEkhxe .number-wrapper {
  padding: 0 3.25rem;
}
@media (max-width: 1400px) {
  .cid-srQPIEkhxe .text-wrapper,
  .cid-srQPIEkhxe .number-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-srQPIEkhxe .text-wrapper,
  .cid-srQPIEkhxe .number-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-srQPIEkhxe .number-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1400px) {
  .cid-srQPIEkhxe .number-wrapper {
    justify-content: center;
  }
}
.cid-srQPIEkhxe .number-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  background-color: #65c6d4;
}
@media (max-width: 500px) {
  .cid-srQPIEkhxe .number-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-srQPIEkhxe .number-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-srQPIEkhxe .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-srQPIEkhxe .f-row {
    flex-direction: column;
  }
}
.cid-srQPIEkhxe .number-wrapper {
  justify-content: flex-start;
}
@media (max-width: 1400px) {
  .cid-srQPIEkhxe .number-wrapper {
    justify-content: center;
  }
}
.cid-srQPIEkhxe .number {
  color: #2299aa;
}
.cid-srQPK0lUE2 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dots.svg");
  background-repeat: repeat;
  background-size: 30px 30px;
}
@media (max-width: 1000px) {
  .cid-srQPK0lUE2 {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-srQPK0lUE2 {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-srQPK0lUE2 .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-srQPK0lUE2 .f-row {
    flex-direction: column;
  }
}
.cid-srQPK0lUE2 .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-srQPK0lUE2 .f-item {
    flex: 1 1 100%;
  }
}
.cid-srQPK0lUE2 .text-wrapper,
.cid-srQPK0lUE2 .number-wrapper {
  padding: 0 3.25rem;
}
@media (max-width: 1400px) {
  .cid-srQPK0lUE2 .text-wrapper,
  .cid-srQPK0lUE2 .number-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-srQPK0lUE2 .text-wrapper,
  .cid-srQPK0lUE2 .number-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-srQPK0lUE2 .number-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1400px) {
  .cid-srQPK0lUE2 .number-wrapper {
    justify-content: center;
  }
}
.cid-srQPK0lUE2 .number-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  background-color: #e38888;
}
@media (max-width: 500px) {
  .cid-srQPK0lUE2 .number-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-srQPK0lUE2 .number-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-srQPK0lUE2 .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-srQPK0lUE2 .f-row {
    flex-direction: column;
  }
}
.cid-srQPK0lUE2 .number-wrapper {
  justify-content: flex-start;
}
@media (max-width: 1400px) {
  .cid-srQPK0lUE2 .number-wrapper {
    justify-content: center;
  }
}
.cid-srQPK0lUE2 .number {
  color: #e43f3f;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srZTjKr2Tq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srZTjKr2Tq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-srZTjKr2Tq .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-srZTjKr2Tq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-srZTjKr2Tq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-srZTjKr2Tq button.navbar-toggler:focus {
  outline: none;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srZTjKr2Tq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srZTjKr2Tq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srZTjKr2Tq .dropdown-toggle:after {
  display: none;
}
.cid-srZTjKr2Tq .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .btn {
  display: -webkit-flex;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-srZTjKr2Tq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-srZTjKr2Tq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-srZTjKr2Tq .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-srZTjKr2Tq .collapsed button.navbar-toggler {
  display: block;
}
.cid-srZTjKr2Tq .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-srZTjKr2Tq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-srZTjKr2Tq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-srZTjKr2Tq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-srZTjKr2Tq .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq img {
    height: 3.8rem !important;
  }
  .cid-srZTjKr2Tq .btn {
    display: -webkit-flex;
  }
  .cid-srZTjKr2Tq button.navbar-toggler {
    display: block;
  }
  .cid-srZTjKr2Tq .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-srZTjKr2Tq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-srZTjKr2Tq .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing,
  .cid-srZTjKr2Tq .navbar-collapse.show {
    display: block !important;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-srZTjKr2Tq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-srZTjKr2Tq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-srZTjKr2Tq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-srZTjKr2Tq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-srZTjKr2Tq .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-srZTjKr2Tq .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-srZTjKr2Tq .nav-link,
.cid-srZTjKr2Tq .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-srZTjKr2Tq .nav-link:hover,
.cid-srZTjKr2Tq .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-srZVqmnRub {
  background-image: url("../../../assets/images/mbr-1-1920x1181.webp");
}
.cid-srZVqmnRub .mbr-section-title {
  color: #ffffff;
}
.cid-srZVqmnRub .mbr-text,
.cid-srZVqmnRub .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ssEZ84kiGr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-7-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-ssEZ84kiGr {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ssEZ84kiGr {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ssEZ84kiGr .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-ssEZ84kiGr .f-row {
    flex-direction: column;
  }
}
.cid-ssEZ84kiGr .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-ssEZ84kiGr .f-item {
    flex: 1 1 100%;
  }
}
.cid-ssEZ84kiGr .text-wrapper,
.cid-ssEZ84kiGr .number-wrapper {
  padding: 0 3.25rem;
}
@media (max-width: 1400px) {
  .cid-ssEZ84kiGr .text-wrapper,
  .cid-ssEZ84kiGr .number-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-ssEZ84kiGr .text-wrapper,
  .cid-ssEZ84kiGr .number-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ssEZ84kiGr .number-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1400px) {
  .cid-ssEZ84kiGr .number-wrapper {
    justify-content: center;
  }
}
.cid-ssEZ84kiGr .number-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  background-color: #65c6d4;
}
@media (max-width: 500px) {
  .cid-ssEZ84kiGr .number-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-ssEZ84kiGr .number-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-ssEZ84kiGr .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-ssEZ84kiGr .f-row {
    flex-direction: column;
  }
}
.cid-ssEZ84kiGr .number-wrapper {
  justify-content: flex-start;
}
@media (max-width: 1400px) {
  .cid-ssEZ84kiGr .number-wrapper {
    justify-content: center;
  }
}
.cid-ssEZ84kiGr .number {
  color: #2299aa;
}
.cid-ssEZ84kiGr .card-title {
  color: #8e390e;
}
.cid-ssEZvZM7vt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-7-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-ssEZvZM7vt {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ssEZvZM7vt {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ssEZvZM7vt .f-row {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .cid-ssEZvZM7vt .f-row {
    flex-direction: column;
  }
}
.cid-ssEZvZM7vt .f-item {
  flex: 1 1 50%;
}
@media (max-width: 1000px) {
  .cid-ssEZvZM7vt .f-item {
    flex: 1 1 100%;
  }
}
.cid-ssEZvZM7vt .text-wrapper,
.cid-ssEZvZM7vt .number-wrapper {
  padding: 0 3.25rem;
}
@media (max-width: 1400px) {
  .cid-ssEZvZM7vt .text-wrapper,
  .cid-ssEZvZM7vt .number-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-ssEZvZM7vt .text-wrapper,
  .cid-ssEZvZM7vt .number-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ssEZvZM7vt .number-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 1400px) {
  .cid-ssEZvZM7vt .number-wrapper {
    justify-content: center;
  }
}
.cid-ssEZvZM7vt .number-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 298px;
  height: 298px;
  border-radius: 50%;
  background-color: #e38888;
}
@media (max-width: 500px) {
  .cid-ssEZvZM7vt .number-circle {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 400px) {
  .cid-ssEZvZM7vt .number-circle {
    width: 220px;
    height: 220px;
  }
}
.cid-ssEZvZM7vt .f-row {
  flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .cid-ssEZvZM7vt .f-row {
    flex-direction: column;
  }
}
.cid-ssEZvZM7vt .number-wrapper {
  justify-content: flex-start;
}
@media (max-width: 1400px) {
  .cid-ssEZvZM7vt .number-wrapper {
    justify-content: center;
  }
}
.cid-ssEZvZM7vt .number {
  color: #e43f3f;
}
.cid-ssEZvZM7vt .card-title {
  color: #8e390e;
}
.cid-ssERlx1XeI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.webp");
}
@media (max-width: 1000px) {
  .cid-ssERlx1XeI {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .cid-ssERlx1XeI {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }
}
.cid-ssERlx1XeI .f-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cid-ssERlx1XeI .f-item {
  flex: 0 0 50%;
}
.cid-ssERlx1XeI .f-60 {
  flex: 0 0 60%;
}
.cid-ssERlx1XeI .f-40 {
  flex: 0 0 40%;
}
.cid-ssERlx1XeI .mbr-text,
.cid-ssERlx1XeI .mbr-section-btn {
  color: #232323;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-ssERlx1XeI .mbr-text,
  .cid-ssERlx1XeI .mbr-section-title {
    text-align: center;
  }
}
.cid-ssERlx1XeI .title {
  margin-bottom: 3rem;
}
.cid-ssERlx1XeI a.btn {
  height: 100%;
  margin: 0;
}
.cid-ssERlx1XeI .mbr-section-btn {
  display: flex;
  margin-bottom: 1.2rem;
  width: 100%;
}
.cid-ssERlx1XeI .mbr-section-btn .btn {
  width: 100%;
}
.cid-ssERlx1XeI .info {
  padding: 3.25rem;
}
@media (max-width: 991px) {
  .cid-ssERlx1XeI .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-ssERlx1XeI .content-wrapper {
    flex-direction: column;
  }
  .cid-ssERlx1XeI .info {
    padding: 1rem 0;
  }
}
.cid-ssERlx1XeI .justify-content-center {
  align-items: center;
}
.cid-ssERlx1XeI .f-item.features-image {
  background: #98dee8;
  padding: 0;
}
.cid-ssERlx1XeI P {
  text-align: center;
}
.cid-ssERlx1XeI H3 {
  text-align: left;
}
.cid-ssERlx1XeI .mbr-title {
  text-align: left;
  color: #8e390e;
}
.cid-ssERlx1XeI .mbr-text {
  text-align: left;
}
.cid-ssERlx1XeI .mbr-text2 {
  text-align: left;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tIF9YO6Ry4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIF9YO6Ry4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tIF9YO6Ry4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tIF9YO6Ry4 button.navbar-toggler:focus {
  outline: none;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 .dropdown-toggle:after {
  display: none;
}
.cid-tIF9YO6Ry4 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIF9YO6Ry4 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tIF9YO6Ry4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tIF9YO6Ry4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tIF9YO6Ry4 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIF9YO6Ry4 img {
    height: 3.8rem !important;
  }
  .cid-tIF9YO6Ry4 .btn {
    display: -webkit-flex;
  }
  .cid-tIF9YO6Ry4 button.navbar-toggler {
    display: block;
  }
  .cid-tIF9YO6Ry4 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tIF9YO6Ry4 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing,
  .cid-tIF9YO6Ry4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tIF9YO6Ry4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tIF9YO6Ry4 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tIF9YO6Ry4 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tIF9YO6Ry4 .nav-link,
.cid-tIF9YO6Ry4 .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tIF9YO6Ry4 .nav-link:hover,
.cid-tIF9YO6Ry4 .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tIF9YNvBuX {
  background-image: url("../../../assets/images/cache-92868531-1461x974.webp");
}
.cid-tIF9YNvBuX .card-box {
  flex-direction: row-reverse;
}
.cid-tIF9YNvBuX .card-title {
  margin-left: 1rem;
}
.cid-tIF9YNvBuX .card-wrapper {
  margin: 0 auto;
  background: #e0e0e0;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .cid-tIF9YNvBuX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tIF9YNvBuX .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tIF9YNvBuX .card-wrapper {
    padding: 2rem 6rem;
  }
}
.cid-tIF9YNvBuX .card-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.cid-tIF9YNvBuX .card-title {
  margin-right: 1rem;
  opacity: 1;
}
.cid-tIF9YNvBuX .btn {
  padding: 0.5rem 0.7rem;
}
.cid-tIF9YNvBuX .btn:after {
  content: url("data:image/svg+xml; utf8, <svg class='icon' xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path fill='black' fill-rule='nonzero' d='M.146 3.611a.606.606 0 0 1 .437-.177h11.412L9.515.994C9.225.736 9.219.47 9.498.2c.28-.271.553-.265.82.018l3.5 3.394a.343.343 0 0 1 .147.177.65.65 0 0 1 0 .424.343.343 0 0 1-.146.177l-3.5 3.394c-.268.283-.541.29-.82.018-.28-.271-.274-.536.018-.796l2.479-2.44H.583a.577.577 0 0 1-.419-.158A.542.542 0 0 1 0 4c0-.165.049-.295.146-.389z'></path></svg>");
}
.cid-tIF9YNvBuX .mbr-text,
.cid-tIF9YNvBuX .mbr-section-btn {
  color: #ffffff;
}
.cid-tIF9YNvBuX .card-title,
.cid-tIF9YNvBuX .card-box {
  text-align: center;
  color: #000000;
}
.cid-tIFau7wkdk {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1920x1343.webp");
}
.cid-tIFau7wkdk .mbr-overlay {
  background-color: #3d626c;
  opacity: 0.2;
}
.cid-tIFau7wkdk input,
.cid-tIFau7wkdk textarea {
  opacity: 0.7;
  border-radius: 10px;
}
.cid-tIFau7wkdk input:hover,
.cid-tIFau7wkdk textarea:hover {
  border-color: transparent!important;
}
.cid-tIFau7wkdk .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
  width: -webkit-fill-available;
}
.cid-tIFau7wkdk h4 {
  margin-bottom: 3rem;
}
.cid-tIFau7wkdk .col-auto {
  width: 100%;
}
.cid-tIFau7wkdk textarea {
  min-height: 250px;
}
.cid-tIFau7wkdk .mbr-form {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 7rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tIFau7wkdk .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-tIFau7wkdk .mbr-form:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-tIFau7wkdk .form-control,
.cid-tIFau7wkdk .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tIFau7wkdk .form-control::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input::-webkit-input-placeholder,
.cid-tIFau7wkdk .form-control::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-tIFau7wkdk .form-control:-moz-placeholder,
.cid-tIFau7wkdk .field-input:-moz-placeholder,
.cid-tIFau7wkdk .form-control:-moz-placeholder,
.cid-tIFau7wkdk .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-tIFau7wkdk .form-control:hover,
.cid-tIFau7wkdk .field-input:hover,
.cid-tIFau7wkdk .form-control:focus,
.cid-tIFau7wkdk .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-tIFau7wkdk .form-control:hover::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input:hover::-webkit-input-placeholder,
.cid-tIFau7wkdk .form-control:focus::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input:focus::-webkit-input-placeholder,
.cid-tIFau7wkdk .form-control:hover::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input:hover::-webkit-input-placeholder,
.cid-tIFau7wkdk .form-control:focus::-webkit-input-placeholder,
.cid-tIFau7wkdk .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-tIFau7wkdk .form-control:hover:-moz-placeholder,
.cid-tIFau7wkdk .field-input:hover:-moz-placeholder,
.cid-tIFau7wkdk .form-control:focus:-moz-placeholder,
.cid-tIFau7wkdk .field-input:focus:-moz-placeholder,
.cid-tIFau7wkdk .form-control:hover:-moz-placeholder,
.cid-tIFau7wkdk .field-input:hover:-moz-placeholder,
.cid-tIFau7wkdk .form-control:focus:-moz-placeholder,
.cid-tIFau7wkdk .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-tIFau7wkdk .jq-number__spin:hover,
.cid-tIFau7wkdk .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tIFau7wkdk .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tIFau7wkdk .jq-selectbox li,
.cid-tIFau7wkdk .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tIFau7wkdk .jq-selectbox li:hover,
.cid-tIFau7wkdk .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-tIFau7wkdk .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tIFau7wkdk .jq-number__spin.minus:hover:after,
.cid-tIFau7wkdk .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-tIFau7wkdk .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tIFau7wkdk .jq-number__spin.minus:after,
.cid-tIFau7wkdk .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-tIFau7wkdk input::-webkit-clear-button {
  display: none;
}
.cid-tIFau7wkdk input::-webkit-inner-spin-button {
  display: none;
}
.cid-tIFau7wkdk input::-webkit-outer-spin-button {
  display: none;
}
.cid-tIFau7wkdk input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tIFau7wkdk H4 {
  color: #263d5a;
}
.cid-tIFau7wkdk .section-content-title {
  color: #ffffff;
}
.cid-tIFau7wkdk .section-content-subtitle {
  color: #ffffff;
}
.cid-tIFau7wkdk .section-content-text {
  color: #ffffff;
}
#custom-html-30 {
  /* Type valid CSS here */
}
#custom-html-30 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-30 p {
  font-size: 60px;
  color: #777;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIF9YO6Ry4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tIF9YO6Ry4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIF9YO6Ry4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tIF9YO6Ry4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tIF9YO6Ry4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tIF9YO6Ry4 button.navbar-toggler:focus {
  outline: none;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIF9YO6Ry4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIF9YO6Ry4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIF9YO6Ry4 .dropdown-toggle:after {
  display: none;
}
.cid-tIF9YO6Ry4 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIF9YO6Ry4 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tIF9YO6Ry4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tIF9YO6Ry4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tIF9YO6Ry4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tIF9YO6Ry4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tIF9YO6Ry4 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tIF9YO6Ry4 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIF9YO6Ry4 img {
    height: 3.8rem !important;
  }
  .cid-tIF9YO6Ry4 .btn {
    display: -webkit-flex;
  }
  .cid-tIF9YO6Ry4 button.navbar-toggler {
    display: block;
  }
  .cid-tIF9YO6Ry4 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tIF9YO6Ry4 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing,
  .cid-tIF9YO6Ry4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tIF9YO6Ry4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tIF9YO6Ry4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tIF9YO6Ry4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tIF9YO6Ry4 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tIF9YO6Ry4 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tIF9YO6Ry4 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tIF9YO6Ry4 .nav-link,
.cid-tIF9YO6Ry4 .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tIF9YO6Ry4 .nav-link:hover,
.cid-tIF9YO6Ry4 .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tIFewK3f5H {
  background-image: url("../../../assets/images/mbr-1920x1549.webp");
}
.cid-tIFewK3f5H .mbr-section-title {
  color: #ffffff;
}
.cid-tIFewK3f5H .mbr-text,
.cid-tIFewK3f5H .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
.cid-tIFeIOt8Z5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tIFeIOt8Z5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #3d626c !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tIFeIOt8Z5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIFeIOt8Z5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tIFeIOt8Z5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIFeIOt8Z5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tIFeIOt8Z5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tIFeIOt8Z5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tIFeIOt8Z5 button.navbar-toggler:focus {
  outline: none;
}
.cid-tIFeIOt8Z5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIFeIOt8Z5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIFeIOt8Z5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIFeIOt8Z5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIFeIOt8Z5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIFeIOt8Z5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIFeIOt8Z5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIFeIOt8Z5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIFeIOt8Z5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIFeIOt8Z5 .dropdown-toggle:after {
  display: none;
}
.cid-tIFeIOt8Z5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIFeIOt8Z5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tIFeIOt8Z5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tIFeIOt8Z5 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tIFeIOt8Z5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tIFeIOt8Z5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIFeIOt8Z5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tIFeIOt8Z5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tIFeIOt8Z5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tIFeIOt8Z5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tIFeIOt8Z5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIFeIOt8Z5 img {
    height: 3.8rem !important;
  }
  .cid-tIFeIOt8Z5 .btn {
    display: -webkit-flex;
  }
  .cid-tIFeIOt8Z5 button.navbar-toggler {
    display: block;
  }
  .cid-tIFeIOt8Z5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tIFeIOt8Z5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing,
  .cid-tIFeIOt8Z5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing .navbar-nav,
  .cid-tIFeIOt8Z5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tIFeIOt8Z5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tIFeIOt8Z5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tIFeIOt8Z5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tIFeIOt8Z5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tIFeIOt8Z5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIFeIOt8Z5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tIFeIOt8Z5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tIFeIOt8Z5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tIFeIOt8Z5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tIFeIOt8Z5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tIFeIOt8Z5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tIFeIOt8Z5 .nav-link,
.cid-tIFeIOt8Z5 .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tIFeIOt8Z5 .nav-link:hover,
.cid-tIFeIOt8Z5 .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tIFeIPSu25 {
  background-image: url("../../../assets/images/mbr-1920x1549.webp");
}
.cid-tIFeIPSu25 .mbr-section-title {
  color: #ffffff;
}
.cid-tIFeIPSu25 .mbr-text,
.cid-tIFeIPSu25 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-u58yfTyydF P {
  color: #1281fc;
}
.cid-u58yfTyydF DIV {
  color: #ffffff;
}
.cid-u58yfTyydF H10 {
  color: #034e75;
}
.cid-u58yfTyydF .hidden {
  display: none;
}
.cid-u58yfTyydF .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 11px;
}
.cid-u58yfTyydF .icon-bar a {
  display: block;
  text-align: center;
  padding: 3px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 11px;
}
.cid-u58yfTyydF .icon-bar a:hover {
  background-color: #000000;
}
.cid-u58yfTyydF .flag {
  background: transparent;
}
.cid-u58yfTyydF .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-u58yfTyydF .nav-right {
  float: left !important;
  position: relative;
}
.cid-u58yfTyydF #google_translate_element {
  display: none;
}
.cid-u58yfTyydF .goog-te-banner {
  display: none;
}
.cid-u58yfTyydF .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-u58yfTyydF .goog-te-spinner-pos {
  display: none !important;
}
.cid-u58yfTyydF body {
  top: 0px !important;
}
.cid-u58yfTyydF body body {
  top: 0 !important;
}
.cid-u58yfTyydF body .goog-te-banner-frame {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip {
  display: none !important;
}
.cid-u58yfTyydF .goog-tooltip:hover {
  display: none !important;
}
.cid-u58yfTyydF .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-u58yfTyydF #goog-gt-tt,
.cid-u58yfTyydF .goog-te-balloon-frame {
  display: none !important;
}
.cid-u58yfTyydF #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-u58yfTyydF .goog-logo-link {
  display: none !important;
}
.cid-u58yfTyydF .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-u58yfTyydF div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-u58yfTyydF div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-u58yfTyydF #cookiesdirective,
.cid-u58yfTyydF #cookie-dialog,
.cid-u58yfTyydF #accept {
  display: block !important;
}
.cid-u5d8S6kOnG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u5d8S6kOnG .wrapper {
  background-color: #ebeae2;
}
.cid-u5d8S6kOnG li {
  list-style-type: none;
}
.cid-u5d8S6kOnG .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-1 li {
  margin-bottom: 1rem;
}
.cid-u5d8S6kOnG .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u5d8S6kOnG .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u5d8S6kOnG ul {
  margin: 0;
}
.cid-u5d8S6kOnG .logo {
  width: 100px;
  height: auto;
  object-fit: cover;
}
.cid-u5d8S6kOnG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u5d8S6kOnG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u5d8S6kOnG #alle {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #3d626c;
  color: #ffffff;
}
.cid-u5d8S6kOnG .container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #3d626c;
  font-family: Arial, sans-serif;
  color: #ffffff;
}
.cid-u5d8S6kOnG .signature {
  font-size: 14px;
}
.cid-u5d8S6kOnG .signature a {
  color: #007bff;
  text-decoration: none;
}
.cid-u5d8S6kOnG table {
  width: 100%;
  border-collapse: collapse;
}
.cid-u5d8S6kOnG td {
  padding: 10px;
  vertical-align: top;
}
