.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Abel', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Abel', sans-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.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #4479d9 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !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: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #4479d9;
  color: #4479d9;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: #2150a5 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #4479d9 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #1f4a98 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #4479d9;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4479d9;
  border-color: #4479d9;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4479d9;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Abel', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #4479d9 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Abel', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #4479d9;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4479d9;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4479d9;
}
.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: #4479d9;
  border-bottom-color: #4479d9;
}
.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: #4479d9 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%234479d9' %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-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tq6GLwNHfg {
  background-image: url("../../../assets/images/capanova-1.webp");
}
.cid-tq6GLwNHfg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq6GLwNHfg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq6GLwNHfg .mbr-section-subtitle {
  text-align: center;
}
.cid-tq6GLwNHfg .mbr-text,
.cid-tq6GLwNHfg .mbr-section-btn {
  text-align: center;
}
.cid-tq6GO2GCoh .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tq6GO2GCoh .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tq6GO2GCoh .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tq6GO2GCoh .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tq6GO2GCoh .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tq6GO2GCoh .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tq6GO2GCoh .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tq6GO2GCoh .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tq6GO2GCoh P {
  color: #232323;
}
.cid-tq6GO2GCoh DIV {
  color: #ffffff;
}
.cid-tq6GO2GCoh H10 {
  color: #767676;
}
.cid-tq6GO2GCoh .hidden {
  display: none;
}
.cid-tq6GO2GCoh div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqaOIUNGqT {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-tqaOIUNGqT .mbr-text {
  text-align: justify;
}
.cid-tqbC0eFTYl .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbC0eFTYl .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbC0eFTYl .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbC0eFTYl .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbC0eFTYl .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbC0eFTYl .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbC0eFTYl .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbC0eFTYl .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbC0eFTYl P {
  color: #232323;
}
.cid-tqbC0eFTYl DIV {
  color: #ffffff;
}
.cid-tqbC0eFTYl H10 {
  color: #767676;
}
.cid-tqbC0eFTYl .hidden {
  display: none;
}
.cid-tqbC0eFTYl div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqaRTfJiOC {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffb5f5;
}
.cid-tqaRTfJiOC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqaRTfJiOC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqaRTfJiOC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqaRTfJiOC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqaRTfJiOC .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqaRTfJiOC .mbr-text {
  text-align: justify;
}
.cid-tqaRVgz4yH {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffb5f5;
}
.cid-tqaRVgz4yH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqaRVgz4yH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tqaRVgz4yH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tqaRVgz4yH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tqaRVgz4yH .text-wrapper {
    padding: 2rem;
  }
}
.cid-tqaRVgz4yH .mbr-text {
  text-align: justify;
}
.cid-tqbC3tCikz .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbC3tCikz .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbC3tCikz .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbC3tCikz .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbC3tCikz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbC3tCikz .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbC3tCikz .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbC3tCikz .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbC3tCikz P {
  color: #232323;
}
.cid-tqbC3tCikz DIV {
  color: #ffffff;
}
.cid-tqbC3tCikz H10 {
  color: #767676;
}
.cid-tqbC3tCikz .hidden {
  display: none;
}
.cid-tqbC3tCikz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqaUjc4kB6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #98dee8;
}
.cid-tqaUjc4kB6 .mbr-text {
  text-align: justify;
}
.cid-tqbC6GLadE .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbC6GLadE .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbC6GLadE .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbC6GLadE .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbC6GLadE .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbC6GLadE .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbC6GLadE .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbC6GLadE .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbC6GLadE P {
  color: #232323;
}
.cid-tqbC6GLadE DIV {
  color: #ffffff;
}
.cid-tqbC6GLadE H10 {
  color: #767676;
}
.cid-tqbC6GLadE .hidden {
  display: none;
}
.cid-tqbC6GLadE div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqaXoIIz0g {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #65c6d4;
  text-align: justify;
}
.cid-tqbCb0wB24 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCb0wB24 .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCb0wB24 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCb0wB24 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCb0wB24 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCb0wB24 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCb0wB24 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCb0wB24 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCb0wB24 P {
  color: #232323;
}
.cid-tqbCb0wB24 DIV {
  color: #ffffff;
}
.cid-tqbCb0wB24 H10 {
  color: #767676;
}
.cid-tqbCb0wB24 .hidden {
  display: none;
}
.cid-tqbCb0wB24 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqb43NDvxg {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCfw7mAz .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCfw7mAz .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCfw7mAz .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCfw7mAz .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCfw7mAz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCfw7mAz .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCfw7mAz .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCfw7mAz .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCfw7mAz P {
  color: #232323;
}
.cid-tqbCfw7mAz DIV {
  color: #ffffff;
}
.cid-tqbCfw7mAz H10 {
  color: #767676;
}
.cid-tqbCfw7mAz .hidden {
  display: none;
}
.cid-tqbCfw7mAz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqb7dbaQqS {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqb7dbaQqS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqb7dbaQqS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqb7dbaQqS .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tqb7dbaQqS .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tqb7dbaQqS .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqb7dbaQqS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tqb7dbaQqS .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tqb7dbaQqS .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tqb7dbaQqS .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tqb7dbaQqS .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tqb7dbaQqS .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqb7dbaQqS .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tqbCjkKHIN .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCjkKHIN .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCjkKHIN .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCjkKHIN .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCjkKHIN .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCjkKHIN .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCjkKHIN .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCjkKHIN .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCjkKHIN P {
  color: #232323;
}
.cid-tqbCjkKHIN DIV {
  color: #ffffff;
}
.cid-tqbCjkKHIN H10 {
  color: #767676;
}
.cid-tqbCjkKHIN .hidden {
  display: none;
}
.cid-tqbCjkKHIN div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbcyhR7jU {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqbcyhR7jU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbcyhR7jU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbcyhR7jU .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tqbcyhR7jU .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tqbcyhR7jU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqbcyhR7jU .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tqbcyhR7jU .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tqbcyhR7jU .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tqbcyhR7jU .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tqbcyhR7jU .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tqbcyhR7jU .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqbcyhR7jU .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tqbcyL7eQ3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqbcyL7eQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbcyL7eQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbcyL7eQ3 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tqbcyL7eQ3 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tqbcyL7eQ3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tqbcyL7eQ3 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tqbcyL7eQ3 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tqbcyL7eQ3 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tqbcyL7eQ3 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tqbcyL7eQ3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tqbcyL7eQ3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tqbcyL7eQ3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-ttYp1uVDuR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ttYp1uVDuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttYp1uVDuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttYp1uVDuR .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-ttYp1uVDuR .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-ttYp1uVDuR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ttYp1uVDuR .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-ttYp1uVDuR .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-ttYp1uVDuR .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-ttYp1uVDuR .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-ttYp1uVDuR .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-ttYp1uVDuR .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttYp1uVDuR .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tqbCmle0V0 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCmle0V0 .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCmle0V0 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCmle0V0 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCmle0V0 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCmle0V0 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCmle0V0 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCmle0V0 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCmle0V0 P {
  color: #232323;
}
.cid-tqbCmle0V0 DIV {
  color: #ffffff;
}
.cid-tqbCmle0V0 H10 {
  color: #767676;
}
.cid-tqbCmle0V0 .hidden {
  display: none;
}
.cid-tqbCmle0V0 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbd3GgYi6 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCpZOY42 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCpZOY42 .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCpZOY42 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCpZOY42 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCpZOY42 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCpZOY42 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCpZOY42 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCpZOY42 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCpZOY42 P {
  color: #232323;
}
.cid-tqbCpZOY42 DIV {
  color: #ffffff;
}
.cid-tqbCpZOY42 H10 {
  color: #767676;
}
.cid-tqbCpZOY42 .hidden {
  display: none;
}
.cid-tqbCpZOY42 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbdjbymcv {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCsXbkvt .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCsXbkvt .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCsXbkvt .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCsXbkvt .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCsXbkvt .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCsXbkvt .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCsXbkvt .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCsXbkvt .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCsXbkvt P {
  color: #232323;
}
.cid-tqbCsXbkvt DIV {
  color: #ffffff;
}
.cid-tqbCsXbkvt H10 {
  color: #767676;
}
.cid-tqbCsXbkvt .hidden {
  display: none;
}
.cid-tqbCsXbkvt div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu9LeOgPSg {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tu9LeOgPSg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu9LeOgPSg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbCxSZS7I .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCxSZS7I .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCxSZS7I .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCxSZS7I .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCxSZS7I .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCxSZS7I .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCxSZS7I .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCxSZS7I .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCxSZS7I P {
  color: #232323;
}
.cid-tqbCxSZS7I DIV {
  color: #ffffff;
}
.cid-tqbCxSZS7I H10 {
  color: #767676;
}
.cid-tqbCxSZS7I .hidden {
  display: none;
}
.cid-tqbCxSZS7I div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbdNGpXP1 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffb5f5;
}
@media (min-width: 992px) {
  .cid-tqbdNGpXP1 .carousel {
    min-height: 600px;
  }
  .cid-tqbdNGpXP1 .carousel img {
    max-height: 600px;
    object-fit: contain;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqbdNGpXP1 .carousel {
    min-height: 390px;
  }
  .cid-tqbdNGpXP1 .carousel img {
    max-height: 390px;
    object-fit: contain;
  }
}
@media (max-width: 767px) {
  .cid-tqbdNGpXP1 .carousel {
    min-height: 330px;
  }
  .cid-tqbdNGpXP1 .carousel img {
    max-height: 330px;
    object-fit: contain;
  }
  .cid-tqbdNGpXP1 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tqbdNGpXP1 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tqbdNGpXP1 .carousel,
.cid-tqbdNGpXP1 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tqbdNGpXP1 .item-wrapper {
  width: 100%;
}
.cid-tqbdNGpXP1 .carousel-caption {
  bottom: 40px;
}
.cid-tqbdNGpXP1 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tqbdNGpXP1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tqbdNGpXP1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tqbdNGpXP1 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tqbdNGpXP1 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tqbdNGpXP1 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqbdNGpXP1 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqbdNGpXP1 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tqbdNGpXP1 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tqbdNGpXP1 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tqbdNGpXP1 .carousel-indicators li.active,
.cid-tqbdNGpXP1 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tqbdNGpXP1 .carousel-indicators li::after,
.cid-tqbdNGpXP1 .carousel-indicators li::before {
  content: none;
}
.cid-tqbdNGpXP1 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tqbdNGpXP1 .carousel-indicators {
    display: none !important;
  }
}
.cid-tqbCBvQMPx .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCBvQMPx .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCBvQMPx .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCBvQMPx .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCBvQMPx .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCBvQMPx .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCBvQMPx .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCBvQMPx .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCBvQMPx P {
  color: #232323;
}
.cid-tqbCBvQMPx DIV {
  color: #ffffff;
}
.cid-tqbCBvQMPx H10 {
  color: #767676;
}
.cid-tqbCBvQMPx .hidden {
  display: none;
}
.cid-tqbCBvQMPx div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbfJVso1E {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tqbfJVso1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbfJVso1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbfJVso1E .video-wrapper iframe {
  width: 100%;
}
.cid-tqbfJVso1E .mbr-section-title,
.cid-tqbfJVso1E .mbr-section-subtitle,
.cid-tqbfJVso1E .mbr-text {
  text-align: center;
}
.cid-tqbCFmk7xr .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCFmk7xr .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCFmk7xr .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCFmk7xr .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCFmk7xr .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCFmk7xr .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCFmk7xr .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCFmk7xr .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCFmk7xr P {
  color: #232323;
}
.cid-tqbCFmk7xr DIV {
  color: #ffffff;
}
.cid-tqbCFmk7xr H10 {
  color: #767676;
}
.cid-tqbCFmk7xr .hidden {
  display: none;
}
.cid-tqbCFmk7xr div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbhMvQU5v {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tqbhMvQU5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqbhMvQU5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqbhMvQU5v .google-map {
  height: 30rem;
  position: relative;
}
.cid-tqbhMvQU5v .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tqbhMvQU5v .google-map [data-state-details] {
  color: #6b6763;
  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-tqbhMvQU5v .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqbhMvQU5v .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqbCLbOZC9 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCLbOZC9 .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCLbOZC9 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCLbOZC9 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCLbOZC9 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCLbOZC9 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCLbOZC9 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCLbOZC9 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCLbOZC9 P {
  color: #232323;
}
.cid-tqbCLbOZC9 DIV {
  color: #ffffff;
}
.cid-tqbCLbOZC9 H10 {
  color: #767676;
}
.cid-tqbCLbOZC9 .hidden {
  display: none;
}
.cid-tqbCLbOZC9 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbie1P8H7 {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCP64sdK .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCP64sdK .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCP64sdK .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCP64sdK .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCP64sdK .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCP64sdK .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCP64sdK .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCP64sdK .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCP64sdK P {
  color: #232323;
}
.cid-tqbCP64sdK DIV {
  color: #ffffff;
}
.cid-tqbCP64sdK H10 {
  color: #767676;
}
.cid-tqbCP64sdK .hidden {
  display: none;
}
.cid-tqbCP64sdK div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbs9tBs8q {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCScSqwq .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCScSqwq .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCScSqwq .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCScSqwq .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCScSqwq .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCScSqwq .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCScSqwq .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCScSqwq .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCScSqwq P {
  color: #232323;
}
.cid-tqbCScSqwq DIV {
  color: #ffffff;
}
.cid-tqbCScSqwq H10 {
  color: #767676;
}
.cid-tqbCScSqwq .hidden {
  display: none;
}
.cid-tqbCScSqwq div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqby9PlG6Q {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCYGxyoC .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCYGxyoC .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCYGxyoC .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCYGxyoC .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCYGxyoC .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCYGxyoC .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCYGxyoC .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCYGxyoC .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCYGxyoC P {
  color: #232323;
}
.cid-tqbCYGxyoC DIV {
  color: #ffffff;
}
.cid-tqbCYGxyoC H10 {
  color: #767676;
}
.cid-tqbCYGxyoC .hidden {
  display: none;
}
.cid-tqbCYGxyoC div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbAzsHtob {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #fff0b0;
}
.cid-tqbAzsHtob .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.2;
}
.cid-tqbAzsHtob input,
.cid-tqbAzsHtob textarea {
  opacity: 0.7;
  border-radius: 10px;
}
.cid-tqbAzsHtob input:hover,
.cid-tqbAzsHtob textarea:hover {
  border-color: transparent!important;
}
.cid-tqbAzsHtob .btn {
  border-radius: 2rem;
  padding: 1rem 3rem;
  width: -webkit-fill-available;
}
.cid-tqbAzsHtob h4 {
  margin-bottom: 3rem;
}
.cid-tqbAzsHtob .col-auto {
  width: 100%;
}
.cid-tqbAzsHtob textarea {
  min-height: 250px;
}
.cid-tqbAzsHtob .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-tqbAzsHtob .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-tqbAzsHtob .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-tqbAzsHtob H4 {
  color: #263d5a;
}
.cid-tqbAzsHtob .section-content-subtitle {
  text-align: center;
  color: #000000;
}
.cid-tqbAzsHtob .section-content-title {
  color: #000000;
  text-align: center;
}
.cid-tqbAzsHtob H5 {
  text-align: center;
}
.cid-tqbAzsHtob .section-content-text {
  color: #000000;
  text-align: left;
}
.cid-tqbD4vBNqW .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbD4vBNqW .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbD4vBNqW .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbD4vBNqW .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbD4vBNqW .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbD4vBNqW .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbD4vBNqW .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbD4vBNqW .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbD4vBNqW P {
  color: #232323;
}
.cid-tqbD4vBNqW DIV {
  color: #ffffff;
}
.cid-tqbD4vBNqW H10 {
  color: #767676;
}
.cid-tqbD4vBNqW .hidden {
  display: none;
}
.cid-tqbD4vBNqW div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbEQsJPdA {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbFzNp1VA {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqbsq4swdu {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tqbCVB8nGC .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tqbCVB8nGC .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tqbCVB8nGC .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tqbCVB8nGC .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tqbCVB8nGC .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tqbCVB8nGC .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tqbCVB8nGC .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tqbCVB8nGC .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tqbCVB8nGC P {
  color: #232323;
}
.cid-tqbCVB8nGC DIV {
  color: #ffffff;
}
.cid-tqbCVB8nGC H10 {
  color: #767676;
}
.cid-tqbCVB8nGC .hidden {
  display: none;
}
.cid-tqbCVB8nGC div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tu8F07tfqO {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tu8F08MUY9 .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tu8F08MUY9 .icon-bar a:hover {
  background-color: #169208;
  width: 100px;
}
.cid-tu8F08MUY9 .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 4px;
  border-radius: 14px;
}
.cid-tu8F08MUY9 .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-tu8F08MUY9 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-tu8F08MUY9 .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-tu8F08MUY9 .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-tu8F08MUY9 .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-tu8F08MUY9 P {
  color: #232323;
}
.cid-tu8F08MUY9 DIV {
  color: #ffffff;
}
.cid-tu8F08MUY9 H10 {
  color: #767676;
}
.cid-tu8F08MUY9 .hidden {
  display: none;
}
.cid-tu8F08MUY9 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tBcNEGPkqv {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .empty_md {
    display: block;
  }
}
.cid-tBcNEGPkqv .container,
.cid-tBcNEGPkqv .container-fluid,
.cid-tBcNEGPkqv .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tBcNEGPkqv .container,
  .cid-tBcNEGPkqv .container-fluid,
  .cid-tBcNEGPkqv .empty_md {
    min-height: 170px !important;
  }
}
.cid-tBcNEGPkqv .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tBcNEGPkqv .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 110px !important;
  }
}
.cid-tBcNEGPkqv .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tBcNEGPkqv .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tBcNEGPkqv .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tBcNEGPkqv .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tBcNEGPkqv .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tBcNEGPkqv .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tBcNEGPkqv .empty,
  .cid-tBcNEGPkqv .icons-menu {
    min-width: 265px;
  }
  .cid-tBcNEGPkqv .navbar-logo {
    margin: 0;
  }
  .cid-tBcNEGPkqv .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tBcNEGPkqv .btn {
    white-space: nowrap;
  }
  .cid-tBcNEGPkqv .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tBcNEGPkqv .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tBcNEGPkqv .dropdown-toggle::after,
  .cid-tBcNEGPkqv .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tBcNEGPkqv .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tBcNEGPkqv .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tBcNEGPkqv .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tBcNEGPkqv .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tBcNEGPkqv .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tBcNEGPkqv .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tBcNEGPkqv .nav-item:focus,
.cid-tBcNEGPkqv .nav-link:focus {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tBcNEGPkqv .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tBcNEGPkqv .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tBcNEGPkqv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tBcNEGPkqv ul.navbar-nav li {
  margin: auto;
}
.cid-tBcNEGPkqv .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tBcNEGPkqv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tBcNEGPkqv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tBcNEGPkqv .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tBcNEGPkqv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tBcNEGPkqv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tBcNEGPkqv .navbar .icons-menu,
  .cid-tBcNEGPkqv .navbar .empty {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tBcNEGPkqv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tBcNEGPkqv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tBcNEGPkqv .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tBcNEGPkqv .navbar .container-fluid,
  .cid-tBcNEGPkqv .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tBcNEGPkqv .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tBcNEGPkqv .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tBcNEGPkqv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tBcNEGPkqv .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tBcNEGPkqv .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tBcNEGPkqv .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tBcNEGPkqv .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tBcNEGPkqv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tBcNEGPkqv .dropdown-item.active,
.cid-tBcNEGPkqv .dropdown-item:active {
  background-color: transparent;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tBcNEGPkqv .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tBcNEGPkqv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tBcNEGPkqv .navbar-buttons {
  text-align: center;
}
.cid-tBcNEGPkqv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBcNEGPkqv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBcNEGPkqv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBcNEGPkqv .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tBcNEGPkqv a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tBcNEGPkqv a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tBcNEGPkqv .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tBcNEGPkqv .navbar {
    height: 77px;
  }
  .cid-tBcNEGPkqv .navbar.opened {
    height: auto;
  }
  .cid-tBcNEGPkqv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvWMfxNxQJ {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  text-align: justify;
}
.cid-tBSHEEtmof {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tBSHEEtmof .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tBSHEEtmof .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tBSHEEtmof .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tBSHEEtmof .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tBSHEEtmof .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tBSHEEtmof .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tBSHEEtmof .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tBSHEEtmof .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tBSHEEtmof .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tBSHEEtmof .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tBSHEEtmof .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tBSHEEtmof .media-container-row .mbr-text {
  color: #000000;
}
.cid-tCDyjSDJG8 {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tCDyjSDJG8 {
    min-height: 170px !important;
  }
}
.cid-tCDyjSDJG8 .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tCDyjSDJG8 .empty_md {
    display: block;
  }
}
.cid-tCDyjSDJG8 .container,
.cid-tCDyjSDJG8 .container-fluid,
.cid-tCDyjSDJG8 .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tCDyjSDJG8 .container,
  .cid-tCDyjSDJG8 .container-fluid,
  .cid-tCDyjSDJG8 .empty_md {
    min-height: 170px !important;
  }
}
.cid-tCDyjSDJG8 .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tCDyjSDJG8 .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tCDyjSDJG8 .top_menu {
    min-height: 110px !important;
  }
}
.cid-tCDyjSDJG8 .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tCDyjSDJG8 .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tCDyjSDJG8 .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tCDyjSDJG8 .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tCDyjSDJG8 .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tCDyjSDJG8 .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tCDyjSDJG8 .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tCDyjSDJG8 .empty,
  .cid-tCDyjSDJG8 .icons-menu {
    min-width: 265px;
  }
  .cid-tCDyjSDJG8 .navbar-logo {
    margin: 0;
  }
  .cid-tCDyjSDJG8 .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tCDyjSDJG8 .btn {
    white-space: nowrap;
  }
  .cid-tCDyjSDJG8 .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tCDyjSDJG8 .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tCDyjSDJG8 .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tCDyjSDJG8 .dropdown-toggle::after,
  .cid-tCDyjSDJG8 .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tCDyjSDJG8 .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tCDyjSDJG8 .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyjSDJG8 .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tCDyjSDJG8 .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyjSDJG8 .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tCDyjSDJG8 .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tCDyjSDJG8 .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tCDyjSDJG8 .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tCDyjSDJG8 .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tCDyjSDJG8 .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tCDyjSDJG8 .nav-item:focus,
.cid-tCDyjSDJG8 .nav-link:focus {
  outline: none;
}
.cid-tCDyjSDJG8 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tCDyjSDJG8 .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tCDyjSDJG8 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tCDyjSDJG8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCDyjSDJG8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tCDyjSDJG8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCDyjSDJG8 ul.navbar-nav li {
  margin: auto;
}
.cid-tCDyjSDJG8 .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tCDyjSDJG8 .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tCDyjSDJG8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tCDyjSDJG8 .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tCDyjSDJG8 .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tCDyjSDJG8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCDyjSDJG8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCDyjSDJG8 .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tCDyjSDJG8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tCDyjSDJG8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCDyjSDJG8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCDyjSDJG8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tCDyjSDJG8 .navbar .icons-menu,
  .cid-tCDyjSDJG8 .navbar .empty {
    display: none;
  }
  .cid-tCDyjSDJG8 .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tCDyjSDJG8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCDyjSDJG8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCDyjSDJG8 .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tCDyjSDJG8 .navbar .container-fluid,
  .cid-tCDyjSDJG8 .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tCDyjSDJG8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCDyjSDJG8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCDyjSDJG8 .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tCDyjSDJG8 .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tCDyjSDJG8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tCDyjSDJG8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tCDyjSDJG8 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tCDyjSDJG8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCDyjSDJG8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCDyjSDJG8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCDyjSDJG8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCDyjSDJG8 .dropdown-item.active,
.cid-tCDyjSDJG8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tCDyjSDJG8 .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCDyjSDJG8 .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tCDyjSDJG8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCDyjSDJG8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tCDyjSDJG8 .navbar-buttons {
  text-align: center;
}
.cid-tCDyjSDJG8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tCDyjSDJG8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tCDyjSDJG8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCDyjSDJG8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCDyjSDJG8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCDyjSDJG8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCDyjSDJG8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCDyjSDJG8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCDyjSDJG8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCDyjSDJG8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCDyjSDJG8 .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tCDyjSDJG8 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyjSDJG8 a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tCDyjSDJG8 .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCDyjSDJG8 .navbar {
    height: 77px;
  }
  .cid-tCDyjSDJG8 .navbar.opened {
    height: auto;
  }
  .cid-tCDyjSDJG8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCDyjTbZ0o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCDyjTbZ0o .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCDyjTbZ0o .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCDyjTbZ0o .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCDyjTbZ0o .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCDyjTbZ0o .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCDyjTbZ0o .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCDyjTbZ0o .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCDyjTbZ0o .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCDyjTbZ0o .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCDyjTbZ0o .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCDyjTbZ0o .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCDyjTbZ0o .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCDyjTbZ0o .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCDyjTbZ0o .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCDyjTbZ0o .media-container-row .mbr-text {
  color: #000000;
}
.cid-tCDyvzT7zF {
  position: relative;
  overflow: visible;
  min-height: 110px !important;
  background: #ffffff;
}
@media (min-width: 991px) {
  .cid-tCDyvzT7zF {
    min-height: 170px !important;
  }
}
.cid-tCDyvzT7zF .empty_md {
  display: none;
}
@media (max-width: 991px) {
  .cid-tCDyvzT7zF .empty_md {
    display: block;
  }
}
.cid-tCDyvzT7zF .container,
.cid-tCDyvzT7zF .container-fluid,
.cid-tCDyvzT7zF .empty_md {
  min-height: 110px !important;
}
@media (min-width: 991px) {
  .cid-tCDyvzT7zF .container,
  .cid-tCDyvzT7zF .container-fluid,
  .cid-tCDyvzT7zF .empty_md {
    min-height: 170px !important;
  }
}
.cid-tCDyvzT7zF .nav-link {
  position: relative;
  margin: 0 2vw !important;
  padding: 0 !important;
  font-weight: 600;
}
.cid-tCDyvzT7zF .top_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
@media (max-width: 991px) {
  .cid-tCDyvzT7zF .top_menu {
    min-height: 110px !important;
  }
}
.cid-tCDyvzT7zF .navbar-caption:hover {
  color: #ff6666 !important;
}
.cid-tCDyvzT7zF .menu_wrapper {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .cid-tCDyvzT7zF .top_menu {
    min-height: 58px;
    position: relative;
  }
  .cid-tCDyvzT7zF .top_menu:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #010101;
    left: -32px;
    width: calc(100% + 64px);
  }
  .cid-tCDyvzT7zF .icons-menu {
    display: flex;
    justify-content: flex-end;
  }
  .cid-tCDyvzT7zF .icons-menu .mbr-iconfont {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 40px;
    margin-left: 1px;
  }
  .cid-tCDyvzT7zF .icons-menu .icons-wrapper {
    border-radius: 50%;
    width: 39px;
    height: 39px;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    margin-right: 5px;
  }
  .cid-tCDyvzT7zF .empty,
  .cid-tCDyvzT7zF .icons-menu {
    min-width: 265px;
  }
  .cid-tCDyvzT7zF .navbar-logo {
    margin: 0;
  }
  .cid-tCDyvzT7zF .navbar-logo img {
    margin: auto;
    width: auto;
  }
  .cid-tCDyvzT7zF .btn {
    white-space: nowrap;
  }
  .cid-tCDyvzT7zF .dropdown-menu {
    display: inline-block;
    transform-origin: 50% -50px;
    transform: perspective(300px) rotateX(-15deg);
    opacity: 0;
    visibility: hidden;
  }
  .cid-tCDyvzT7zF .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .is-builder .cid-tCDyvzT7zF .nav-item:hover .nav-link + .dropdown-menu {
    visibility: hidden;
    opacity: 0;
  }
  .cid-tCDyvzT7zF .dropdown-toggle::after,
  .cid-tCDyvzT7zF .nav-dropdown .link.dropdown-toggle::after {
    content: "";
    border: none;
    width: 0;
    margin-left: 0 !important;
  }
}
.cid-tCDyvzT7zF .dropdown-toggle::after {
  content: "\e91a";
  font-family: "Moririse2";
  border: none !important;
  right: 25px !important;
  color: currentColor;
  margin-left: 10px !important;
  margin-top: -10px !important;
  font-size: 10px;
  height: 10px;
  width: 10px;
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transform: rotate(45deg);
}
.cid-tCDyvzT7zF .dropdown-menu {
  box-shadow: 0 9px 20px -8px #d9d9d9, 0 0 1px #f2f2f2;
  width: auto;
  min-width: 170px;
  max-width: 320px;
  border-radius: 6px;
  top: 20px;
  left: -5px;
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyvzT7zF .dropdown-menu .dropdown.open .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  transform: rotate(0deg);
}
.cid-tCDyvzT7zF .dropdown-menu .dropdown-item {
  line-height: 100%;
  font-weight: normal;
  padding: 10px 20px !important;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyvzT7zF .dropdown-menu .dropdown-item:hover {
  color: #4479d9 !important;
  background-color: #e6e6e6;
}
.cid-tCDyvzT7zF .dropdown.open .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(0deg);
}
.cid-tCDyvzT7zF .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
}
.cid-tCDyvzT7zF .navbar .dropdown.open > .dropdown-menu {
  display: inline-block;
  transform: none;
  opacity: 1;
}
.cid-tCDyvzT7zF .nav-dropdown .dropdown-submenu {
  margin: 0 !important;
  top: 2px !important;
}
.cid-tCDyvzT7zF .dropdown-item {
  padding: 0 1.35vw;
  justify-content: center;
  font-weight: 400;
}
.cid-tCDyvzT7zF .nav-item:focus,
.cid-tCDyvzT7zF .nav-link:focus {
  outline: none;
}
.cid-tCDyvzT7zF .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
}
.cid-tCDyvzT7zF .dropdown .dropdown-menu .dropdown-item::after {
  right: .5rem;
}
.cid-tCDyvzT7zF .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tCDyvzT7zF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tCDyvzT7zF .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-tCDyvzT7zF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tCDyvzT7zF ul.navbar-nav li {
  margin: auto;
}
.cid-tCDyvzT7zF .navbar {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff;
}
.cid-tCDyvzT7zF .navbar.opened {
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  background: #ffffff !important;
}
.cid-tCDyvzT7zF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tCDyvzT7zF .navbar .navbar-collapse {
    height: 80px;
  }
}
@media (max-width: 991px) {
  .cid-tCDyvzT7zF .navbar .navbar-collapse {
    padding-bottom: 1.5rem;
  }
}
.cid-tCDyvzT7zF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tCDyvzT7zF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tCDyvzT7zF .navbar.collapsed.opened {
    min-height: 120px;
  }
  .cid-tCDyvzT7zF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3rem - 1rem);
  }
}
.cid-tCDyvzT7zF .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tCDyvzT7zF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tCDyvzT7zF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tCDyvzT7zF .navbar .icons-menu,
  .cid-tCDyvzT7zF .navbar .empty {
    display: none;
  }
  .cid-tCDyvzT7zF .navbar .top_menu {
    justify-content: space-between;
  }
  .cid-tCDyvzT7zF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tCDyvzT7zF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tCDyvzT7zF .navbar .nav-link {
    padding: 5px !important;
  }
  .cid-tCDyvzT7zF .navbar .container-fluid,
  .cid-tCDyvzT7zF .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cid-tCDyvzT7zF .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tCDyvzT7zF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tCDyvzT7zF .navbar .navbar-logo img {
    margin: auto;
    width: auto;
    height: 3.6rem !important;
  }
  .cid-tCDyvzT7zF .navbar .dropdown-menu .dropdown-item {
    text-align: center;
    justify-content: center;
  }
  .cid-tCDyvzT7zF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    min-height: 50px;
  }
  .cid-tCDyvzT7zF .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-tCDyvzT7zF .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 90px;
}
.cid-tCDyvzT7zF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tCDyvzT7zF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tCDyvzT7zF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .25s;
  word-break: break-word;
  z-index: 1;
}
.cid-tCDyvzT7zF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tCDyvzT7zF .dropdown-item.active,
.cid-tCDyvzT7zF .dropdown-item:active {
  background-color: transparent;
}
.cid-tCDyvzT7zF .nav-dropdown .link .dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tCDyvzT7zF .nav-dropdown .link .dropdown-toggle[aria-expanded="true"] {
  margin: 0 2vw !important;
}
.cid-tCDyvzT7zF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tCDyvzT7zF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
}
.cid-tCDyvzT7zF .navbar-buttons {
  text-align: center;
}
.cid-tCDyvzT7zF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-tCDyvzT7zF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #010101;
}
.cid-tCDyvzT7zF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tCDyvzT7zF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tCDyvzT7zF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tCDyvzT7zF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tCDyvzT7zF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCDyvzT7zF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tCDyvzT7zF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tCDyvzT7zF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tCDyvzT7zF .navbar-dropdown {
  position: absolute;
  position: fixed;
}
.cid-tCDyvzT7zF a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.cid-tCDyvzT7zF a.nav-link:hover {
  color: #ff6666 !important;
}
.is-builder .cid-tCDyvzT7zF .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tCDyvzT7zF .navbar {
    height: 77px;
  }
  .cid-tCDyvzT7zF .navbar.opened {
    height: auto;
  }
  .cid-tCDyvzT7zF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tCDySAbw8n {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tCDySAbw8n .mbr-section-head {
  width: 100%;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .cid-tCDySAbw8n .mbr-section-head {
    margin-bottom: 60px;
  }
}
.cid-tCDySAbw8n .mbr-section-title {
  color: #829D85;
  margin-bottom: 0;
}
.cid-tCDySAbw8n .mbr-text {
  color: #353535;
  margin-top: 20px;
}
.cid-tCDySAbw8n .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 45px;
  overflow: hidden;
}
.cid-tCDySAbw8n .image-wrapper img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-tCDyvAn2fx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tCDyvAn2fx .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tCDyvAn2fx .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tCDyvAn2fx .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tCDyvAn2fx .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tCDyvAn2fx .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tCDyvAn2fx .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tCDyvAn2fx .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tCDyvAn2fx .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tCDyvAn2fx .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tCDyvAn2fx .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tCDyvAn2fx .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tCDyvAn2fx .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tCDyvAn2fx .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tCDyvAn2fx .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tCDyvAn2fx .media-container-row .mbr-text {
  color: #000000;
}
.cid-tVNqHFu5QL {
  background-image: url("../../../assets/images/mbr-1920x1120.webp");
}
.cid-tVNqHFu5QL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVNqHFu5QL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVNqHFu5QL .mbr-section-title {
  color: #ffffff;
}
.cid-tVNqHFu5QL .mbr-text,
.cid-tVNqHFu5QL .mbr-section-btn {
  color: #ffffff;
}
