.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #6ec7f2 !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: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #1ea8eb !important;
  border-color: #1ea8eb !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1ea8eb !important;
  border-color: #1ea8eb !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: #6ec7f2;
  color: #6ec7f2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1ea8eb !important;
  background-color: transparent!important;
  border-color: #1ea8eb !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6ec7f2 !important;
  border-color: #6ec7f2 !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: #6ec7f2 !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: #15a1e5 !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: #6ec7f2;
}
.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-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6ec7f2;
  border-color: #6ec7f2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6ec7f2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: 'Jost', 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: #6ec7f2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #6ec7f2;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6ec7f2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6ec7f2;
}
.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: #6ec7f2;
  border-bottom-color: #6ec7f2;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #6ec7f2 !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='%236ec7f2' %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-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tHsI4hRHg3 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2000x1333.jpeg");
}
.cid-tHsI4hRHg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHsI4hRHg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHsI4hRHg3 .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tHsI4hRHg3 .container-fluid {
    padding: 0 20px;
  }
}
.cid-tHsI4hRHg3 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tHsI4hRHg3 .container {
    padding: 0 20px;
  }
}
.cid-tHsI4hRHg3 .title-wrapper {
  position: relative;
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-tHsI4hRHg3 .title-wrapper {
    padding: 0;
  }
}
.cid-tHsI4hRHg3 .title-wrapper .logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-tHsI4hRHg3 .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-tHsI4hRHg3 .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-tHsI4hRHg3 .title-wrapper .logo-wrap img {
    width: 70px;
    height: 70px;
  }
}
.cid-tHsI4hRHg3 .title-wrapper .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-tHsI4hRHg3 .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-tHsI4hRHg3 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-tHsI4hRHg3 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-tHsI4hRHg3 .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cid-tHsI4hRHg3 .title-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-tHsI4hRHg3 .title-wrapper .image-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tHsI4hRHg3 .title-wrapper .image-wrap {
    display: none;
  }
}
.cid-tHsI4hRHg3 .title-wrapper .image_1 {
  top: 0;
  left: -2rem;
}
.cid-tHsI4hRHg3 .title-wrapper .image_2 {
  top: -9rem;
  left: 15rem;
  height: 120px;
}
.cid-tHsI4hRHg3 .title-wrapper .image_3 {
  top: -3rem;
  right: -2rem;
}
.cid-tHsI4hRHg3 .title-wrapper .image_4 {
  right: -2rem;
  bottom: 0;
}
.cid-tHsI4hRHg3 .title-wrapper .image_5 {
  bottom: -8rem;
  right: 12rem;
  height: 120px;
}
.cid-tHsI4hRHg3 .title-wrapper .image_6 {
  bottom: -8rem;
  left: 14rem;
  height: 120px;
}
.cid-tHsI4hRHg3 .title-wrapper .image_7 {
  left: -3rem;
  bottom: 0;
}
.cid-tHsI4hRHg3 .mbr-section-title {
  color: #ffffff;
}
.cid-tHsI4hRHg3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tHsI4hRHg3 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tHsI4hRHg3 .mbr-section-title,
.cid-tHsI4hRHg3 .mbr-section-btn,
.cid-tHsI4hRHg3 .logo-wrap {
  text-align: center;
}
.cid-uqPyWUp2O7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqPyWUp2O7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPyWUp2O7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPyWUp2O7 .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqPyWUp2O7 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqPyWUp2O7 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqPyWUp2O7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqPyWUp2O7 .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #9fdbf8, #22a5e5, #9fdbf8);
}
@media (max-width: 992px) {
  .cid-uqPyWUp2O7 .border-wrap {
    margin-top: 32px;
  }
}
.cid-uqPyWUp2O7 .mbr-section-title {
  color: #ffffff;
}
.cid-uqPyWUp2O7 .mbr-text,
.cid-uqPyWUp2O7 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uqPyWUp2O7 .mbr-section-title,
.cid-uqPyWUp2O7 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uNcb8ZDJhg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNcb8ZDJhg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcb8ZDJhg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcb8ZDJhg .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uNcb8ZDJhg .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcb8ZDJhg .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uNcb8ZDJhg .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uNcb8ZDJhg .row .row {
    flex-direction: column-reverse;
  }
  .cid-uNcb8ZDJhg .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uNcb8ZDJhg .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uNcb8ZDJhg .card-subtitle {
  color: #0095ff;
}
.cid-uNcb8ZDJhg .mbr-text {
  color: #555555;
}
.cid-uqPB4sRvRM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqPB4sRvRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPB4sRvRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPB4sRvRM .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uqPB4sRvRM .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqPB4sRvRM .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uqPB4sRvRM .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uqPB4sRvRM .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #9fdbf8, #22a5e5, #9fdbf8);
}
@media (max-width: 992px) {
  .cid-uqPB4sRvRM .border-wrap {
    margin-top: 32px;
  }
}
.cid-uqPB4sRvRM .mbr-section-title {
  color: #ffffff;
}
.cid-uqPB4sRvRM .mbr-text,
.cid-uqPB4sRvRM .text-wrapper {
  color: #bbbbbb;
  text-align: center;
}
.cid-uqPB4sRvRM .mbr-section-title,
.cid-uqPB4sRvRM .mbr-section-btn {
  text-align: center;
  color: #111111;
}
.cid-utivBNntUW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/ola-pawowska-web-22-1295x1036.jpg");
}
.cid-utivBNntUW::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #f6f6f6 50%);
  z-index: 1;
}
.cid-utivBNntUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-utivBNntUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utivBNntUW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utivBNntUW .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utivBNntUW .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utivBNntUW .container {
    padding: 0 22px;
  }
}
.cid-utivBNntUW .row {
  justify-content: center;
}
.cid-utivBNntUW .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utivBNntUW .content-wrapper {
    padding: 0;
  }
}
.cid-utivBNntUW .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utivBNntUW .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utivBNntUW .mbr-section-title {
  color: #ffffff;
}
.cid-utivBNntUW .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utivBNntUW .mbr-section-title,
.cid-utivBNntUW .mbr-section-btn {
  text-align: center;
}
.cid-utiAKZJrNf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/ukasz-lewandowski-web-4-1295x1036.jpeg");
}
.cid-utiAKZJrNf::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #ffffff 50%);
  z-index: 1;
}
.cid-utiAKZJrNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiAKZJrNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiAKZJrNf .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utiAKZJrNf .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utiAKZJrNf .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utiAKZJrNf .container {
    padding: 0 22px;
  }
}
.cid-utiAKZJrNf .row {
  justify-content: center;
}
.cid-utiAKZJrNf .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utiAKZJrNf .content-wrapper {
    padding: 0;
  }
}
.cid-utiAKZJrNf .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utiAKZJrNf .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utiAKZJrNf .mbr-section-title {
  color: #ffffff;
}
.cid-utiAKZJrNf .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utiAKZJrNf .mbr-section-title,
.cid-utiAKZJrNf .mbr-section-btn {
  text-align: center;
}
.cid-utiAM3K9Mv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/wioleta-kaczmarek-46-995x796.jpeg");
}
.cid-utiAM3K9Mv::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #f6f6f6 50%);
  z-index: 1;
}
.cid-utiAM3K9Mv .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiAM3K9Mv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiAM3K9Mv .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utiAM3K9Mv .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utiAM3K9Mv .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utiAM3K9Mv .container {
    padding: 0 22px;
  }
}
.cid-utiAM3K9Mv .row {
  justify-content: center;
}
.cid-utiAM3K9Mv .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utiAM3K9Mv .content-wrapper {
    padding: 0;
  }
}
.cid-utiAM3K9Mv .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utiAM3K9Mv .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utiAM3K9Mv .mbr-section-title {
  color: #ffffff;
}
.cid-utiAM3K9Mv .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utiAM3K9Mv .mbr-section-title,
.cid-utiAM3K9Mv .mbr-section-btn {
  text-align: center;
}
.cid-utiAN6IcqT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/aleksandra-mateusz-19-2000x1307.jpg");
}
.cid-utiAN6IcqT::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #f6f6f6 50%);
  z-index: 1;
}
.cid-utiAN6IcqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiAN6IcqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiAN6IcqT .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utiAN6IcqT .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utiAN6IcqT .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utiAN6IcqT .container {
    padding: 0 22px;
  }
}
.cid-utiAN6IcqT .row {
  justify-content: center;
}
.cid-utiAN6IcqT .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utiAN6IcqT .content-wrapper {
    padding: 0;
  }
}
.cid-utiAN6IcqT .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utiAN6IcqT .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utiAN6IcqT .mbr-section-title {
  color: #ffffff;
}
.cid-utiAN6IcqT .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utiAN6IcqT .mbr-section-title,
.cid-utiAN6IcqT .mbr-section-btn {
  text-align: center;
}
.cid-utiAO05qPY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/czesaw-hoppe-1-1295x1619.jpg");
}
.cid-utiAO05qPY::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #f6f6f6 50%);
  z-index: 1;
}
.cid-utiAO05qPY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiAO05qPY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiAO05qPY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utiAO05qPY .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utiAO05qPY .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utiAO05qPY .container {
    padding: 0 22px;
  }
}
.cid-utiAO05qPY .row {
  justify-content: center;
}
.cid-utiAO05qPY .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utiAO05qPY .content-wrapper {
    padding: 0;
  }
}
.cid-utiAO05qPY .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utiAO05qPY .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utiAO05qPY .mbr-section-title {
  color: #ffffff;
}
.cid-utiAO05qPY .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utiAO05qPY .mbr-section-title,
.cid-utiAO05qPY .mbr-section-btn {
  text-align: center;
}
.cid-utiAPCWjIY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/tomas-pupik-web-20-2000x1600.jpeg");
}
.cid-utiAPCWjIY::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #f6f6f6 50%);
  z-index: 1;
}
.cid-utiAPCWjIY .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiAPCWjIY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiAPCWjIY .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-utiAPCWjIY .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-utiAPCWjIY .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-utiAPCWjIY .container {
    padding: 0 22px;
  }
}
.cid-utiAPCWjIY .row {
  justify-content: center;
}
.cid-utiAPCWjIY .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-utiAPCWjIY .content-wrapper {
    padding: 0;
  }
}
.cid-utiAPCWjIY .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utiAPCWjIY .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-utiAPCWjIY .mbr-section-title {
  color: #ffffff;
}
.cid-utiAPCWjIY .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-utiAPCWjIY .mbr-section-title,
.cid-utiAPCWjIY .mbr-section-btn {
  text-align: center;
}
.cid-us260paRJA {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/rodzinka-2024-web-53-2000x1600.jpg");
}
.cid-us260paRJA .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-us260paRJA .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-us260paRJA {
    align-items: null;
  }
  .cid-us260paRJA .row {
    justify-content: center;
  }
}
.cid-us260paRJA .img-wrap {
  display: flex;
  justify-content: center;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}
.cid-us260paRJA .img-wrap img {
  width: 110px;
  border-radius: 50% !important;
  border: 3px solid white;
  margin-left: -1rem;
  object-fit: cover;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-us260paRJA .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-us260paRJA {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-us260paRJA .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-us260paRJA .content-wrap {
    width: 100%;
  }
}
.cid-us260paRJA .mbr-section-title {
  text-align: center;
}
.cid-us260paRJA .mbr-text,
.cid-us260paRJA .mbr-section-btn {
  text-align: center;
}
.cid-uvsClisgu1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvsClisgu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsClisgu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvsClisgu1 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uvsClisgu1 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uvsClisgu1 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6ec7f2;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uvsClisgu1 H3 {
  text-align: center;
}
.cid-uDK9q40TpS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDK9q40TpS .item:focus,
.cid-uDK9q40TpS span:focus {
  outline: none;
}
.cid-uDK9q40TpS .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uDK9q40TpS .loop-container {
  padding: 10px 0;
}
.cid-uDK9q40TpS .item {
  font-weight: 700;
  color: #22a5e5;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uDK9q40TpS .item {
    min-height: 45px;
  }
}
.cid-uvtUHkCJuK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f6f6f6;
  background: linear-gradient(90deg, #f6f6f6, #22a5e5);
}
.cid-uvtUHkCJuK .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-uvtUHkCJuK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvtUHkCJuK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNclAuNjeF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNclAuNjeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNclAuNjeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNclAuNjeF .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNclAuNjeF .currentcost {
  color: #232323;
}
.cid-uNclAuNjeF .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNclAuNjeF .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNclAuNjeF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNclAuNjeF .text-box {
    padding: 1rem;
  }
}
.cid-uNclAuNjeF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-u3pDzLYI8C {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3pDzLYI8C img,
.cid-u3pDzLYI8C .item-img {
  width: 100%;
}
.cid-u3pDzLYI8C .item:focus,
.cid-u3pDzLYI8C span:focus {
  outline: none;
}
.cid-u3pDzLYI8C .item-wrapper {
  position: relative;
}
.cid-u3pDzLYI8C .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3pDzLYI8C .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3pDzLYI8C .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-u3pDzLYI8C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u3pDzLYI8C .mbr-section-title {
  color: #232323;
}
.cid-u3pDzLYI8C .mbr-text,
.cid-u3pDzLYI8C .mbr-section-btn {
  text-align: left;
}
.cid-u3pDzLYI8C .item-title {
  text-align: left;
}
.cid-u3pDzLYI8C .item-subtitle {
  text-align: left;
}
.cid-u3pDzLYI8C .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-u3pDzLYI8C .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-u3pDzLYI8C .embla__button--next,
.cid-u3pDzLYI8C .embla__button--prev {
  display: flex;
}
.cid-u3pDzLYI8C .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-u3pDzLYI8C .embla__button {
    display: none;
  }
}
.cid-u3pDzLYI8C .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-u3pDzLYI8C .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-u3pDzLYI8C .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3pDzLYI8C .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u3pDzLYI8C .embla__button {
    top: auto;
  }
}
.cid-u3pDzLYI8C .embla {
  position: relative;
  width: 100%;
}
.cid-u3pDzLYI8C .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-u3pDzLYI8C .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-u3pDzLYI8C .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-u3pDzLYI8C .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tHsDzeK2pN {
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-tHsDzeK2pN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHsDzeK2pN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHsDzeK2pN .mbr-section-title {
  color: #ffffff;
}
.cid-tHsDzeK2pN .mbr-text,
.cid-tHsDzeK2pN .mbr-section-btn {
  color: #ffffff;
}
.cid-uIaFm0g8T6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIaFm0g8T6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIaFm0g8T6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIaFm0g8T6 .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uIaFm0g8T6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uIaFm0g8T6 .row {
  flex-direction: row-reverse;
}
.cid-uIaFm0g8T6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uIaFm0g8T6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uIaFm0g8T6 .mbr-text {
  text-align: center;
}
.cid-uIaFm0g8T6 .mbr-section-title {
  text-align: center;
}
.cid-uIaFpv3xNU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uIaFpv3xNU .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uIaFpv3xNU .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uIaFpv3xNU .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uIaFpv3xNU .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uIaFpv3xNU .btn:hover {
  box-shadow: none;
}
.cid-uIaFpv3xNU .mbr-section-title,
.cid-uIaFpv3xNU .mbr-section-btn {
  text-align: center;
}
.cid-uIaFTt7a8S {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/magdalena-dziobak-web-13.jpg-2000x1600.jpg");
}
.cid-uIaFTt7a8S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIaFTt7a8S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIaFTt7a8S .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uIaFTt7a8S .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uIaFTt7a8S .container-fluid {
    padding: 0 20px;
  }
}
.cid-uIaFTt7a8S .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uIaFTt7a8S .container {
    padding: 0 20px;
  }
}
.cid-uIaFTt7a8S .row {
  height: 100%;
}
.cid-uIaFTt7a8S .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uIaFTt7a8S .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uIaFTt7a8S .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uIaFTt7a8S .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uIaFTt7a8S .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uIaFTt7a8S .mbr-section-title {
  color: #ffffff;
}
.cid-uIaFTt7a8S .mbr-desc {
  color: #ffffff;
}
.cid-uIaFTt7a8S .mbr-section-title,
.cid-uIaFTt7a8S .mbr-section-btn {
  text-align: center;
}
.cid-utUQe10nPe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utUQe10nPe .video-wrapper iframe {
  width: 100%;
}
.cid-utUQe10nPe .mbr-section-title,
.cid-utUQe10nPe .mbr-section-subtitle,
.cid-utUQe10nPe .mbr-text {
  text-align: center;
}
.cid-utUQfoOrJB {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utUQfoOrJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utUQfoOrJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utUQfoOrJB .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-utUQfoOrJB .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-utUQfoOrJB .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-utUQfoOrJB .media-content,
.cid-utUQfoOrJB .mbr-figure {
  align-self: center;
}
.cid-utUQfoOrJB .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-utUQfoOrJB .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-utUQfoOrJB .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-utUQfoOrJB .mbr-section-maintitle {
  text-align: center;
}
.cid-utUQfoOrJB .mbr-section-title {
  text-align: left;
}
.cid-utUQfoOrJB .mbr-text,
.cid-utUQfoOrJB .mbr-section-btn {
  text-align: left;
}
#custom-html-w9 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w9 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w9 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w9 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-tHtMhwK0ri {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/daniel-drzazga-22-2000x1600.jpg");
}
.cid-tHtMhwK0ri .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHtMhwK0ri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHtMhwK0ri .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tHtMhwK0ri .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tHtMhwK0ri .container {
    padding: 0;
  }
}
.cid-tHtMhwK0ri .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tHtMhwK0ri .row {
    min-height: 450px;
  }
}
.cid-uNtwqWlpRw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNtwqWlpRw img {
  width: 120px;
  margin: auto;
}
.cid-uNtwqWlpRw .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uNtwqWlpRw .card {
    max-width: 12.5%;
  }
}
.cid-uNtwqWlpRw .mbr-section-title {
  color: #bbbbbb;
}
.cid-utUT4fGkeM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-utUT4fGkeM .mbr-text {
  color: #716c80;
}
.cid-utUT4fGkeM .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-utUT4fGkeM .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-utUT4fGkeM .card-wrapper:hover .ico2 {
  color: #6ec7f2 !important;
}
.cid-utUT4fGkeM .ico2 {
  color: #47b5ed !important;
  transition: all 0.6s;
}
.cid-utUT4fGkeM .text-info:hover {
  color: inherit!important;
}
.cid-utUT4fGkeM .card-box {
  padding: 0rem 1rem;
}
.cid-utUT4fGkeM .ico1 {
  font-size: 2rem !important;
}
.cid-utUT4fGkeM h3,
.cid-utUT4fGkeM h4 {
  padding: 0;
  margin: 0;
}
.cid-utUT4fGkeM .card-title,
.cid-utUT4fGkeM .card-img {
  color: #57468b;
}
.cid-utUT4fGkeM .card-title {
  color: #57468b;
}
.cid-utUT4fGkeM .card-img {
  width: auto;
}
.cid-utUT4fGkeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-utUT4fGkeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwe7dJWvO P {
  color: #1281fc;
}
.cid-uJwe7dJWvO DIV {
  color: #ffffff;
}
.cid-uJwe7dJWvO H10 {
  color: #034e75;
}
.cid-uJwe7dJWvO .hidden {
  display: none;
}
.cid-uJwe7dJWvO .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwe7dJWvO .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwe7dJWvO .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwe7dJWvO .flag {
  background: transparent;
}
.cid-uJwe7dJWvO .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwe7dJWvO .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwe7dJWvO #google_translate_element {
  display: none;
}
.cid-uJwe7dJWvO .goog-te-banner {
  display: none;
}
.cid-uJwe7dJWvO .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwe7dJWvO .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwe7dJWvO body {
  top: 0px !important;
}
.cid-uJwe7dJWvO body body {
  top: 0 !important;
}
.cid-uJwe7dJWvO body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwe7dJWvO .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwe7dJWvO .goog-tooltip {
  display: none !important;
}
.cid-uJwe7dJWvO .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwe7dJWvO .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwe7dJWvO #goog-gt-tt,
.cid-uJwe7dJWvO .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwe7dJWvO #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwe7dJWvO .goog-logo-link {
  display: none !important;
}
.cid-uJwe7dJWvO .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwe7dJWvO div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwe7dJWvO div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tILQwfziwu {
  background-image: url("../../../assets/images/ola-jakub-gajeccy-4-2000x1600.jpg");
}
.cid-tILQwfziwu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILQwfziwu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILQwfziwu .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-tILQwfziwu .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-tILQwfziwu .container {
    padding: 0 26px;
  }
}
.cid-tILQwfziwu .title-wrapper {
  padding-top: 35%;
}
.cid-tILQwfziwu .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tILQwfziwu .title-wrapper .mbr-section-btn {
  margin-bottom: 18px;
}
.cid-tILQwfziwu .title-wrapper .icon-wrapper a {
  display: inline-flex;
}
.cid-tILQwfziwu .title-wrapper .icon-wrapper a:hover {
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}
.cid-tILQwfziwu .title-wrapper .icon-wrapper a .mbr-iconfont {
  font-size: 40px;
  color: #ffffff;
}
.cid-tILQwfziwu .mbr-section-title {
  color: #ffffff;
}
.cid-tILQwfziwu .mbr-text {
  color: #ffffff;
}
.cid-tILQwfziwu .mbr-section-title,
.cid-tILQwfziwu .icon-wrapper,
.cid-tILQwfziwu .mbr-section-btn {
  text-align: center;
}
.cid-tIM0ekHnXK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tIM0ekHnXK img {
  width: 90%;
}
.cid-tIM0ekHnXK .mbr-text,
.cid-tIM0ekHnXK .mbr-section-btn {
  color: #111111;
}
@media (max-width: 992px) {
  .cid-tIM0ekHnXK img {
    width: 100%;
  }
  .cid-tIM0ekHnXK .pb-5 {
    padding-bottom: 1rem !important;
  }
}
.cid-tILRECmOS9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tILRECmOS9 .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tILRECmOS9 .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tILRECmOS9 .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-tILRECmOS9 .wrapper {
  height: 100%;
}
.cid-tILRECmOS9 img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-tILRECmOS9 .mbr-section-subtitle {
  text-align: center;
}
.cid-tILRECmOS9 .mbr-section-title {
  text-align: center;
}
.cid-tILRECmOS9 .card-title {
  text-align: center;
}
.cid-tILRECmOS9 .mbr-text {
  text-align: left;
}
.cid-tILSmGtMta {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tILSmGtMta .right {
  display: flex;
  flex-direction: column;
}
.cid-tILSmGtMta .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-tILSmGtMta .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-tILSmGtMta .last-p {
  padding-bottom: 0;
}
.cid-tILSmGtMta .row {
  justify-content: center;
}
.cid-tILSmGtMta a {
  font-weight: 600;
}
.cid-tILSmGtMta .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-tILSmGtMta .quote {
    padding: 15px;
  }
}
.cid-tILW6AZiJZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/walczak-18-2000x1600.jpg");
}
.cid-tILW6AZiJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILW6AZiJZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILW6AZiJZ .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tILW6AZiJZ .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tILW6AZiJZ .container {
    padding: 0;
  }
}
.cid-tILW6AZiJZ .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tILW6AZiJZ .row {
    min-height: 450px;
  }
}
.cid-tILSPrwPo7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tILSPrwPo7 .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tILSPrwPo7 .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tILSPrwPo7 .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-tILSPrwPo7 .wrapper {
  height: 100%;
}
.cid-tILSPrwPo7 img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-tILSPrwPo7 .mbr-section-subtitle {
  text-align: center;
}
.cid-tILSPrwPo7 .mbr-section-title {
  text-align: center;
}
.cid-tILSPrwPo7 .card-title {
  text-align: center;
}
.cid-tILSPrwPo7 .mbr-text {
  text-align: left;
}
.cid-tILSRn55Ip {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tILSRn55Ip .right {
  display: flex;
  flex-direction: column;
}
.cid-tILSRn55Ip .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-tILSRn55Ip .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-tILSRn55Ip .last-p {
  padding-bottom: 0;
}
.cid-tILSRn55Ip .row {
  justify-content: center;
}
.cid-tILSRn55Ip a {
  font-weight: 600;
}
.cid-tILSRn55Ip .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-tILSRn55Ip .quote {
    padding: 15px;
  }
}
.cid-tILW82fh93 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/ewelina-wisniewska-55-1200x960.jpg");
}
.cid-tILW82fh93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILW82fh93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILW82fh93 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tILW82fh93 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tILW82fh93 .container {
    padding: 0;
  }
}
.cid-tILW82fh93 .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tILW82fh93 .row {
    min-height: 450px;
  }
}
.cid-tILTB1pOLL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tILTB1pOLL .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tILTB1pOLL .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tILTB1pOLL .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-tILTB1pOLL .wrapper {
  height: 100%;
}
.cid-tILTB1pOLL img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-tILTB1pOLL .mbr-section-subtitle {
  text-align: center;
}
.cid-tILTB1pOLL .mbr-section-title {
  text-align: center;
}
.cid-tILTB1pOLL .card-title {
  text-align: center;
}
.cid-tILTB1pOLL .mbr-text {
  text-align: left;
}
.cid-tILTC3dxyQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tILTC3dxyQ .right {
  display: flex;
  flex-direction: column;
}
.cid-tILTC3dxyQ .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-tILTC3dxyQ .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-tILTC3dxyQ .last-p {
  padding-bottom: 0;
}
.cid-tILTC3dxyQ .row {
  justify-content: center;
}
.cid-tILTC3dxyQ a {
  font-weight: 600;
}
.cid-tILTC3dxyQ .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-tILTC3dxyQ .quote {
    padding: 15px;
  }
}
.cid-tILW8YoDNY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/monika-obidowska-16-2000x1048.jpg");
}
.cid-tILW8YoDNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILW8YoDNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILW8YoDNY .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tILW8YoDNY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tILW8YoDNY .container {
    padding: 0;
  }
}
.cid-tILW8YoDNY .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tILW8YoDNY .row {
    min-height: 450px;
  }
}
.cid-tILUA9OjFm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tILUA9OjFm .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tILUA9OjFm .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tILUA9OjFm .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-tILUA9OjFm .wrapper {
  height: 100%;
}
.cid-tILUA9OjFm img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-tILUA9OjFm .mbr-section-subtitle {
  text-align: center;
}
.cid-tILUA9OjFm .mbr-section-title {
  text-align: center;
}
.cid-tILUA9OjFm .card-title {
  text-align: center;
}
.cid-tILUA9OjFm .mbr-text {
  text-align: left;
}
.cid-tILUBbJ2sh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tILUBbJ2sh .right {
  display: flex;
  flex-direction: column;
}
.cid-tILUBbJ2sh .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-tILUBbJ2sh .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-tILUBbJ2sh .last-p {
  padding-bottom: 0;
}
.cid-tILUBbJ2sh .row {
  justify-content: center;
}
.cid-tILUBbJ2sh a {
  font-weight: 600;
}
.cid-tILUBbJ2sh .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-tILUBbJ2sh .quote {
    padding: 15px;
  }
}
.cid-tILW9U7RHO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-18-1200x784.jpg");
}
.cid-tILW9U7RHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILW9U7RHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILW9U7RHO .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tILW9U7RHO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tILW9U7RHO .container {
    padding: 0;
  }
}
.cid-tILW9U7RHO .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tILW9U7RHO .row {
    min-height: 450px;
  }
}
.cid-tILV9YUVHp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-tILV9YUVHp .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-tILV9YUVHp .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-tILV9YUVHp .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-tILV9YUVHp .wrapper {
  height: 100%;
}
.cid-tILV9YUVHp img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-tILV9YUVHp .mbr-section-subtitle {
  text-align: center;
}
.cid-tILV9YUVHp .mbr-section-title {
  text-align: center;
}
.cid-tILV9YUVHp .card-title {
  text-align: center;
}
.cid-tILV9YUVHp .mbr-text {
  text-align: left;
}
.cid-tILVaXobwP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tILVaXobwP .right {
  display: flex;
  flex-direction: column;
}
.cid-tILVaXobwP .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-tILVaXobwP .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-tILVaXobwP .last-p {
  padding-bottom: 0;
}
.cid-tILVaXobwP .row {
  justify-content: center;
}
.cid-tILVaXobwP a {
  font-weight: 600;
}
.cid-tILVaXobwP .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-tILVaXobwP .quote {
    padding: 15px;
  }
}
.cid-tILWb8rZ3T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/web-trodos-1000x667.jpeg");
}
.cid-tILWb8rZ3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tILWb8rZ3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tILWb8rZ3T .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tILWb8rZ3T .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tILWb8rZ3T .container {
    padding: 0;
  }
}
.cid-tILWb8rZ3T .row {
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-tILWb8rZ3T .row {
    min-height: 450px;
  }
}
.cid-uqQI0tGOuE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uqQI0tGOuE .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uqQI0tGOuE .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uqQI0tGOuE .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uqQI0tGOuE .wrapper {
  height: 100%;
}
.cid-uqQI0tGOuE img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uqQI0tGOuE .mbr-section-subtitle {
  text-align: center;
}
.cid-uqQI0tGOuE .mbr-section-title {
  text-align: center;
}
.cid-uqQI0tGOuE .card-title {
  text-align: center;
}
.cid-uqQI0tGOuE .mbr-text {
  text-align: center;
}
.cid-uqQI1ePLUo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqQI1ePLUo .right {
  display: flex;
  flex-direction: column;
}
.cid-uqQI1ePLUo .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-uqQI1ePLUo .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-uqQI1ePLUo .last-p {
  padding-bottom: 0;
}
.cid-uqQI1ePLUo .row {
  justify-content: center;
}
.cid-uqQI1ePLUo a {
  font-weight: 600;
}
.cid-uqQI1ePLUo .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-uqQI1ePLUo .quote {
    padding: 15px;
  }
}
.cid-uqQI3gZ89j {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqQI3gZ89j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQI3gZ89j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQI3gZ89j .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqQI3gZ89j .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqQI3gZ89j .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqQI3gZ89j .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqQI3gZ89j .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqQI3gZ89j .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqQI3gZ89j .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqQI3gZ89j .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqQI3gZ89j .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqQI3gZ89j .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqQI3gZ89j .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqQI3gZ89j .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqQI3gZ89j .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqQI3gZ89j .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqQI3gZ89j .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqQI3gZ89j .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-u2kb5J2A4s.popup-builder {
  background-color: #ffffff;
}
.cid-u2kb5J2A4s.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u2kb5J2A4s.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u2kb5J2A4s .modal-content,
.cid-u2kb5J2A4s .modal-dialog {
  height: auto;
}
.cid-u2kb5J2A4s .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u2kb5J2A4s .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u2kb5J2A4s .form-wrapper .mbr-form .form-group,
  .cid-u2kb5J2A4s .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u2kb5J2A4s .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u2kb5J2A4s .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u2kb5J2A4s .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-u2kb5J2A4s .pt-0 {
  padding-top: 0 !important;
}
.cid-u2kb5J2A4s .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u2kb5J2A4s .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u2kb5J2A4s .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u2kb5J2A4s .modal-open {
  overflow: hidden;
}
.cid-u2kb5J2A4s .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u2kb5J2A4s .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u2kb5J2A4s .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u2kb5J2A4s .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-u2kb5J2A4s .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u2kb5J2A4s .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u2kb5J2A4s .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u2kb5J2A4s .modal-content {
  background: #6ec7f2;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-u2kb5J2A4s .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u2kb5J2A4s .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u2kb5J2A4s .modal-backdrop.fade {
  opacity: 0;
}
.cid-u2kb5J2A4s .modal-backdrop.show {
  opacity: .5;
}
.cid-u2kb5J2A4s .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-u2kb5J2A4s .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u2kb5J2A4s .modal-header {
    padding: 1rem;
  }
}
.cid-u2kb5J2A4s .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u2kb5J2A4s .modal-header .close svg {
  fill: #353535;
}
.cid-u2kb5J2A4s .modal-header .close:hover {
  opacity: 1;
}
.cid-u2kb5J2A4s .modal-header .close:focus {
  outline: none;
}
.cid-u2kb5J2A4s .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-u2kb5J2A4s .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u2kb5J2A4s .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2kb5J2A4s .modal-body {
    padding: 1rem;
  }
}
.cid-u2kb5J2A4s .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-u2kb5J2A4s .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u2kb5J2A4s .modal-footer {
    padding: 1rem;
  }
}
.cid-u2kb5J2A4s .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u2kb5J2A4s .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u2kb5J2A4s .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u2kb5J2A4s .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u2kb5J2A4s .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u2kb5J2A4s .modal-lg,
  .cid-u2kb5J2A4s .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u2kb5J2A4s .modal-xl {
    max-width: 1140px;
  }
}
.cid-u2kb5J2A4s .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u2kb5J2A4s .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-u2kb5J2A4s .form-group {
  margin-bottom: 1rem;
}
.cid-u2kb5J2A4s .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u2kb5J2A4s .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u2kb5J2A4s .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-u2kb5J2A4s .mbr-section-btn {
  margin: 0;
}
.cid-u2kb5J2A4s .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJweoLhoP7 P {
  color: #1281fc;
}
.cid-uJweoLhoP7 DIV {
  color: #ffffff;
}
.cid-uJweoLhoP7 H10 {
  color: #034e75;
}
.cid-uJweoLhoP7 .hidden {
  display: none;
}
.cid-uJweoLhoP7 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweoLhoP7 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweoLhoP7 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweoLhoP7 .flag {
  background: transparent;
}
.cid-uJweoLhoP7 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweoLhoP7 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweoLhoP7 #google_translate_element {
  display: none;
}
.cid-uJweoLhoP7 .goog-te-banner {
  display: none;
}
.cid-uJweoLhoP7 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweoLhoP7 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweoLhoP7 body {
  top: 0px !important;
}
.cid-uJweoLhoP7 body body {
  top: 0 !important;
}
.cid-uJweoLhoP7 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweoLhoP7 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweoLhoP7 .goog-tooltip {
  display: none !important;
}
.cid-uJweoLhoP7 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweoLhoP7 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweoLhoP7 #goog-gt-tt,
.cid-uJweoLhoP7 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweoLhoP7 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweoLhoP7 .goog-logo-link {
  display: none !important;
}
.cid-uJweoLhoP7 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweoLhoP7 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweoLhoP7 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uag2J7KRKS {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-uag2J7KRKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uag2J7KRKS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-uag2J7KRKS .video-wrapper iframe {
  width: 100%;
}
.cid-uag2J7KRKS .mbr-section-title,
.cid-uag2J7KRKS .mbr-section-subtitle,
.cid-uag2J7KRKS .mbr-text {
  text-align: center;
}
.cid-tWqPtIwJNw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWqPtIwJNw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWqPtIwJNw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWqPtIwJNw .text-wrap {
  width: 100%;
}
.cid-tWqPtIwJNw .mbr-section-title {
  color: #22a5e5;
  margin-bottom: 70px;
}
.cid-tWqPtIwJNw .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .mbr-text {
    margin-top: 30px;
  }
}
.cid-tWqPtIwJNw .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-tWqPtIwJNw .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-tWqPtIwJNw .item-row {
    justify-content: flex-start;
  }
}
.cid-tWqPtIwJNw .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row .item {
    justify-content: flex-start;
  }
}
.cid-tWqPtIwJNw .item-row .item:nth-child(1) .item-wrap {
  background-color: #40b0bf;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-tWqPtIwJNw .item-row .item:nth-child(2) .item-wrap {
  background-color: #47b5ed;
  border-radius: 0 20px 20px 20px;
}
.cid-tWqPtIwJNw .item-row .item:nth-child(3) .item-wrap {
  background-color: #6ec7f2;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-tWqPtIwJNw .item-row .item:nth-child(4) .item-wrap {
  background-color: #9fdbf8;
  border-radius: 20px 20px 0 20px;
}
.cid-tWqPtIwJNw .item-row .item:nth-child(5) .item-wrap {
  background-color: #98dee8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-tWqPtIwJNw .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-tWqPtIwJNw .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-tWqPtIwJNw .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-tWqPtIwJNw .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-tWqPtIwJNw .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-tWqPtIwJNw .item-text {
  color: #000000;
  text-align: center;
}
.cid-uafU7DZVOO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uafU7DZVOO img,
.cid-uafU7DZVOO .item-img {
  width: 100%;
}
.cid-uafU7DZVOO .item:focus,
.cid-uafU7DZVOO span:focus {
  outline: none;
}
.cid-uafU7DZVOO .item-wrapper {
  position: relative;
}
.cid-uafU7DZVOO .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uafU7DZVOO .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uafU7DZVOO .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uafU7DZVOO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uafU7DZVOO .mbr-section-title {
  color: #232323;
}
.cid-uafU7DZVOO .mbr-text,
.cid-uafU7DZVOO .mbr-section-btn {
  text-align: left;
}
.cid-uafU7DZVOO .item-title {
  text-align: left;
}
.cid-uafU7DZVOO .item-subtitle {
  text-align: left;
}
.cid-uafU7DZVOO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uafU7DZVOO .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uafU7DZVOO .embla__button--next,
.cid-uafU7DZVOO .embla__button--prev {
  display: flex;
}
.cid-uafU7DZVOO .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uafU7DZVOO .embla__button {
    display: none;
  }
}
.cid-uafU7DZVOO .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uafU7DZVOO .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uafU7DZVOO .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uafU7DZVOO .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uafU7DZVOO .embla__button {
    top: auto;
  }
}
.cid-uafU7DZVOO .embla {
  position: relative;
  width: 100%;
}
.cid-uafU7DZVOO .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uafU7DZVOO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uafU7DZVOO .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uafU7DZVOO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ufLukOILyT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ufLukOILyT .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ufLukOILyT .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ufLukOILyT .column__one,
.cid-ufLukOILyT .column__two,
.cid-ufLukOILyT .column__three,
.cid-ufLukOILyT .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ufLukOILyT .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ufLukOILyT .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ufLukOILyT .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ufLukOILyT .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ufLukOILyT .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ufLukOILyT .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ufLukOILyT .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ufLukOILyT .column__two {
  border-bottom-left-radius: 0;
}
.cid-ufLukOILyT .column__three {
  border-bottom-left-radius: 0;
}
.cid-ufLukOILyT .column__four {
  border-bottom-left-radius: 0;
}
.cid-ufLukOILyT .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ufLukOILyT .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ufLukOILyT .pricing {
  padding: 0 20px;
}
.cid-ufLukOILyT .currency {
  vertical-align: top;
}
.cid-ufLukOILyT .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ufLukOILyT .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ufLukOILyT .item__wrapper {
  margin-top: 40px;
}
.cid-ufLukOILyT .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ufLukOILyT .column__one,
  .cid-ufLukOILyT .column__two,
  .cid-ufLukOILyT .column__three,
  .cid-ufLukOILyT .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ufLukOILyT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufLukOILyT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uafUECB277 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uafUECB277 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uafUECB277 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uafUECB277 .video-wrapper iframe {
  width: 100%;
}
.cid-uafUECB277 .mbr-section-title,
.cid-uafUECB277 .mbr-section-subtitle,
.cid-uafUECB277 .mbr-text {
  text-align: center;
}
.cid-ugbiQ7mH96 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugbiQ7mH96 .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ugbiQ7mH96 .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ugbiQ7mH96 .column__one,
.cid-ugbiQ7mH96 .column__two,
.cid-ugbiQ7mH96 .column__three,
.cid-ugbiQ7mH96 .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ugbiQ7mH96 .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ugbiQ7mH96 .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugbiQ7mH96 .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugbiQ7mH96 .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugbiQ7mH96 .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugbiQ7mH96 .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugbiQ7mH96 .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ugbiQ7mH96 .column__two {
  border-bottom-left-radius: 0;
}
.cid-ugbiQ7mH96 .column__three {
  border-bottom-left-radius: 0;
}
.cid-ugbiQ7mH96 .column__four {
  border-bottom-left-radius: 0;
}
.cid-ugbiQ7mH96 .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ugbiQ7mH96 .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ugbiQ7mH96 .pricing {
  padding: 0 20px;
}
.cid-ugbiQ7mH96 .currency {
  vertical-align: top;
}
.cid-ugbiQ7mH96 .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ugbiQ7mH96 .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ugbiQ7mH96 .item__wrapper {
  margin-top: 40px;
}
.cid-ugbiQ7mH96 .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ugbiQ7mH96 .column__one,
  .cid-ugbiQ7mH96 .column__two,
  .cid-ugbiQ7mH96 .column__three,
  .cid-ugbiQ7mH96 .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ugbiQ7mH96 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugbiQ7mH96 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uag1j5Xpbq {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-image: url("../../../assets/images/aleksandra-mateusz-28-1000x667.jpeg");
}
.cid-uag1j5Xpbq::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #ffffff 50%);
  z-index: 1;
}
.cid-uag1j5Xpbq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uag1j5Xpbq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uag1j5Xpbq .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uag1j5Xpbq .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uag1j5Xpbq .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uag1j5Xpbq .container {
    padding: 0 22px;
  }
}
.cid-uag1j5Xpbq .row {
  justify-content: center;
}
.cid-uag1j5Xpbq .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uag1j5Xpbq .content-wrapper {
    padding: 0;
  }
}
.cid-uag1j5Xpbq .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uag1j5Xpbq .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uag1j5Xpbq .mbr-section-title {
  color: #ffffff;
}
.cid-uag1j5Xpbq .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uag1j5Xpbq .mbr-section-title,
.cid-uag1j5Xpbq .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-ugaQf1lLQ4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugaQf1lLQ4 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ugaQf1lLQ4 .form-control,
.cid-ugaQf1lLQ4 .field-input {
  padding: 0.5rem;
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ugaQf1lLQ4 .form-control::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .form-control::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-ugaQf1lLQ4 .form-control:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:-moz-placeholder,
.cid-ugaQf1lLQ4 .form-control:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:-moz-placeholder {
  color: #000000;
}
.cid-ugaQf1lLQ4 .form-control:hover,
.cid-ugaQf1lLQ4 .field-input:hover,
.cid-ugaQf1lLQ4 .form-control:focus,
.cid-ugaQf1lLQ4 .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-ugaQf1lLQ4 .form-control:hover::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input:hover::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .form-control:focus::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input:focus::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .form-control:hover::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input:hover::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .form-control:focus::-webkit-input-placeholder,
.cid-ugaQf1lLQ4 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-ugaQf1lLQ4 .form-control:hover:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:hover:-moz-placeholder,
.cid-ugaQf1lLQ4 .form-control:focus:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:focus:-moz-placeholder,
.cid-ugaQf1lLQ4 .form-control:hover:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:hover:-moz-placeholder,
.cid-ugaQf1lLQ4 .form-control:focus:-moz-placeholder,
.cid-ugaQf1lLQ4 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-ugaQf1lLQ4 .jq-number__spin:hover,
.cid-ugaQf1lLQ4 .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-ugaQf1lLQ4 .jq-number__spin {
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ugaQf1lLQ4 .jq-selectbox li,
.cid-ugaQf1lLQ4 .jq-selectbox li {
  background-color: #9fdbf8;
  color: #000000;
}
.cid-ugaQf1lLQ4 .jq-selectbox li:hover,
.cid-ugaQf1lLQ4 .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-ugaQf1lLQ4 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ugaQf1lLQ4 .jq-number__spin.minus:hover:after,
.cid-ugaQf1lLQ4 .jq-number__spin.plus:hover:after {
  border-top-color: #9fdbf8;
  border-bottom-color: #9fdbf8;
}
.cid-ugaQf1lLQ4 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ugaQf1lLQ4 .jq-number__spin.minus:after,
.cid-ugaQf1lLQ4 .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-ugaQf1lLQ4 input::-webkit-clear-button {
  display: none;
}
.cid-ugaQf1lLQ4 input::-webkit-inner-spin-button {
  display: none;
}
.cid-ugaQf1lLQ4 input::-webkit-outer-spin-button {
  display: none;
}
.cid-ugaQf1lLQ4 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-ugaQf1lLQ4 H4 {
  text-align: center;
}
.cid-ugaQf1lLQ4 P {
  text-align: center;
}
.cid-uaof7WSBvp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uaof7WSBvp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaof7WSBvp .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uaof7WSBvp .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uaof7WSBvp .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uaof7WSBvp a {
  font-weight: 600;
}
.cid-uaof7WSBvp a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uaof7WSBvp .col-lg-3,
  .cid-uaof7WSBvp .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uaof7WSBvp .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uaof7WSBvp .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uaof7WSBvp h5 {
  margin: 0;
}
.cid-uaof7WSBvp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaof7WSBvp .iconfont-wrapper {
  position: relative;
}
.cid-uaof7WSBvp .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uaof7WSBvp .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uaof7WSBvp .sociconfont-wrapper {
  display: flex;
}
.cid-uaof7WSBvp .card-title,
.cid-uaof7WSBvp .iconfont-wrapper {
  color: #a1a1a1;
  text-align: left;
}
.cid-uaof7WSBvp .card-text {
  color: #000000;
}
.cid-uaof7WSBvp .mbr-section-title {
  color: #000000;
}
.cid-uaof7WSBvp .main-title,
.cid-uaof7WSBvp .iconfont-wrapper {
  text-align: center;
}
.cid-uag2VjF0uj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uag2VjF0uj .row {
  position: relative;
}
.cid-uag2VjF0uj .row .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #6ec7f2 50%, #ffffff);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uag2VjF0uj .row .blur-circle {
    display: none;
  }
}
.cid-uag2VjF0uj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uag2VjF0uj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uag2VjF0uj .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uag2VjF0uj .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uag2VjF0uj .row {
    padding: 0 24px;
  }
}
.cid-uag2VjF0uj .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uag2VjF0uj .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uag2VjF0uj .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uag2VjF0uj .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uag2VjF0uj .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #6ec7f2;
  z-index: -1;
}
.cid-uag2VjF0uj .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uag2VjF0uj .nav.nav-tabs {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px;
  border: 2px solid #6ec7f2;
  border-radius: 8px;
  margin-bottom: 64px;
  justify-content: center;
}
.cid-uag2VjF0uj .nav.nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border-radius: 4px;
  padding: 16px 25px 6px;
  color: #111111;
  border: none;
}
.cid-uag2VjF0uj .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #6ec7f2;
  color: #ffffff;
  border: none;
}
.cid-uag2VjF0uj .tab-content {
  position: relative;
  z-index: 1;
}
.cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .list-text {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dashed #6ec7f2;
}
.cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .list-text .mbr-time {
  margin: 0;
}
.cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .list-text .mbr-desc {
  margin: 0;
}
.cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .list {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
  list-style-position: inside;
}
@media (max-width: 768px) {
  .cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .list {
    padding-left: 0;
  }
}
.cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
}
@media (max-width: 768px) {
  .cid-uag2VjF0uj .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
    padding-left: 0;
  }
}
.cid-uag2VjF0uj .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uag2VjF0uj .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-uag2VjF0uj .mbr-time {
  color: #111111;
}
.cid-uag2VjF0uj .mbr-desc {
  color: #111111;
}
.cid-uag2VjF0uj .list {
  color: #111111;
}
.cid-uag2VjF0uj .mbr-tabs-text {
  color: #111111;
}
.cid-tWqOorLJVU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tWqOorLJVU .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWqOorLJVU .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWqOorLJVU .container {
    padding: 0 25px;
  }
}
.cid-tWqOorLJVU .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tWqOorLJVU .title-wrapper {
    padding: 0 25px;
  }
}
.cid-tWqOorLJVU .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tWqOorLJVU .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tWqOorLJVU .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-tWqOorLJVU .item:focus,
.cid-tWqOorLJVU span:focus {
  outline: none;
}
.cid-tWqOorLJVU .item-wrapper {
  position: relative;
}
.cid-tWqOorLJVU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-tWqOorLJVU .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-tWqOorLJVU .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-tWqOorLJVU .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-tWqOorLJVU .embla__button--next,
.cid-tWqOorLJVU .embla__button--prev {
  display: flex;
}
.cid-tWqOorLJVU .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tWqOorLJVU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tWqOorLJVU .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-tWqOorLJVU .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-tWqOorLJVU .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-tWqOorLJVU .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-tWqOorLJVU .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-tWqOorLJVU .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-tWqOorLJVU .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-tWqOorLJVU .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-tWqOorLJVU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tWqOorLJVU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tWqOorLJVU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tWqOorLJVU .mbr-section-title {
  color: #000000;
}
.cid-tWqOorLJVU .mbr-text {
  color: #000000;
}
.cid-tWqOorLJVU .mbr-section-title,
.cid-tWqOorLJVU .mbr-section-btn {
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwfOo84lz P {
  color: #1281fc;
}
.cid-uJwfOo84lz DIV {
  color: #ffffff;
}
.cid-uJwfOo84lz H10 {
  color: #034e75;
}
.cid-uJwfOo84lz .hidden {
  display: none;
}
.cid-uJwfOo84lz .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwfOo84lz .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwfOo84lz .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwfOo84lz .flag {
  background: transparent;
}
.cid-uJwfOo84lz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwfOo84lz .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwfOo84lz #google_translate_element {
  display: none;
}
.cid-uJwfOo84lz .goog-te-banner {
  display: none;
}
.cid-uJwfOo84lz .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwfOo84lz .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwfOo84lz body {
  top: 0px !important;
}
.cid-uJwfOo84lz body body {
  top: 0 !important;
}
.cid-uJwfOo84lz body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwfOo84lz .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwfOo84lz .goog-tooltip {
  display: none !important;
}
.cid-uJwfOo84lz .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwfOo84lz .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwfOo84lz #goog-gt-tt,
.cid-uJwfOo84lz .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwfOo84lz #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwfOo84lz .goog-logo-link {
  display: none !important;
}
.cid-uJwfOo84lz .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwfOo84lz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwfOo84lz div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ugliVEMd7L {
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-ugliVEMd7L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugliVEMd7L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugliVEMd7L .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-ugliVEMd7L .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ugliVEMd7L .container {
    padding: 0 26px;
  }
}
.cid-ugliVEMd7L .title-wrapper {
  padding-top: 35%;
}
.cid-ugliVEMd7L .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugliVEMd7L .title-wrapper .mbr-section-btn {
  margin-bottom: 18px;
}
.cid-ugliVEMd7L .title-wrapper .icon-wrapper a {
  display: inline-flex;
}
.cid-ugliVEMd7L .title-wrapper .icon-wrapper a:hover {
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}
.cid-ugliVEMd7L .title-wrapper .icon-wrapper a .mbr-iconfont {
  font-size: 40px;
  color: #ffffff;
}
.cid-ugliVEMd7L .mbr-section-title {
  color: #ffffff;
}
.cid-ugliVEMd7L .mbr-text {
  color: #ffffff;
}
.cid-ugliVEMd7L .mbr-section-title,
.cid-ugliVEMd7L .icon-wrapper,
.cid-ugliVEMd7L .mbr-section-btn {
  text-align: center;
}
.cid-uglk2nSPdY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uglk2nSPdY .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uglk2nSPdY .form-control,
.cid-uglk2nSPdY .field-input {
  padding: 0.5rem;
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uglk2nSPdY .form-control::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input::-webkit-input-placeholder,
.cid-uglk2nSPdY .form-control::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-uglk2nSPdY .form-control:-moz-placeholder,
.cid-uglk2nSPdY .field-input:-moz-placeholder,
.cid-uglk2nSPdY .form-control:-moz-placeholder,
.cid-uglk2nSPdY .field-input:-moz-placeholder {
  color: #000000;
}
.cid-uglk2nSPdY .form-control:hover,
.cid-uglk2nSPdY .field-input:hover,
.cid-uglk2nSPdY .form-control:focus,
.cid-uglk2nSPdY .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uglk2nSPdY .form-control:hover::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input:hover::-webkit-input-placeholder,
.cid-uglk2nSPdY .form-control:focus::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input:focus::-webkit-input-placeholder,
.cid-uglk2nSPdY .form-control:hover::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input:hover::-webkit-input-placeholder,
.cid-uglk2nSPdY .form-control:focus::-webkit-input-placeholder,
.cid-uglk2nSPdY .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uglk2nSPdY .form-control:hover:-moz-placeholder,
.cid-uglk2nSPdY .field-input:hover:-moz-placeholder,
.cid-uglk2nSPdY .form-control:focus:-moz-placeholder,
.cid-uglk2nSPdY .field-input:focus:-moz-placeholder,
.cid-uglk2nSPdY .form-control:hover:-moz-placeholder,
.cid-uglk2nSPdY .field-input:hover:-moz-placeholder,
.cid-uglk2nSPdY .form-control:focus:-moz-placeholder,
.cid-uglk2nSPdY .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uglk2nSPdY .jq-number__spin:hover,
.cid-uglk2nSPdY .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uglk2nSPdY .jq-number__spin {
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uglk2nSPdY .jq-selectbox li,
.cid-uglk2nSPdY .jq-selectbox li {
  background-color: #9fdbf8;
  color: #000000;
}
.cid-uglk2nSPdY .jq-selectbox li:hover,
.cid-uglk2nSPdY .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-uglk2nSPdY .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uglk2nSPdY .jq-number__spin.minus:hover:after,
.cid-uglk2nSPdY .jq-number__spin.plus:hover:after {
  border-top-color: #9fdbf8;
  border-bottom-color: #9fdbf8;
}
.cid-uglk2nSPdY .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uglk2nSPdY .jq-number__spin.minus:after,
.cid-uglk2nSPdY .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-uglk2nSPdY input::-webkit-clear-button {
  display: none;
}
.cid-uglk2nSPdY input::-webkit-inner-spin-button {
  display: none;
}
.cid-uglk2nSPdY input::-webkit-outer-spin-button {
  display: none;
}
.cid-uglk2nSPdY input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uglk2nSPdY H4 {
  text-align: center;
}
.cid-uglk2nSPdY P {
  text-align: center;
}
.cid-uglnaXeiak {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uglnaXeiak img,
.cid-uglnaXeiak .item-img {
  width: 100%;
}
.cid-uglnaXeiak .item:focus,
.cid-uglnaXeiak span:focus {
  outline: none;
}
.cid-uglnaXeiak .item-wrapper {
  position: relative;
}
.cid-uglnaXeiak .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uglnaXeiak .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uglnaXeiak .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uglnaXeiak .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uglnaXeiak .mbr-section-title {
  color: #232323;
}
.cid-uglnaXeiak .mbr-text,
.cid-uglnaXeiak .mbr-section-btn {
  text-align: left;
}
.cid-uglnaXeiak .item-title {
  text-align: left;
}
.cid-uglnaXeiak .item-subtitle {
  text-align: left;
}
.cid-uglnaXeiak .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uglnaXeiak .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uglnaXeiak .embla__button--next,
.cid-uglnaXeiak .embla__button--prev {
  display: flex;
}
.cid-uglnaXeiak .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uglnaXeiak .embla__button {
    display: none;
  }
}
.cid-uglnaXeiak .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uglnaXeiak .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uglnaXeiak .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uglnaXeiak .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uglnaXeiak .embla__button {
    top: auto;
  }
}
.cid-uglnaXeiak .embla {
  position: relative;
  width: 100%;
}
.cid-uglnaXeiak .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uglnaXeiak .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uglnaXeiak .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uglnaXeiak .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ugln932qr8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugln932qr8 .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ugln932qr8 .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ugln932qr8 .column__one,
.cid-ugln932qr8 .column__two,
.cid-ugln932qr8 .column__three,
.cid-ugln932qr8 .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ugln932qr8 .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ugln932qr8 .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln932qr8 .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugln932qr8 .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln932qr8 .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugln932qr8 .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln932qr8 .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ugln932qr8 .column__two {
  border-bottom-left-radius: 0;
}
.cid-ugln932qr8 .column__three {
  border-bottom-left-radius: 0;
}
.cid-ugln932qr8 .column__four {
  border-bottom-left-radius: 0;
}
.cid-ugln932qr8 .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ugln932qr8 .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ugln932qr8 .pricing {
  padding: 0 20px;
}
.cid-ugln932qr8 .currency {
  vertical-align: top;
}
.cid-ugln932qr8 .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ugln932qr8 .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ugln932qr8 .item__wrapper {
  margin-top: 40px;
}
.cid-ugln932qr8 .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ugln932qr8 .column__one,
  .cid-ugln932qr8 .column__two,
  .cid-ugln932qr8 .column__three,
  .cid-ugln932qr8 .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ugln932qr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugln932qr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglnbGv07o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uglnbGv07o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uglnbGv07o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uglnbGv07o .video-wrapper iframe {
  width: 100%;
}
.cid-uglnbGv07o .mbr-section-title,
.cid-uglnbGv07o .mbr-section-subtitle,
.cid-uglnbGv07o .mbr-text {
  text-align: center;
}
.cid-ugln9M1sZN {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugln9M1sZN .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ugln9M1sZN .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ugln9M1sZN .column__one,
.cid-ugln9M1sZN .column__two,
.cid-ugln9M1sZN .column__three,
.cid-ugln9M1sZN .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ugln9M1sZN .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ugln9M1sZN .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln9M1sZN .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugln9M1sZN .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln9M1sZN .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugln9M1sZN .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugln9M1sZN .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ugln9M1sZN .column__two {
  border-bottom-left-radius: 0;
}
.cid-ugln9M1sZN .column__three {
  border-bottom-left-radius: 0;
}
.cid-ugln9M1sZN .column__four {
  border-bottom-left-radius: 0;
}
.cid-ugln9M1sZN .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ugln9M1sZN .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ugln9M1sZN .pricing {
  padding: 0 20px;
}
.cid-ugln9M1sZN .currency {
  vertical-align: top;
}
.cid-ugln9M1sZN .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ugln9M1sZN .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ugln9M1sZN .item__wrapper {
  margin-top: 40px;
}
.cid-ugln9M1sZN .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ugln9M1sZN .column__one,
  .cid-ugln9M1sZN .column__two,
  .cid-ugln9M1sZN .column__three,
  .cid-ugln9M1sZN .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ugln9M1sZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugln9M1sZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ugOVhFxI5T {
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-ugOVhFxI5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOVhFxI5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOVhFxI5T .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-ugOVhFxI5T .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-ugOVhFxI5T .container {
    padding: 0 26px;
  }
}
.cid-ugOVhFxI5T .title-wrapper {
  padding-top: 35%;
}
.cid-ugOVhFxI5T .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ugOVhFxI5T .title-wrapper .mbr-section-btn {
  margin-bottom: 18px;
}
.cid-ugOVhFxI5T .title-wrapper .icon-wrapper a {
  display: inline-flex;
}
.cid-ugOVhFxI5T .title-wrapper .icon-wrapper a:hover {
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}
.cid-ugOVhFxI5T .title-wrapper .icon-wrapper a .mbr-iconfont {
  font-size: 40px;
  color: #ffffff;
}
.cid-ugOVhFxI5T .mbr-section-title {
  color: #ffffff;
}
.cid-ugOVhFxI5T .mbr-text {
  color: #ffffff;
}
.cid-ugOVhFxI5T .mbr-section-title,
.cid-ugOVhFxI5T .icon-wrapper,
.cid-ugOVhFxI5T .mbr-section-btn {
  text-align: center;
}
.cid-ugOVhG2SAG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ugOVhG2SAG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ugOVhG2SAG .form-control,
.cid-ugOVhG2SAG .field-input {
  padding: 0.5rem;
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ugOVhG2SAG .form-control::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input::-webkit-input-placeholder,
.cid-ugOVhG2SAG .form-control::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-ugOVhG2SAG .form-control:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:-moz-placeholder,
.cid-ugOVhG2SAG .form-control:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:-moz-placeholder {
  color: #000000;
}
.cid-ugOVhG2SAG .form-control:hover,
.cid-ugOVhG2SAG .field-input:hover,
.cid-ugOVhG2SAG .form-control:focus,
.cid-ugOVhG2SAG .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-ugOVhG2SAG .form-control:hover::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input:hover::-webkit-input-placeholder,
.cid-ugOVhG2SAG .form-control:focus::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input:focus::-webkit-input-placeholder,
.cid-ugOVhG2SAG .form-control:hover::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input:hover::-webkit-input-placeholder,
.cid-ugOVhG2SAG .form-control:focus::-webkit-input-placeholder,
.cid-ugOVhG2SAG .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-ugOVhG2SAG .form-control:hover:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:hover:-moz-placeholder,
.cid-ugOVhG2SAG .form-control:focus:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:focus:-moz-placeholder,
.cid-ugOVhG2SAG .form-control:hover:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:hover:-moz-placeholder,
.cid-ugOVhG2SAG .form-control:focus:-moz-placeholder,
.cid-ugOVhG2SAG .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-ugOVhG2SAG .jq-number__spin:hover,
.cid-ugOVhG2SAG .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-ugOVhG2SAG .jq-number__spin {
  background-color: #9fdbf8;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ugOVhG2SAG .jq-selectbox li,
.cid-ugOVhG2SAG .jq-selectbox li {
  background-color: #9fdbf8;
  color: #000000;
}
.cid-ugOVhG2SAG .jq-selectbox li:hover,
.cid-ugOVhG2SAG .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-ugOVhG2SAG .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ugOVhG2SAG .jq-number__spin.minus:hover:after,
.cid-ugOVhG2SAG .jq-number__spin.plus:hover:after {
  border-top-color: #9fdbf8;
  border-bottom-color: #9fdbf8;
}
.cid-ugOVhG2SAG .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ugOVhG2SAG .jq-number__spin.minus:after,
.cid-ugOVhG2SAG .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-ugOVhG2SAG input::-webkit-clear-button {
  display: none;
}
.cid-ugOVhG2SAG input::-webkit-inner-spin-button {
  display: none;
}
.cid-ugOVhG2SAG input::-webkit-outer-spin-button {
  display: none;
}
.cid-ugOVhG2SAG input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-ugOVhG2SAG H4 {
  text-align: center;
}
.cid-ugOVhG2SAG P {
  text-align: center;
}
.cid-ugOVhGynES {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugOVhGynES img,
.cid-ugOVhGynES .item-img {
  width: 100%;
}
.cid-ugOVhGynES .item:focus,
.cid-ugOVhGynES span:focus {
  outline: none;
}
.cid-ugOVhGynES .item-wrapper {
  position: relative;
}
.cid-ugOVhGynES .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugOVhGynES .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugOVhGynES .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-ugOVhGynES .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugOVhGynES .mbr-section-title {
  color: #232323;
}
.cid-ugOVhGynES .mbr-text,
.cid-ugOVhGynES .mbr-section-btn {
  text-align: left;
}
.cid-ugOVhGynES .item-title {
  text-align: left;
}
.cid-ugOVhGynES .item-subtitle {
  text-align: left;
}
.cid-ugOVhGynES .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-ugOVhGynES .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-ugOVhGynES .embla__button--next,
.cid-ugOVhGynES .embla__button--prev {
  display: flex;
}
.cid-ugOVhGynES .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-ugOVhGynES .embla__button {
    display: none;
  }
}
.cid-ugOVhGynES .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugOVhGynES .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugOVhGynES .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugOVhGynES .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugOVhGynES .embla__button {
    top: auto;
  }
}
.cid-ugOVhGynES .embla {
  position: relative;
  width: 100%;
}
.cid-ugOVhGynES .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugOVhGynES .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugOVhGynES .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugOVhGynES .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-ugOVhHtLYp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugOVhHtLYp .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ugOVhHtLYp .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ugOVhHtLYp .column__one,
.cid-ugOVhHtLYp .column__two,
.cid-ugOVhHtLYp .column__three,
.cid-ugOVhHtLYp .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ugOVhHtLYp .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ugOVhHtLYp .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhHtLYp .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugOVhHtLYp .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhHtLYp .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugOVhHtLYp .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhHtLYp .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ugOVhHtLYp .column__two {
  border-bottom-left-radius: 0;
}
.cid-ugOVhHtLYp .column__three {
  border-bottom-left-radius: 0;
}
.cid-ugOVhHtLYp .column__four {
  border-bottom-left-radius: 0;
}
.cid-ugOVhHtLYp .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ugOVhHtLYp .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ugOVhHtLYp .pricing {
  padding: 0 20px;
}
.cid-ugOVhHtLYp .currency {
  vertical-align: top;
}
.cid-ugOVhHtLYp .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ugOVhHtLYp .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ugOVhHtLYp .item__wrapper {
  margin-top: 40px;
}
.cid-ugOVhHtLYp .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ugOVhHtLYp .column__one,
  .cid-ugOVhHtLYp .column__two,
  .cid-ugOVhHtLYp .column__three,
  .cid-ugOVhHtLYp .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ugOVhHtLYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOVhHtLYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOVhI80B9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugOVhI80B9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOVhI80B9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOVhI80B9 .video-wrapper iframe {
  width: 100%;
}
.cid-ugOVhI80B9 .mbr-section-title,
.cid-ugOVhI80B9 .mbr-section-subtitle,
.cid-ugOVhI80B9 .mbr-text {
  text-align: center;
}
.cid-ugOVhIxcy6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugOVhIxcy6 .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-ugOVhIxcy6 .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-ugOVhIxcy6 .column__one,
.cid-ugOVhIxcy6 .column__two,
.cid-ugOVhIxcy6 .column__three,
.cid-ugOVhIxcy6 .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-ugOVhIxcy6 .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-ugOVhIxcy6 .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhIxcy6 .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugOVhIxcy6 .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhIxcy6 .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-ugOVhIxcy6 .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-ugOVhIxcy6 .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-ugOVhIxcy6 .column__two {
  border-bottom-left-radius: 0;
}
.cid-ugOVhIxcy6 .column__three {
  border-bottom-left-radius: 0;
}
.cid-ugOVhIxcy6 .column__four {
  border-bottom-left-radius: 0;
}
.cid-ugOVhIxcy6 .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-ugOVhIxcy6 .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-ugOVhIxcy6 .pricing {
  padding: 0 20px;
}
.cid-ugOVhIxcy6 .currency {
  vertical-align: top;
}
.cid-ugOVhIxcy6 .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-ugOVhIxcy6 .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-ugOVhIxcy6 .item__wrapper {
  margin-top: 40px;
}
.cid-ugOVhIxcy6 .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-ugOVhIxcy6 .column__one,
  .cid-ugOVhIxcy6 .column__two,
  .cid-ugOVhIxcy6 .column__three,
  .cid-ugOVhIxcy6 .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-ugOVhIxcy6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOVhIxcy6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOVhJ7sR6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-ugOVhJ7sR6 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-ugOVhJ7sR6 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ugOVhJ7sR6 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ugOVhJ7sR6 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ugOVhJ7sR6 .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-ugOVhJ7sR6 .social_icons {
  text-align: center;
}
.cid-ugOVhJ7sR6 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ugOVhJ7sR6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ugOVhJ7sR6 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ugOVhJ7sR6 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ugOVhJ7sR6 .footer_timework {
    margin-top: 50px;
  }
  .cid-ugOVhJ7sR6 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ujuikND7Ek.popup-builder {
  background-color: #ffffff;
}
.cid-ujuikND7Ek.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujuikND7Ek.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujuikND7Ek .modal-content,
.cid-ujuikND7Ek .modal-dialog {
  height: auto;
}
.cid-ujuikND7Ek .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujuikND7Ek .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujuikND7Ek .form-wrapper .mbr-form .form-group,
  .cid-ujuikND7Ek .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujuikND7Ek .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujuikND7Ek .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujuikND7Ek .mbr-text {
  text-align: center;
}
.cid-ujuikND7Ek .pt-0 {
  padding-top: 0 !important;
}
.cid-ujuikND7Ek .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujuikND7Ek .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujuikND7Ek .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujuikND7Ek .modal-open {
  overflow: hidden;
}
.cid-ujuikND7Ek .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujuikND7Ek .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujuikND7Ek .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujuikND7Ek .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujuikND7Ek .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujuikND7Ek .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujuikND7Ek .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujuikND7Ek .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujuikND7Ek .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujuikND7Ek .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujuikND7Ek .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujuikND7Ek .modal-backdrop.show {
  opacity: .5;
}
.cid-ujuikND7Ek .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujuikND7Ek .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikND7Ek .modal-header {
    padding: 1rem;
  }
}
.cid-ujuikND7Ek .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujuikND7Ek .modal-header .close svg {
  fill: #353535;
}
.cid-ujuikND7Ek .modal-header .close:hover {
  opacity: 1;
}
.cid-ujuikND7Ek .modal-header .close:focus {
  outline: none;
}
.cid-ujuikND7Ek .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujuikND7Ek .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujuikND7Ek .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikND7Ek .modal-body {
    padding: 1rem;
  }
}
.cid-ujuikND7Ek .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujuikND7Ek .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikND7Ek .modal-footer {
    padding: 1rem;
  }
}
.cid-ujuikND7Ek .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujuikND7Ek .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujuikND7Ek .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujuikND7Ek .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujuikND7Ek .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujuikND7Ek .modal-lg,
  .cid-ujuikND7Ek .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujuikND7Ek .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujuikND7Ek .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujuikND7Ek .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujuikND7Ek .form-group {
  margin-bottom: 1rem;
}
.cid-ujuikND7Ek .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujuikND7Ek .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujuikND7Ek .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujuikND7Ek .mbr-section-btn {
  margin: 0;
}
.cid-ujuikND7Ek .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJwevsE4Wc P {
  color: #1281fc;
}
.cid-uJwevsE4Wc DIV {
  color: #ffffff;
}
.cid-uJwevsE4Wc H10 {
  color: #034e75;
}
.cid-uJwevsE4Wc .hidden {
  display: none;
}
.cid-uJwevsE4Wc .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwevsE4Wc .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwevsE4Wc .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwevsE4Wc .flag {
  background: transparent;
}
.cid-uJwevsE4Wc .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwevsE4Wc .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwevsE4Wc #google_translate_element {
  display: none;
}
.cid-uJwevsE4Wc .goog-te-banner {
  display: none;
}
.cid-uJwevsE4Wc .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwevsE4Wc .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwevsE4Wc body {
  top: 0px !important;
}
.cid-uJwevsE4Wc body body {
  top: 0 !important;
}
.cid-uJwevsE4Wc body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwevsE4Wc .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwevsE4Wc .goog-tooltip {
  display: none !important;
}
.cid-uJwevsE4Wc .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwevsE4Wc .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwevsE4Wc #goog-gt-tt,
.cid-uJwevsE4Wc .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwevsE4Wc #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwevsE4Wc .goog-logo-link {
  display: none !important;
}
.cid-uJwevsE4Wc .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwevsE4Wc div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwevsE4Wc div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ugUETxDavW {
  padding-top: 6rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #9fdbf8;
}
.cid-ugUETxDavW .circle-wrap {
  position: absolute;
  top: -22%;
  right: -10%;
  width: 1500px;
  height: 1500px;
  border-radius: 100%;
  border: 210px solid #ffffff;
}
.cid-ugUETxDavW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugUETxDavW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ugUETxDavW .container {
    padding: 0 15px;
  }
}
.cid-ugUETxDavW .row {
  position: relative;
  z-index: 1;
}
.cid-ugUETxDavW .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ugUETxDavW .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ugUETxDavW .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-ugUETxDavW .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-ugUETxDavW .image-wrapper {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-ugUETxDavW .image-wrapper {
    padding: 0;
  }
}
.cid-ugUETxDavW .image-wrapper img {
  height: 408px;
  width: 65%;
  object-fit: cover;
  transform: skewX(-10deg);
}
@media (max-width: 992px) {
  .cid-ugUETxDavW .image-wrapper img {
    width: 100%;
    transform: none;
  }
}
.cid-ugUETxDavW .image-wrapper img:nth-child(2) {
  margin: 48px 0 0 35%;
}
@media (max-width: 992px) {
  .cid-ugUETxDavW .image-wrapper img:nth-child(2) {
    margin: 48px 0 0 0;
  }
}
.cid-ugUETxDavW .mbr-section-title {
  color: #30262b;
}
.cid-ugUETxDavW .mbr-text {
  color: #30262b;
}
.cid-ugUUnGqpGX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugUUnGqpGX .mbr-section-title,
.cid-ugUUnGqpGX .mbr-section-subtitle {
  text-align: center;
}
.cid-ugUUnGqpGX .card {
  border-radius: 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #47b5ed;
}
@media (min-width: 992px) {
  .cid-ugUUnGqpGX .right {
    padding-right: 71px;
  }
  .cid-ugUUnGqpGX .left {
    padding-left: 71px;
  }
}
.cid-ugUUnGqpGX .card-title {
  letter-spacing: .035em;
  color: #000000;
}
.cid-ugUUnGqpGX .mbr-section-subtitle,
.cid-ugUUnGqpGX .mbr-text {
  color: #9A948D;
}
.cid-ugUUnGqpGX .cost {
  text-align: right;
  color: #22a5e5;
}
.cid-ugUUnGqpGX .mbr-section-title {
  color: #47b5ed;
}
.cid-ugUUnGqpGX .mbr-section-subtitle {
  color: #111111;
}
.cid-uqPdJDBpjA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #22a5e5;
}
.cid-uqPdJDBpjA .head_info {
  text-align: left;
  margin-bottom: 61px;
}
.cid-uqPdJDBpjA .head_info .mbr-section-title {
  margin-bottom: 20px;
  color: #6ec7f2;
}
.cid-uqPdJDBpjA .head_info .mbr-subtitle {
  color: #ff6666;
  margin-bottom: 10px;
}
.cid-uqPdJDBpjA .head_info .mbr-text {
  margin-top: 20px;
  margin-bottom: 0;
  color: #47b5ed;
}
.cid-uqPdJDBpjA .head_info .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-uqPdJDBpjA .head_info .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-uqPdJDBpjA .head_info .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uqPdJDBpjA .head_info .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uqPdJDBpjA .head_info .mbr-section-btn .btn-primary:hover {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
}
.cid-uqPdJDBpjA .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  background-color: #9fdbf8;
  text-align: center;
  border-radius: 8px;
  padding: 42px 15px 55px;
}
.cid-uqPdJDBpjA .plan .plan-title {
  color: #6ec7f2;
  margin-bottom: 32px;
}
.cid-uqPdJDBpjA .plan .icon_box {
  display: block;
  text-align: center;
  padding-bottom: 17.5px;
}
.cid-uqPdJDBpjA .plan .icon_box .ico1 {
  font-size: 79.5px;
  display: block;
  position: relative;
  color: #ff6666;
}
.cid-uqPdJDBpjA .plan .plan-price .mbr-text {
  color: #6ec7f2;
  margin-bottom: 0;
}
.cid-uqPdJDBpjA .plan .plan-list {
  margin-bottom: 15px;
}
.cid-uqPdJDBpjA .plan .plan-list .list-group {
  color: #47b5ed;
}
.cid-uqPdJDBpjA .plan .plan-list .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 5px 0;
}
.cid-uqPdJDBpjA .plan .plan-list .list-group-item:last-child {
  border-radius: 8px;
}
.cid-uqPdJDBpjA .plan .mbr-section-btn {
  margin-top: 17.5px;
  margin-bottom: 42px;
}
.cid-uqPdJDBpjA .plan .mbr-section-btn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  overflow: hidden;
}
.cid-uqPdJDBpjA .plan .mbr-section-btn .btn::after {
  background-color: #656565;
  content: "";
  height: 150px;
  left: -75px;
  position: absolute;
  top: -60px;
  transform: rotate(35deg);
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  width: 40px;
  opacity: 0;
  outline: none;
  text-decoration: none;
}
.cid-uqPdJDBpjA .plan .mbr-section-btn .btn:hover::after {
  left: 250px;
  opacity: 0.8;
}
.cid-uqPdJDBpjA .plan .mbr-section-btn .btn-primary:hover {
  background-color: #28303f !important;
  color: #40b0bf !important;
}
.cid-uqPdJDBpjA .plan:hover .mbr-iconfont {
  -webkit-animation-name: pulse-shrink;
  animation-name: pulse-shrink;
  -webkit-animation-duration: .35s;
  animation-duration: .35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
@-webkit-keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@keyframes pulse-shrink {
  to {
    transform: scale(0.9);
  }
}
@media (max-width: 768px) {
  .cid-uqPdJDBpjA * {
    text-align: center;
  }
}
.cid-uqPdJDBpjA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPdJDBpjA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPdJDBpjA .head_info .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uqPdJDBpjA .head_info .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uqPdJDBpjA .plan .plan-title {
  color: #ffffff;
}
.cid-uqPdJDBpjA .plan .plan-list .list-group,
.cid-uqPdJDBpjA .plan .mbr-section-btn {
  color: #ffffff;
}
.cid-uqPdJDBpjA .plan .plan-price .mbr-text {
  color: #ffffff;
}
.cid-uqPdJDBpjA .head_info .mbr-subtitle {
  color: #9fdbf8;
}
.cid-uNlGVZYNPi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNlGVZYNPi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNlGVZYNPi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugV6TrelXN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugV6TrelXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugV6TrelXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugV6TrelXN .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-ugV6TrelXN .bg-facebook:hover {
  background: #0b60cb;
}
.cid-ugV6TrelXN .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-ugV6TrelXN .bg-instagram:hover {
  background: #bd005c;
}
.cid-ugV6TrelXN .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-ugV6TrelXN [class^="socicon-"]:before,
.cid-ugV6TrelXN [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
#custom-html-w1 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w1 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w1 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w1 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uqKQJrmHm2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKQJrmHm2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKQJrmHm2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKQJrmHm2 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKQJrmHm2 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKQJrmHm2 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqKQJrmHm2 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKQJrmHm2 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKQJrmHm2 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKQJrmHm2 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKQJrmHm2 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKQJrmHm2 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKQJrmHm2 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKQJrmHm2 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKQJrmHm2 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKQJrmHm2 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKQJrmHm2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQJrmHm2 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQJrmHm2 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweb1gsFz P {
  color: #1281fc;
}
.cid-uJweb1gsFz DIV {
  color: #ffffff;
}
.cid-uJweb1gsFz H10 {
  color: #034e75;
}
.cid-uJweb1gsFz .hidden {
  display: none;
}
.cid-uJweb1gsFz .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweb1gsFz .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweb1gsFz .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweb1gsFz .flag {
  background: transparent;
}
.cid-uJweb1gsFz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweb1gsFz .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweb1gsFz #google_translate_element {
  display: none;
}
.cid-uJweb1gsFz .goog-te-banner {
  display: none;
}
.cid-uJweb1gsFz .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweb1gsFz .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweb1gsFz body {
  top: 0px !important;
}
.cid-uJweb1gsFz body body {
  top: 0 !important;
}
.cid-uJweb1gsFz body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweb1gsFz .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweb1gsFz .goog-tooltip {
  display: none !important;
}
.cid-uJweb1gsFz .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweb1gsFz .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweb1gsFz #goog-gt-tt,
.cid-uJweb1gsFz .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweb1gsFz #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweb1gsFz .goog-logo-link {
  display: none !important;
}
.cid-uJweb1gsFz .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweb1gsFz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweb1gsFz div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ujuaBDfCsC {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujuaBDfCsC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujuaBDfCsC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujuaBDfCsC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ujuaBDfCsC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ujuaBDfCsC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ujuelz2sHq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujuelz2sHq .mbr-section-subtitle {
  text-align: center;
}
.cid-ujuelz2sHq .mbr-text {
  text-align: left;
}
.cid-ujuayt8jmr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ujuayt8jmr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujuayt8jmr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ujuikJb12R.popup-builder {
  background-color: #ffffff;
}
.cid-ujuikJb12R.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujuikJb12R.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujuikJb12R .modal-content,
.cid-ujuikJb12R .modal-dialog {
  height: auto;
}
.cid-ujuikJb12R .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujuikJb12R .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujuikJb12R .form-wrapper .mbr-form .form-group,
  .cid-ujuikJb12R .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujuikJb12R .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujuikJb12R .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujuikJb12R .mbr-text {
  text-align: center;
}
.cid-ujuikJb12R .pt-0 {
  padding-top: 0 !important;
}
.cid-ujuikJb12R .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujuikJb12R .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujuikJb12R .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujuikJb12R .modal-open {
  overflow: hidden;
}
.cid-ujuikJb12R .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujuikJb12R .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujuikJb12R .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujuikJb12R .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujuikJb12R .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujuikJb12R .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujuikJb12R .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujuikJb12R .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujuikJb12R .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujuikJb12R .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujuikJb12R .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujuikJb12R .modal-backdrop.show {
  opacity: .5;
}
.cid-ujuikJb12R .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujuikJb12R .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikJb12R .modal-header {
    padding: 1rem;
  }
}
.cid-ujuikJb12R .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujuikJb12R .modal-header .close svg {
  fill: #353535;
}
.cid-ujuikJb12R .modal-header .close:hover {
  opacity: 1;
}
.cid-ujuikJb12R .modal-header .close:focus {
  outline: none;
}
.cid-ujuikJb12R .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-ujuikJb12R .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujuikJb12R .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikJb12R .modal-body {
    padding: 1rem;
  }
}
.cid-ujuikJb12R .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujuikJb12R .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujuikJb12R .modal-footer {
    padding: 1rem;
  }
}
.cid-ujuikJb12R .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujuikJb12R .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujuikJb12R .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujuikJb12R .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujuikJb12R .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ujuikJb12R .modal-lg,
  .cid-ujuikJb12R .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujuikJb12R .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujuikJb12R .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujuikJb12R .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ujuikJb12R .form-group {
  margin-bottom: 1rem;
}
.cid-ujuikJb12R .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujuikJb12R .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujuikJb12R .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujuikJb12R .mbr-section-btn {
  margin: 0;
}
.cid-ujuikJb12R .mbr-section-btn .btn {
  margin: 0;
}
.cid-uJwerLUK4m P {
  color: #1281fc;
}
.cid-uJwerLUK4m DIV {
  color: #ffffff;
}
.cid-uJwerLUK4m H10 {
  color: #034e75;
}
.cid-uJwerLUK4m .hidden {
  display: none;
}
.cid-uJwerLUK4m .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwerLUK4m .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwerLUK4m .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwerLUK4m .flag {
  background: transparent;
}
.cid-uJwerLUK4m .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwerLUK4m .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwerLUK4m #google_translate_element {
  display: none;
}
.cid-uJwerLUK4m .goog-te-banner {
  display: none;
}
.cid-uJwerLUK4m .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwerLUK4m .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwerLUK4m body {
  top: 0px !important;
}
.cid-uJwerLUK4m body body {
  top: 0 !important;
}
.cid-uJwerLUK4m body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwerLUK4m .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwerLUK4m .goog-tooltip {
  display: none !important;
}
.cid-uJwerLUK4m .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwerLUK4m .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwerLUK4m #goog-gt-tt,
.cid-uJwerLUK4m .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwerLUK4m #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwerLUK4m .goog-logo-link {
  display: none !important;
}
.cid-uJwerLUK4m .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwerLUK4m div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwerLUK4m div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ukUcsG6qwW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukUcsG6qwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukUcsG6qwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukUcsG6qwW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ukUcsG6qwW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-ukUcsG6qwW .container {
    padding: 0 24px;
  }
}
.cid-ukUcsG6qwW .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-ukUcsG6qwW .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #f6f6f6;
  background-color: #f6f6f6;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #f6f6f6;
  }
}
.cid-ukUcsG6qwW .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-ukUcsG6qwW .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-ukUcsG6qwW .mbr-section-title {
  color: #18212d;
}
.cid-ukUcsG6qwW .mbr-desc,
.cid-ukUcsG6qwW .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-ukUcsG6qwW .mbr-text,
.cid-ukUcsG6qwW .text-wrapper {
  color: #353535;
  text-align: center;
}
.cid-ukUcsG6qwW .mbr-rating {
  color: #EFCC4E;
}
.cid-ukUcsG6qwW .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-ukUcsG6qwW .mbr-section-title,
.cid-ukUcsG6qwW .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-ukUcsG6qwW .mbr-rating,
.cid-ukUcsG6qwW .rating-wrapper,
.cid-ukUcsG6qwW .people-wrapper {
  text-align: center;
}
.cid-ukUaaiY8Ia {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ukUaaiY8Ia .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukUaaiY8Ia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukUaaiY8Ia .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ukUaaiY8Ia .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ukUaaiY8Ia .container {
    padding: 0 16px;
  }
}
.cid-ukUaaiY8Ia .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ukUaaiY8Ia .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-ukUaaiY8Ia .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukUaaiY8Ia .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ukUaaiY8Ia .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-ukUaaiY8Ia .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ukUaaiY8Ia .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukUaaiY8Ia .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-ukUaaiY8Ia .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-ukUaaiY8Ia .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-ukUaaiY8Ia .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ukUaaiY8Ia .mbr-desc {
  color: #08323C;
}
.cid-ukUaaiY8Ia .mbr-text {
  color: #08323C;
  text-align: center;
}
.cid-ukUaaiY8Ia .mbr-desc,
.cid-ukUaaiY8Ia .mbr-section-btn {
  text-align: center;
}
.cid-ukZ9TikH0w {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ukZ9TikH0w .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukZ9TikH0w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukZ9TikH0w .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-ukZ9TikH0w .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ukZ9TikH0w .container {
    padding: 0 16px;
  }
}
.cid-ukZ9TikH0w .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-ukZ9TikH0w .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .cid-ukZ9TikH0w .text-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukZ9TikH0w .text-wrapper .mbr-desc {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ukZ9TikH0w .text-wrapper .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-ukZ9TikH0w .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-ukZ9TikH0w .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukZ9TikH0w .video-block .video-wrapper iframe {
  border-radius: 16px;
}
.cid-ukZ9TikH0w .video-block .video-wrapper .app-video-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}
.cid-ukZ9TikH0w .video-block .video-wrapper .app-video-wrapper::before {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  color: #ffffff;
  background-color: #08323c;
  text-shadow: none;
  font-size: 20px;
  border-radius: 100%;
  top: auto;
  bottom: 20px;
  left: 60px;
}
.cid-ukZ9TikH0w .mbr-section-title {
  color: #08323C;
  text-align: center;
}
.cid-ukZ9TikH0w .mbr-desc {
  color: #08323C;
}
.cid-ukZ9TikH0w .mbr-text {
  color: #08323C;
  text-align: center;
}
.cid-ukZ9TikH0w .mbr-desc,
.cid-ukZ9TikH0w .mbr-section-btn {
  text-align: center;
}
.cid-uNcDWZULKs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDWZULKs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDWZULKs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDWZULKs .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDWZULKs .currentcost {
  color: #232323;
}
.cid-uNcDWZULKs .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDWZULKs .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDWZULKs .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDWZULKs .text-box {
    padding: 1rem;
  }
}
.cid-uNcDWZULKs .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-vz .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vz .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vz .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vz .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uqKR89kjKU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKR89kjKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKR89kjKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKR89kjKU .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKR89kjKU .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKR89kjKU .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqKR89kjKU .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKR89kjKU .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKR89kjKU .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKR89kjKU .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKR89kjKU .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKR89kjKU .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKR89kjKU .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKR89kjKU .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKR89kjKU .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKR89kjKU .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKR89kjKU .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKR89kjKU .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKR89kjKU .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwexHcy13 P {
  color: #1281fc;
}
.cid-uJwexHcy13 DIV {
  color: #ffffff;
}
.cid-uJwexHcy13 H10 {
  color: #034e75;
}
.cid-uJwexHcy13 .hidden {
  display: none;
}
.cid-uJwexHcy13 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwexHcy13 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwexHcy13 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwexHcy13 .flag {
  background: transparent;
}
.cid-uJwexHcy13 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwexHcy13 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwexHcy13 #google_translate_element {
  display: none;
}
.cid-uJwexHcy13 .goog-te-banner {
  display: none;
}
.cid-uJwexHcy13 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwexHcy13 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwexHcy13 body {
  top: 0px !important;
}
.cid-uJwexHcy13 body body {
  top: 0 !important;
}
.cid-uJwexHcy13 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwexHcy13 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwexHcy13 .goog-tooltip {
  display: none !important;
}
.cid-uJwexHcy13 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwexHcy13 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwexHcy13 #goog-gt-tt,
.cid-uJwexHcy13 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwexHcy13 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwexHcy13 .goog-logo-link {
  display: none !important;
}
.cid-uJwexHcy13 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwexHcy13 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwexHcy13 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-ulNpSUnUYn {
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-ulNpSUnUYn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulNpSUnUYn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulNpSUnUYn .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-ulNpSUnUYn .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-ulNpSUnUYn .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-ulNpSUnUYn .mbr-text {
  color: #ffffff;
}
.cid-ulNpSUnUYn .card {
  padding-bottom: 1.5rem;
}
.cid-ulNpSUnUYn .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ulNpSUnUYn .item-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-ulNpSUnUYn .item-wrapper .card-title {
  color: #ffffff;
}
.cid-uuLWyT3mD0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uuLWyT3mD0::before {
  content: '';
  position: absolute;
  top: 0;
  right: 4rem;
  width: 240px;
  height: 240px;
  border-radius: 100%;
  background-image: linear-gradient(180deg, #6ec7f2 -10%, transparent 70%);
}
.cid-uuLWyT3mD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuLWyT3mD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uuLWyT3mD0 .container {
    padding: 0 16px;
  }
}
.cid-uuLWyT3mD0 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uuLWyT3mD0 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uuLWyT3mD0 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuLWyT3mD0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uuLWyT3mD0 .mbr-text {
  color: #000000;
}
.cid-uuLWyT3mD0 .mbr-text,
.cid-uuLWyT3mD0 .icon-wrapper {
  text-align: center;
}
.cid-ulNqLqGhku {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ulNqLqGhku .mbr-fallback-image.disabled {
  display: none;
}
.cid-ulNqLqGhku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ulNqLqGhku .item-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ulNqLqGhku .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ulNqLqGhku .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ulNqLqGhku .card {
    margin-bottom: 2rem;
  }
  .cid-ulNqLqGhku .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-ulNqLqGhku .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ulNqLqGhku .mbr-text,
.cid-ulNqLqGhku .mbr-section-btn {
  text-align: center;
}
.cid-ulNqLqGhku .card-title,
.cid-ulNqLqGhku .card-box {
  text-align: center;
}
.cid-ummU3yZ1mJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ummU3yZ1mJ .card-wrapper {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 15px 50px 10px rgba(179, 179, 179, 0.6);
}
.cid-ummU3yZ1mJ .card-wrapper:hover {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}
.cid-ummU3yZ1mJ .card-wrapper:hover .ico2 {
  color: #6ec7f2 !important;
}
.cid-ummU3yZ1mJ .ico2 {
  color: #47b5ed !important;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.cid-ummU3yZ1mJ .text-info:hover {
  color: inherit !important;
}
.cid-ummU3yZ1mJ .card-box {
  padding: 0rem 1rem;
}
.cid-ummU3yZ1mJ .ico1 {
  font-size: 3rem !important;
}
.cid-ummU3yZ1mJ h3,
.cid-ummU3yZ1mJ h4 {
  padding: 0;
  margin: 0;
}
.cid-ummU3yZ1mJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ummU3yZ1mJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utX0tVquZN {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffcd9f;
  background: linear-gradient(90deg, #ffcd9f, #4f87fb);
}
.cid-utX0tVquZN .plan-body .btn-bgr {
  z-index: 0;
}
.cid-utX0tVquZN .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-utX0tVquZN .list-group-item {
  padding: .75rem 0rem;
}
.cid-utX0tVquZN .plan-subtitle {
  color: #ffffff;
}
.cid-utX0tVquZN .mbr-text {
  margin: 10px 0 0 0;
  color: #ffe161;
}
.cid-utX0tVquZN .nav-tabs {
  border: none !important;
}
.cid-utX0tVquZN .nav-tabs .btn {
  background: transparent !important;
  position: relative;
}
.cid-utX0tVquZN .nav-tabs .btn:not(:focus):not(:hover):not(.active) {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.cid-utX0tVquZN .nav-tabs .btn.active,
.cid-utX0tVquZN .nav-tabs .btn:hover {
  background: #47b5ed !important;
  color: #ffffff !important;
  border-color: #47b5ed !important;
}
.cid-utX0tVquZN .nav-tabs .btn.active:after {
  animation: none;
}
.cid-utX0tVquZN .nav-tabs .btn:after {
  content: '';
  border: 0px solid;
  border-color: inherit;
  border-radius: inherit;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.cid-utX0tVquZN .nav-tabs .btn:hover:after {
  border-width: 1px;
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-utX0tVquZN .price-term .term {
  display: inline-block;
  background: #9fdbf8;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-utX0tVquZN .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-utX0tVquZN .plan .mbr-overlay {
  background: #47b5ed;
  opacity: 0.8;
}
.cid-utX0tVquZN .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
}
.cid-utX0tVquZN .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-utX0tVquZN .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-utX0tVquZN .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #ffffff;
}
.cid-utX0tVquZN .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-utX0tVquZN .plan .plan-body {
  position: relative;
  border-top: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-utX0tVquZN .plan {
    margin-bottom: 30px;
  }
}
.cid-utX0tVquZN .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-utX0tVquZN .price-figure {
    font-size: 4.25rem;
  }
}
.cid-utX0tVquZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-utX0tVquZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utX0tVquZN .plan-price .price-figure {
  text-align: center;
}
.cid-unOoQiz9nx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unOoQiz9nx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-unOoQiz9nx form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-unOoQiz9nx form.mbr-form {
    padding: 3rem 2rem;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-unOoQiz9nx form.mbr-form {
    padding: 1rem;
  }
}
.cid-unOoQiz9nx form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-unOoQiz9nx form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-unOoQiz9nx H4 {
  text-align: center;
}
.cid-unOoQiz9nx P {
  text-align: center;
}
.cid-uqKQVIxg7g {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKQVIxg7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKQVIxg7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKQVIxg7g .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKQVIxg7g .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKQVIxg7g .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqKQVIxg7g .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKQVIxg7g .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKQVIxg7g .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKQVIxg7g .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKQVIxg7g .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKQVIxg7g .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKQVIxg7g .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKQVIxg7g .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKQVIxg7g .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKQVIxg7g .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKQVIxg7g .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQVIxg7g .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQVIxg7g .item-text {
  color: #ffffff;
  text-align: center;
}
#custom-html-w7 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w7 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w7 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w7 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwdZtRN95 P {
  color: #1281fc;
}
.cid-uJwdZtRN95 DIV {
  color: #ffffff;
}
.cid-uJwdZtRN95 H10 {
  color: #034e75;
}
.cid-uJwdZtRN95 .hidden {
  display: none;
}
.cid-uJwdZtRN95 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwdZtRN95 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwdZtRN95 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwdZtRN95 .flag {
  background: transparent;
}
.cid-uJwdZtRN95 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwdZtRN95 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwdZtRN95 #google_translate_element {
  display: none;
}
.cid-uJwdZtRN95 .goog-te-banner {
  display: none;
}
.cid-uJwdZtRN95 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwdZtRN95 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwdZtRN95 body {
  top: 0px !important;
}
.cid-uJwdZtRN95 body body {
  top: 0 !important;
}
.cid-uJwdZtRN95 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwdZtRN95 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwdZtRN95 .goog-tooltip {
  display: none !important;
}
.cid-uJwdZtRN95 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwdZtRN95 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwdZtRN95 #goog-gt-tt,
.cid-uJwdZtRN95 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwdZtRN95 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwdZtRN95 .goog-logo-link {
  display: none !important;
}
.cid-uJwdZtRN95 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwdZtRN95 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwdZtRN95 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-upqF9R8ws3 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-upqF9R8ws3 .title__block {
  padding-bottom: 40px;
}
.cid-upqF9R8ws3 .mbr-section-title {
  margin-bottom: 25px;
}
.cid-upqF9R8ws3 .mbr-section-title b,
.cid-upqF9R8ws3 .mbr-section-title strong {
  font-weight: 500;
}
.cid-upqF9R8ws3 .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-upqF9R8ws3 .mbr-text {
  margin-bottom: 43px;
}
.cid-upqF9R8ws3 .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-upqF9R8ws3 .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-upqF9R8ws3 .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-upqF9R8ws3 .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-upqF9R8ws3 .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-upqF9R8ws3 .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-upqF9R8ws3 .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-upqF9R8ws3 .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-upqF9R8ws3 .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-upqF9R8ws3 .row {
    text-align: center;
  }
  .cid-upqF9R8ws3 .title__block {
    padding-bottom: 0;
  }
  .cid-upqF9R8ws3 .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-upqF9R8ws3 .figure:before {
    content: none;
  }
  .cid-upqF9R8ws3 .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-upqF9R8ws3 .mbr-text {
    margin-bottom: 30px;
  }
  .cid-upqF9R8ws3 .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-upqF9R8ws3 .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-upqF9R8ws3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqF9R8ws3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upqEtkz8an {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-upqEtkz8an .mbr-section-title {
  margin-bottom: 35px;
}
.cid-upqEtkz8an .mbr-section-title b,
.cid-upqEtkz8an .mbr-section-title strong {
  font-weight: 500;
}
.cid-upqEtkz8an .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-upqEtkz8an .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-upqEtkz8an .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-upqEtkz8an .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqEtkz8an .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upqNz8jdeK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqNz8jdeK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqNz8jdeK img {
  border-radius: 1rem;
}
.cid-upqNz8jdeK .row {
  padding: 0 1rem;
}
.cid-upqNz8jdeK .btn {
  transition: all 0.3s;
}
.cid-upqNz8jdeK .btn:hover,
.cid-upqNz8jdeK .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-upqNz8jdeK .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-upqNz8jdeK .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-upqNz8jdeK .card {
    padding: 3rem 2rem;
  }
}
.cid-upqNz8jdeK .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-upqNz8jdeK .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upqNz8jdeK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upqNz8jdeK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upqNz8jdeK .mbr-section-subtitle,
.cid-upqNz8jdeK .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-upqNz8jdeK .mbr-text,
.cid-upqNz8jdeK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uprazLdAZh {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uprazLdAZh .title__block {
  margin-bottom: 89px;
}
.cid-uprazLdAZh .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uprazLdAZh .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uprazLdAZh .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uprazLdAZh .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uprazLdAZh .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uprazLdAZh .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uprazLdAZh .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uprazLdAZh .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uprazLdAZh .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uprazLdAZh .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uprazLdAZh .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uprazLdAZh .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uprazLdAZh .title__block {
    margin-bottom: 40px;
  }
  .cid-uprazLdAZh .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uprazLdAZh .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprazLdAZh .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uprazLdAZh .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprazLdAZh .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uprazLdAZh .iconBackground {
    left: 0 !important;
  }
  .cid-uprazLdAZh .separline:before {
    left: 0 !important;
  }
}
.cid-uprazLdAZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uprazLdAZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprazLdAZh .mbr-timeline-text {
  text-align: center;
}
.cid-upqHAzw0FE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upqHAzw0FE .title__block {
  margin-bottom: 65px;
}
.cid-upqHAzw0FE .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-upqHAzw0FE .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-upqHAzw0FE .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-upqHAzw0FE .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-upqHAzw0FE .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-upqHAzw0FE .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-upqHAzw0FE .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-upqHAzw0FE .card__content {
  display: block;
  width: 100%;
}
.cid-upqHAzw0FE .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-upqHAzw0FE .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-upqHAzw0FE .title__block {
    margin-bottom: 40px;
  }
  .cid-upqHAzw0FE .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-upqHAzw0FE .nav-item {
    margin-bottom: 9px;
  }
  .cid-upqHAzw0FE .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-upqHAzw0FE .card__wrap {
    margin-bottom: 40px;
  }
  .cid-upqHAzw0FE .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-upqHAzw0FE .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-upqHAzw0FE .card__image {
    max-width: 90px;
  }
  .cid-upqHAzw0FE .card__image img {
    width: 70%;
  }
}
.cid-upqHAzw0FE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqHAzw0FE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us2495HsmT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-us2495HsmT .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-us2495HsmT .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-us2495HsmT .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-us2495HsmT .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-us2495HsmT .btn:hover {
  box-shadow: none;
}
.cid-us2495HsmT .mbr-section-title,
.cid-us2495HsmT .mbr-section-btn {
  text-align: center;
}
.cid-uNcCmRGseq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCmRGseq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCmRGseq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCmRGseq .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCmRGseq .currentcost {
  color: #232323;
}
.cid-uNcCmRGseq .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCmRGseq .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCmRGseq .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCmRGseq .text-box {
    padding: 1rem;
  }
}
.cid-uNcCmRGseq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-upqNfGtzsE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqNfGtzsE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqNfGtzsE img {
  border-radius: 1rem;
}
.cid-upqNfGtzsE .row {
  padding: 0 1rem;
}
.cid-upqNfGtzsE .btn {
  transition: all 0.3s;
}
.cid-upqNfGtzsE .btn:hover,
.cid-upqNfGtzsE .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-upqNfGtzsE .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-upqNfGtzsE .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-upqNfGtzsE .card {
    padding: 3rem 2rem;
  }
}
.cid-upqNfGtzsE .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-upqNfGtzsE .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upqNfGtzsE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upqNfGtzsE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upqNfGtzsE .mbr-section-subtitle,
.cid-upqNfGtzsE .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-upqNfGtzsE .mbr-text,
.cid-upqNfGtzsE .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uprb73aTla {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uprb73aTla .title__block {
  margin-bottom: 89px;
}
.cid-uprb73aTla .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uprb73aTla .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uprb73aTla .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uprb73aTla .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uprb73aTla .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uprb73aTla .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uprb73aTla .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uprb73aTla .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uprb73aTla .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uprb73aTla .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uprb73aTla .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uprb73aTla .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uprb73aTla .title__block {
    margin-bottom: 40px;
  }
  .cid-uprb73aTla .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uprb73aTla .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprb73aTla .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uprb73aTla .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprb73aTla .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uprb73aTla .iconBackground {
    left: 0 !important;
  }
  .cid-uprb73aTla .separline:before {
    left: 0 !important;
  }
}
.cid-uprb73aTla .mbr-fallback-image.disabled {
  display: none;
}
.cid-uprb73aTla .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprb73aTla .mbr-timeline-text {
  text-align: center;
}
.cid-upqJUTjdCZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upqJUTjdCZ .title__block {
  margin-bottom: 65px;
}
.cid-upqJUTjdCZ .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-upqJUTjdCZ .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-upqJUTjdCZ .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-upqJUTjdCZ .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #47b5ed !important;
}
.cid-upqJUTjdCZ .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-upqJUTjdCZ .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-upqJUTjdCZ .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-upqJUTjdCZ .card__content {
  display: block;
  width: 100%;
}
.cid-upqJUTjdCZ .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-upqJUTjdCZ .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-upqJUTjdCZ .title__block {
    margin-bottom: 40px;
  }
  .cid-upqJUTjdCZ .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-upqJUTjdCZ .nav-item {
    margin-bottom: 9px;
  }
  .cid-upqJUTjdCZ .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-upqJUTjdCZ .card__wrap {
    margin-bottom: 40px;
  }
  .cid-upqJUTjdCZ .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-upqJUTjdCZ .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-upqJUTjdCZ .card__image {
    max-width: 90px;
  }
  .cid-upqJUTjdCZ .card__image img {
    width: 70%;
  }
}
.cid-upqJUTjdCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqJUTjdCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us2552puTm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-us2552puTm .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-us2552puTm .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-us2552puTm .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-us2552puTm .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-us2552puTm .btn:hover {
  box-shadow: none;
}
.cid-us2552puTm .mbr-section-title,
.cid-us2552puTm .mbr-section-btn {
  text-align: center;
}
.cid-upqNTjdhcK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqNTjdhcK .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqNTjdhcK img {
  border-radius: 1rem;
}
.cid-upqNTjdhcK .row {
  padding: 0 1rem;
}
.cid-upqNTjdhcK .btn {
  transition: all 0.3s;
}
.cid-upqNTjdhcK .btn:hover,
.cid-upqNTjdhcK .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-upqNTjdhcK .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-upqNTjdhcK .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-upqNTjdhcK .card {
    padding: 3rem 2rem;
  }
}
.cid-upqNTjdhcK .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-upqNTjdhcK .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upqNTjdhcK .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upqNTjdhcK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upqNTjdhcK .mbr-section-subtitle,
.cid-upqNTjdhcK .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-upqNTjdhcK .mbr-text,
.cid-upqNTjdhcK .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uprboiVFyt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uprboiVFyt .title__block {
  margin-bottom: 89px;
}
.cid-uprboiVFyt .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uprboiVFyt .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uprboiVFyt .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uprboiVFyt .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uprboiVFyt .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uprboiVFyt .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uprboiVFyt .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uprboiVFyt .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uprboiVFyt .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uprboiVFyt .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uprboiVFyt .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uprboiVFyt .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uprboiVFyt .title__block {
    margin-bottom: 40px;
  }
  .cid-uprboiVFyt .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uprboiVFyt .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprboiVFyt .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uprboiVFyt .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprboiVFyt .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uprboiVFyt .iconBackground {
    left: 0 !important;
  }
  .cid-uprboiVFyt .separline:before {
    left: 0 !important;
  }
}
.cid-uprboiVFyt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uprboiVFyt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprboiVFyt .mbr-timeline-text {
  text-align: center;
}
.cid-upqOl7jdch {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upqOl7jdch .title__block {
  margin-bottom: 65px;
}
.cid-upqOl7jdch .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-upqOl7jdch .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-upqOl7jdch .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-upqOl7jdch .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-upqOl7jdch .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-upqOl7jdch .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-upqOl7jdch .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-upqOl7jdch .card__content {
  display: block;
  width: 100%;
}
.cid-upqOl7jdch .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-upqOl7jdch .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-upqOl7jdch .title__block {
    margin-bottom: 40px;
  }
  .cid-upqOl7jdch .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-upqOl7jdch .nav-item {
    margin-bottom: 9px;
  }
  .cid-upqOl7jdch .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-upqOl7jdch .card__wrap {
    margin-bottom: 40px;
  }
  .cid-upqOl7jdch .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-upqOl7jdch .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-upqOl7jdch .card__image {
    max-width: 90px;
  }
  .cid-upqOl7jdch .card__image img {
    width: 70%;
  }
}
.cid-upqOl7jdch .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqOl7jdch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us256bC0Wk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-us256bC0Wk .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-us256bC0Wk .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-us256bC0Wk .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-us256bC0Wk .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-us256bC0Wk .btn:hover {
  box-shadow: none;
}
.cid-us256bC0Wk .mbr-section-title,
.cid-us256bC0Wk .mbr-section-btn {
  text-align: center;
}
.cid-upqNUdPD3V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqNUdPD3V .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqNUdPD3V img {
  border-radius: 1rem;
}
.cid-upqNUdPD3V .row {
  padding: 0 1rem;
}
.cid-upqNUdPD3V .btn {
  transition: all 0.3s;
}
.cid-upqNUdPD3V .btn:hover,
.cid-upqNUdPD3V .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-upqNUdPD3V .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-upqNUdPD3V .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-upqNUdPD3V .card {
    padding: 3rem 2rem;
  }
}
.cid-upqNUdPD3V .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-upqNUdPD3V .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upqNUdPD3V .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upqNUdPD3V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-upqNUdPD3V .mbr-section-subtitle,
.cid-upqNUdPD3V .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-upqNUdPD3V .mbr-text,
.cid-upqNUdPD3V .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uprbPyi2O7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uprbPyi2O7 .title__block {
  margin-bottom: 89px;
}
.cid-uprbPyi2O7 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uprbPyi2O7 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uprbPyi2O7 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uprbPyi2O7 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uprbPyi2O7 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uprbPyi2O7 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uprbPyi2O7 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uprbPyi2O7 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uprbPyi2O7 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uprbPyi2O7 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uprbPyi2O7 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uprbPyi2O7 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uprbPyi2O7 .title__block {
    margin-bottom: 40px;
  }
  .cid-uprbPyi2O7 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uprbPyi2O7 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprbPyi2O7 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uprbPyi2O7 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uprbPyi2O7 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uprbPyi2O7 .iconBackground {
    left: 0 !important;
  }
  .cid-uprbPyi2O7 .separline:before {
    left: 0 !important;
  }
}
.cid-uprbPyi2O7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uprbPyi2O7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprbPyi2O7 .mbr-timeline-text {
  text-align: center;
}
.cid-upqOm7sVpF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upqOm7sVpF .title__block {
  margin-bottom: 65px;
}
.cid-upqOm7sVpF .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-upqOm7sVpF .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-upqOm7sVpF .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-upqOm7sVpF .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-upqOm7sVpF .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-upqOm7sVpF .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-upqOm7sVpF .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-upqOm7sVpF .card__content {
  display: block;
  width: 100%;
}
.cid-upqOm7sVpF .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-upqOm7sVpF .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-upqOm7sVpF .title__block {
    margin-bottom: 40px;
  }
  .cid-upqOm7sVpF .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-upqOm7sVpF .nav-item {
    margin-bottom: 9px;
  }
  .cid-upqOm7sVpF .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-upqOm7sVpF .card__wrap {
    margin-bottom: 40px;
  }
  .cid-upqOm7sVpF .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-upqOm7sVpF .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-upqOm7sVpF .card__image {
    max-width: 90px;
  }
  .cid-upqOm7sVpF .card__image img {
    width: 70%;
  }
}
.cid-upqOm7sVpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqOm7sVpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us257DTOxI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-us257DTOxI .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-us257DTOxI .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-us257DTOxI .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-us257DTOxI .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-us257DTOxI .btn:hover {
  box-shadow: none;
}
.cid-us257DTOxI .mbr-section-title,
.cid-us257DTOxI .mbr-section-btn {
  text-align: center;
}
.cid-upqR95ICwJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqR95ICwJ .title__block {
  margin-bottom: 55px;
}
.cid-upqR95ICwJ .mbr-section-title {
  margin-bottom: 16px;
}
.cid-upqR95ICwJ .wrap {
  background-color: #22a5e5;
}
.cid-upqR95ICwJ .card__wrap {
  margin-bottom: 60px;
  display: flex;
  margin: 60px 0;
}
.cid-upqR95ICwJ .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-upqR95ICwJ .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-upqR95ICwJ .card__content {
  display: block;
  width: 100%;
}
.cid-upqR95ICwJ .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-upqR95ICwJ .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-upqR95ICwJ .mbr-section-title {
    margin-bottom: 20px;
  }
  .cid-upqR95ICwJ .card__wrap {
    margin-bottom: 40px;
  }
  .cid-upqR95ICwJ .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-upqR95ICwJ .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-upqR95ICwJ .card__image {
    max-width: 90px;
  }
  .cid-upqR95ICwJ .card__image img {
    width: 70%;
  }
}
.cid-upqR95ICwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqR95ICwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprh6KpUG4 {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uprh6KpUG4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uprh6KpUG4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uprh6KpUG4 .line {
  width: 100%;
  opacity: 0.6;
  height: 1px;
  background: currentColor;
  margin-top: 8rem;
}
.cid-uprh6KpUG4 .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 992px) {
  .cid-uprh6KpUG4 .content-wrap {
    padding: 5rem 3rem;
  }
}
@media (min-width: 768px) {
  .cid-uprh6KpUG4 {
    align-items: center;
  }
  .cid-uprh6KpUG4 .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uprh6KpUG4 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uprh6KpUG4 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uprh6KpUG4 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uprh6KpUG4 .content-wrap {
    width: 100%;
  }
}
.cid-uprh6KpUG4 .mbr-section-title {
  text-align: left;
  color: #fffcee;
}
.cid-uprh6KpUG4 .mbr-text,
.cid-uprh6KpUG4 .mbr-section-btn {
  text-align: left;
  color: #fffcee;
}
.cid-uprh6KpUG4 .mbr-section-title,
.cid-uprh6KpUG4 .line {
  color: #000000;
  text-align: center;
}
.cid-upqTcanFZp {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-upqTcanFZp .mbr-section-title {
  margin-bottom: 35px;
}
.cid-upqTcanFZp .mbr-section-title b,
.cid-upqTcanFZp .mbr-section-title strong {
  font-weight: 500;
}
.cid-upqTcanFZp .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-upqTcanFZp .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-upqTcanFZp .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-upqTcanFZp .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqTcanFZp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-vo .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vo .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vo .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vo .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-us25mtAmzg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-us25mtAmzg .mbr-fallback-image.disabled {
  display: none;
}
.cid-us25mtAmzg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-us25mtAmzg .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-us25mtAmzg .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-us25mtAmzg .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-us25mtAmzg .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-us25mtAmzg .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-us25mtAmzg .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-us25mtAmzg .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-us25mtAmzg .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-us25mtAmzg .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-us25mtAmzg .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-us25mtAmzg .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-us25mtAmzg .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-us25mtAmzg .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-us25mtAmzg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-us25mtAmzg .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-us25mtAmzg .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweChJBhi P {
  color: #1281fc;
}
.cid-uJweChJBhi DIV {
  color: #ffffff;
}
.cid-uJweChJBhi H10 {
  color: #034e75;
}
.cid-uJweChJBhi .hidden {
  display: none;
}
.cid-uJweChJBhi .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweChJBhi .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweChJBhi .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweChJBhi .flag {
  background: transparent;
}
.cid-uJweChJBhi .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweChJBhi .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweChJBhi #google_translate_element {
  display: none;
}
.cid-uJweChJBhi .goog-te-banner {
  display: none;
}
.cid-uJweChJBhi .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweChJBhi .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweChJBhi body {
  top: 0px !important;
}
.cid-uJweChJBhi body body {
  top: 0 !important;
}
.cid-uJweChJBhi body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweChJBhi .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweChJBhi .goog-tooltip {
  display: none !important;
}
.cid-uJweChJBhi .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweChJBhi .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweChJBhi #goog-gt-tt,
.cid-uJweChJBhi .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweChJBhi #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweChJBhi .goog-logo-link {
  display: none !important;
}
.cid-uJweChJBhi .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweChJBhi div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweChJBhi div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-upCuwRPcYv {
  display: flex;
  background-image: url("../../../assets/images/rodzinka-2024-web-53-2000x1600.jpg");
}
.cid-upCuwRPcYv .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-upCuwRPcYv .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-upCuwRPcYv {
    align-items: null;
  }
  .cid-upCuwRPcYv .row {
    justify-content: center;
  }
}
.cid-upCuwRPcYv .img-wrap {
  display: flex;
  justify-content: center;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
}
.cid-upCuwRPcYv .img-wrap img {
  width: 110px;
  border-radius: 50% !important;
  border: 3px solid white;
  margin-left: -1rem;
  object-fit: cover;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-upCuwRPcYv .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-upCuwRPcYv {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-upCuwRPcYv .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-upCuwRPcYv .content-wrap {
    width: 100%;
  }
}
.cid-upCuwRPcYv .mbr-section-title {
  text-align: center;
}
.cid-upCuwRPcYv .mbr-text,
.cid-upCuwRPcYv .mbr-section-btn {
  text-align: center;
}
.cid-uHuRAP8qAP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uHuRAP8qAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuRAP8qAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuRAP8qAP .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uHuRAP8qAP .container {
    padding: 10px 8px;
  }
}
.cid-uHuRAP8qAP .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uHuRAP8qAP .row {
    padding: 50px 2px;
  }
}
.cid-uHuRAP8qAP .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uHuRAP8qAP .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHuRAP8qAP .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uHuRAP8qAP .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uHuRAP8qAP .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uHuRAP8qAP .mbr-section-title span {
  opacity: .5;
}
.cid-uHuRAP8qAP .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uHuRAP8qAP .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uHuRAP8qAP .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uHuRAP8qAP .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uHuRAP8qAP .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uHuRAP8qAP .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uHuRAP8qAP .mbr-desc {
  color: #3283fb;
}
.cid-uHuHOuWcNo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uHuHOuWcNo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuHOuWcNo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuHOuWcNo .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uHuHOuWcNo .container {
    padding: 10px 8px;
  }
}
.cid-uHuHOuWcNo .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uHuHOuWcNo .row {
    padding: 50px 2px;
  }
}
.cid-uHuHOuWcNo .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uHuHOuWcNo .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uHuHOuWcNo .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uHuHOuWcNo .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uHuHOuWcNo .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uHuHOuWcNo .mbr-section-title span {
  opacity: .5;
}
.cid-uHuHOuWcNo .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uHuHOuWcNo .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uHuHOuWcNo .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uHuHOuWcNo .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uHuHOuWcNo .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uHuHOuWcNo .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uHuHOuWcNo .mbr-desc {
  color: #3283fb;
}
.cid-uNcCda7Uuq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCda7Uuq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCda7Uuq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCda7Uuq .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCda7Uuq .currentcost {
  color: #232323;
}
.cid-uNcCda7Uuq .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCda7Uuq .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCda7Uuq .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCda7Uuq .text-box {
    padding: 1rem;
  }
}
.cid-uNcCda7Uuq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3qQs7gPC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uH3qQs7gPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3qQs7gPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3qQs7gPC .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uH3qQs7gPC .container {
    padding: 10px 8px;
  }
}
.cid-uH3qQs7gPC .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uH3qQs7gPC .row {
    padding: 50px 2px;
  }
}
.cid-uH3qQs7gPC .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uH3qQs7gPC .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uH3qQs7gPC .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uH3qQs7gPC .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uH3qQs7gPC .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uH3qQs7gPC .mbr-section-title span {
  opacity: .5;
}
.cid-uH3qQs7gPC .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uH3qQs7gPC .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uH3qQs7gPC .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uH3qQs7gPC .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uH3qQs7gPC .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uH3qQs7gPC .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uH3qQs7gPC .mbr-desc {
  color: #3283fb;
}
.cid-uGYWn1opaF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uGYWn1opaF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYWn1opaF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYWn1opaF .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uGYWn1opaF .container {
    padding: 10px 8px;
  }
}
.cid-uGYWn1opaF .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uGYWn1opaF .row {
    padding: 50px 2px;
  }
}
.cid-uGYWn1opaF .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uGYWn1opaF .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uGYWn1opaF .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uGYWn1opaF .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uGYWn1opaF .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uGYWn1opaF .mbr-section-title span {
  opacity: .5;
}
.cid-uGYWn1opaF .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uGYWn1opaF .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uGYWn1opaF .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uGYWn1opaF .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uGYWn1opaF .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uGYWn1opaF .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uGYWn1opaF .mbr-desc {
  color: #3283fb;
}
.cid-uDWxfc10MX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uDWxfc10MX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWxfc10MX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWxfc10MX .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uDWxfc10MX .container {
    padding: 10px 8px;
  }
}
.cid-uDWxfc10MX .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uDWxfc10MX .row {
    padding: 50px 2px;
  }
}
.cid-uDWxfc10MX .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uDWxfc10MX .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDWxfc10MX .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uDWxfc10MX .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uDWxfc10MX .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uDWxfc10MX .mbr-section-title span {
  opacity: .5;
}
.cid-uDWxfc10MX .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uDWxfc10MX .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uDWxfc10MX .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uDWxfc10MX .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uDWxfc10MX .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uDWxfc10MX .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uDWxfc10MX .mbr-desc {
  color: #3283fb;
}
.cid-uDLrJZAqOn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uDLrJZAqOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLrJZAqOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLrJZAqOn .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uDLrJZAqOn .container {
    padding: 10px 8px;
  }
}
.cid-uDLrJZAqOn .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uDLrJZAqOn .row {
    padding: 50px 2px;
  }
}
.cid-uDLrJZAqOn .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uDLrJZAqOn .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDLrJZAqOn .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uDLrJZAqOn .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uDLrJZAqOn .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uDLrJZAqOn .mbr-section-title span {
  opacity: .5;
}
.cid-uDLrJZAqOn .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uDLrJZAqOn .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uDLrJZAqOn .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uDLrJZAqOn .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uDLrJZAqOn .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uDLrJZAqOn .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uDLrJZAqOn .mbr-desc {
  color: #3283fb;
}
.cid-upCvKw9rbn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-upCvKw9rbn .mbr-fallback-image.disabled {
  display: none;
}
.cid-upCvKw9rbn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upCvKw9rbn .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-upCvKw9rbn .container {
    padding: 10px 8px;
  }
}
.cid-upCvKw9rbn .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-upCvKw9rbn .row {
    padding: 50px 2px;
  }
}
.cid-upCvKw9rbn .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-upCvKw9rbn .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-upCvKw9rbn .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-upCvKw9rbn .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-upCvKw9rbn .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-upCvKw9rbn .mbr-section-title span {
  opacity: .5;
}
.cid-upCvKw9rbn .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-upCvKw9rbn .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-upCvKw9rbn .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-upCvKw9rbn .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-upCvKw9rbn .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-upCvKw9rbn .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-upCvKw9rbn .mbr-desc {
  color: #3283fb;
}
.cid-uqQsUUIulV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uqQsUUIulV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQsUUIulV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQsUUIulV .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uqQsUUIulV .container {
    padding: 10px 8px;
  }
}
.cid-uqQsUUIulV .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-uqQsUUIulV .row {
    padding: 50px 2px;
  }
}
.cid-uqQsUUIulV .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-uqQsUUIulV .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uqQsUUIulV .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-uqQsUUIulV .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-uqQsUUIulV .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-uqQsUUIulV .mbr-section-title span {
  opacity: .5;
}
.cid-uqQsUUIulV .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-uqQsUUIulV .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-uqQsUUIulV .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-uqQsUUIulV .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-uqQsUUIulV .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-uqQsUUIulV .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-uqQsUUIulV .mbr-desc {
  color: #3283fb;
}
.cid-utilOY7QRq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilOY7QRq .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilOY7QRq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilOY7QRq .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilOY7QRq .container {
    padding: 10px 8px;
  }
}
.cid-utilOY7QRq .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilOY7QRq .row {
    padding: 50px 2px;
  }
}
.cid-utilOY7QRq .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilOY7QRq .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilOY7QRq .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilOY7QRq .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilOY7QRq .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilOY7QRq .mbr-section-title span {
  opacity: .5;
}
.cid-utilOY7QRq .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilOY7QRq .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilOY7QRq .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilOY7QRq .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilOY7QRq .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilOY7QRq .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilOY7QRq .mbr-desc {
  color: #3283fb;
}
.cid-utilgLgmnd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilgLgmnd .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilgLgmnd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilgLgmnd .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilgLgmnd .container {
    padding: 10px 8px;
  }
}
.cid-utilgLgmnd .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilgLgmnd .row {
    padding: 50px 2px;
  }
}
.cid-utilgLgmnd .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilgLgmnd .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilgLgmnd .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilgLgmnd .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilgLgmnd .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilgLgmnd .mbr-section-title span {
  opacity: .5;
}
.cid-utilgLgmnd .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilgLgmnd .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilgLgmnd .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilgLgmnd .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilgLgmnd .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilgLgmnd .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilgLgmnd .mbr-desc {
  color: #3283fb;
}
.cid-utilJTYDF9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilJTYDF9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilJTYDF9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilJTYDF9 .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilJTYDF9 .container {
    padding: 10px 8px;
  }
}
.cid-utilJTYDF9 .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilJTYDF9 .row {
    padding: 50px 2px;
  }
}
.cid-utilJTYDF9 .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilJTYDF9 .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilJTYDF9 .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilJTYDF9 .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilJTYDF9 .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilJTYDF9 .mbr-section-title span {
  opacity: .5;
}
.cid-utilJTYDF9 .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilJTYDF9 .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilJTYDF9 .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilJTYDF9 .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilJTYDF9 .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilJTYDF9 .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilJTYDF9 .mbr-desc {
  color: #3283fb;
}
.cid-utilL5mUpI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilL5mUpI .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilL5mUpI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilL5mUpI .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilL5mUpI .container {
    padding: 10px 8px;
  }
}
.cid-utilL5mUpI .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilL5mUpI .row {
    padding: 50px 2px;
  }
}
.cid-utilL5mUpI .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilL5mUpI .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilL5mUpI .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilL5mUpI .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilL5mUpI .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilL5mUpI .mbr-section-title span {
  opacity: .5;
}
.cid-utilL5mUpI .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilL5mUpI .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilL5mUpI .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilL5mUpI .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilL5mUpI .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilL5mUpI .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilL5mUpI .mbr-desc {
  color: #3283fb;
}
.cid-utilMgeaDE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilMgeaDE .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilMgeaDE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilMgeaDE .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilMgeaDE .container {
    padding: 10px 8px;
  }
}
.cid-utilMgeaDE .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilMgeaDE .row {
    padding: 50px 2px;
  }
}
.cid-utilMgeaDE .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilMgeaDE .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilMgeaDE .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilMgeaDE .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilMgeaDE .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilMgeaDE .mbr-section-title span {
  opacity: .5;
}
.cid-utilMgeaDE .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilMgeaDE .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilMgeaDE .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilMgeaDE .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilMgeaDE .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilMgeaDE .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilMgeaDE .mbr-desc {
  color: #3283fb;
}
.cid-utilRIiBqN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-utilRIiBqN .mbr-fallback-image.disabled {
  display: none;
}
.cid-utilRIiBqN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utilRIiBqN .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-utilRIiBqN .container {
    padding: 10px 8px;
  }
}
.cid-utilRIiBqN .row {
  border-radius: 25px;
  background-color: #ffffff;
  padding: 100px 32px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-utilRIiBqN .row {
    padding: 50px 2px;
  }
}
.cid-utilRIiBqN .row .card {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-utilRIiBqN .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-utilRIiBqN .desc-wrapper .mbr-desc {
  display: inline-flex;
  border: 1px solid #9fdbf8;
  border-radius: 300px;
  padding: 5px 25px;
  background-color: #e1edff;
  margin-bottom: 0;
}
.cid-utilRIiBqN .mbr-section-title {
  margin-bottom: 0;
  padding-right: 80px;
  color: #222222;
}
@media (max-width: 992px) {
  .cid-utilRIiBqN .mbr-section-title {
    margin-bottom: 30px;
    padding: 0;
  }
}
.cid-utilRIiBqN .mbr-section-title span {
  opacity: .5;
}
.cid-utilRIiBqN .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cid-utilRIiBqN .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 20px;
}
.cid-utilRIiBqN .text-wrapper .mbr-text span {
  opacity: .5;
}
.cid-utilRIiBqN .text-wrapper .mbr-section-btn {
  width: 100%;
}
.cid-utilRIiBqN .text-wrapper .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-utilRIiBqN .text-wrapper .mbr-section-btn .btn {
    padding: 30px 50px;
  }
}
.cid-utilRIiBqN .mbr-desc {
  color: #3283fb;
}
.cid-uNcCfL5NKz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCfL5NKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCfL5NKz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCfL5NKz .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCfL5NKz .currentcost {
  color: #232323;
}
.cid-uNcCfL5NKz .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCfL5NKz .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCfL5NKz .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCfL5NKz .text-box {
    padding: 1rem;
  }
}
.cid-uNcCfL5NKz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
#custom-html-vy .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vy .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vy .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vy .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-upCRnqhs93 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-upCRnqhs93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upCRnqhs93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-upCRnqhs93 .container-fluid {
    padding: 0;
  }
}
.cid-upCRnqhs93 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-upCRnqhs93 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-upCRnqhs93 .embla__button--next,
.cid-upCRnqhs93 .embla__button--prev {
  display: flex;
}
.cid-upCRnqhs93 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-upCRnqhs93 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-upCRnqhs93 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-upCRnqhs93 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-upCRnqhs93 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upCRnqhs93 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-upCRnqhs93 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-upCRnqhs93 .embla {
  position: relative;
  width: 100%;
}
.cid-upCRnqhs93 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-upCRnqhs93 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-upCRnqhs93 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-upCRnqhs93 .embla__slide a {
  cursor: grab;
}
.cid-upCRnqhs93 .embla__slide a:active {
  cursor: grabbing;
}
.cid-upCRnqhs93 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-upCRnqhs93 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-upCRnqhs93 .mbr-section-title {
  color: #232323;
}
.cid-upCRnqhs93 .mbr-section-subtitle {
  color: #232323;
}
.cid-upCRnqhs93 .mbr-box {
  color: #ffffff;
}
.cid-upCRnqhs93 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-upCRnqhs93 img,
.cid-upCRnqhs93 .item-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-upCRnqhs93 .item-wrapper {
  position: relative;
}
.cid-upCRnqhs93 .content-head {
  max-width: 800px;
}
.cid-upCG5jF8Q3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upCG5jF8Q3 .video-wrapper iframe {
  width: 100%;
}
.cid-upCG5jF8Q3 .mbr-section-title,
.cid-upCG5jF8Q3 .mbr-section-subtitle,
.cid-upCG5jF8Q3 .mbr-text {
  text-align: center;
}
.cid-upCGMxe6R4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upCGMxe6R4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upCGMxe6R4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-upCGMxe6R4 .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-upCGMxe6R4 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-upCGMxe6R4 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upCGMxe6R4 .media-content,
.cid-upCGMxe6R4 .mbr-figure {
  align-self: center;
}
.cid-upCGMxe6R4 .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-upCGMxe6R4 .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-upCGMxe6R4 .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-upCGMxe6R4 .mbr-section-maintitle {
  text-align: center;
}
.cid-upCGMxe6R4 .mbr-section-title {
  text-align: left;
}
.cid-upCGMxe6R4 .mbr-text,
.cid-upCGMxe6R4 .mbr-section-btn {
  text-align: left;
}
.cid-uqKQoJNQzY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKQoJNQzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKQoJNQzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKQoJNQzY .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKQoJNQzY .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKQoJNQzY .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqKQoJNQzY .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKQoJNQzY .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKQoJNQzY .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKQoJNQzY .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKQoJNQzY .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKQoJNQzY .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKQoJNQzY .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKQoJNQzY .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKQoJNQzY .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKQoJNQzY .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKQoJNQzY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQoJNQzY .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKQoJNQzY .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweA2Ozdi P {
  color: #1281fc;
}
.cid-uJweA2Ozdi DIV {
  color: #ffffff;
}
.cid-uJweA2Ozdi H10 {
  color: #034e75;
}
.cid-uJweA2Ozdi .hidden {
  display: none;
}
.cid-uJweA2Ozdi .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweA2Ozdi .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweA2Ozdi .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweA2Ozdi .flag {
  background: transparent;
}
.cid-uJweA2Ozdi .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweA2Ozdi .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweA2Ozdi #google_translate_element {
  display: none;
}
.cid-uJweA2Ozdi .goog-te-banner {
  display: none;
}
.cid-uJweA2Ozdi .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweA2Ozdi .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweA2Ozdi body {
  top: 0px !important;
}
.cid-uJweA2Ozdi body body {
  top: 0 !important;
}
.cid-uJweA2Ozdi body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweA2Ozdi .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweA2Ozdi .goog-tooltip {
  display: none !important;
}
.cid-uJweA2Ozdi .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweA2Ozdi .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweA2Ozdi #goog-gt-tt,
.cid-uJweA2Ozdi .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweA2Ozdi #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweA2Ozdi .goog-logo-link {
  display: none !important;
}
.cid-uJweA2Ozdi .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweA2Ozdi div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweA2Ozdi div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-upNT0rRHBm {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-upNT0rRHBm .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0rRHBm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-upNT0rRHBm .video-wrapper iframe {
  width: 100%;
}
.cid-upNT0rRHBm .mbr-section-title,
.cid-upNT0rRHBm .mbr-section-subtitle,
.cid-upNT0rRHBm .mbr-text {
  text-align: center;
}
.cid-upNT0srXb0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upNT0srXb0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0srXb0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0srXb0 .text-wrap {
  width: 100%;
}
.cid-upNT0srXb0 .mbr-section-title {
  color: #22a5e5;
  margin-bottom: 70px;
}
.cid-upNT0srXb0 .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .mbr-text {
    margin-top: 30px;
  }
}
.cid-upNT0srXb0 .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-upNT0srXb0 .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-upNT0srXb0 .item-row {
    justify-content: flex-start;
  }
}
.cid-upNT0srXb0 .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row .item {
    justify-content: flex-start;
  }
}
.cid-upNT0srXb0 .item-row .item:nth-child(1) .item-wrap {
  background-color: #40b0bf;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-upNT0srXb0 .item-row .item:nth-child(2) .item-wrap {
  background-color: #47b5ed;
  border-radius: 0 20px 20px 20px;
}
.cid-upNT0srXb0 .item-row .item:nth-child(3) .item-wrap {
  background-color: #6ec7f2;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-upNT0srXb0 .item-row .item:nth-child(4) .item-wrap {
  background-color: #9fdbf8;
  border-radius: 20px 20px 0 20px;
}
.cid-upNT0srXb0 .item-row .item:nth-child(5) .item-wrap {
  background-color: #98dee8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-upNT0srXb0 .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-upNT0srXb0 .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-upNT0srXb0 .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-upNT0srXb0 .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-upNT0srXb0 .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-upNT0srXb0 .item-text {
  color: #000000;
  text-align: center;
}
.cid-upNT0srXb0 .mbr-text,
.cid-upNT0srXb0 .mbr-section-btn {
  color: #000000;
}
.cid-upNT0sXM0f {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upNT0sXM0f img,
.cid-upNT0sXM0f .item-img {
  width: 100%;
}
.cid-upNT0sXM0f .item:focus,
.cid-upNT0sXM0f span:focus {
  outline: none;
}
.cid-upNT0sXM0f .item-wrapper {
  position: relative;
}
.cid-upNT0sXM0f .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-upNT0sXM0f .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-upNT0sXM0f .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-upNT0sXM0f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-upNT0sXM0f .mbr-section-title {
  color: #232323;
}
.cid-upNT0sXM0f .mbr-text,
.cid-upNT0sXM0f .mbr-section-btn {
  text-align: left;
}
.cid-upNT0sXM0f .item-title {
  text-align: left;
}
.cid-upNT0sXM0f .item-subtitle {
  text-align: left;
}
.cid-upNT0sXM0f .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-upNT0sXM0f .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-upNT0sXM0f .embla__button--next,
.cid-upNT0sXM0f .embla__button--prev {
  display: flex;
}
.cid-upNT0sXM0f .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-upNT0sXM0f .embla__button {
    display: none;
  }
}
.cid-upNT0sXM0f .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-upNT0sXM0f .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-upNT0sXM0f .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-upNT0sXM0f .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-upNT0sXM0f .embla__button {
    top: auto;
  }
}
.cid-upNT0sXM0f .embla {
  position: relative;
  width: 100%;
}
.cid-upNT0sXM0f .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-upNT0sXM0f .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-upNT0sXM0f .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-upNT0sXM0f .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-upNT0uiQib {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upNT0uiQib .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-upNT0uiQib .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-upNT0uiQib .column__one,
.cid-upNT0uiQib .column__two,
.cid-upNT0uiQib .column__three,
.cid-upNT0uiQib .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-upNT0uiQib .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-upNT0uiQib .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0uiQib .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-upNT0uiQib .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0uiQib .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-upNT0uiQib .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0uiQib .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-upNT0uiQib .column__two {
  border-bottom-left-radius: 0;
}
.cid-upNT0uiQib .column__three {
  border-bottom-left-radius: 0;
}
.cid-upNT0uiQib .column__four {
  border-bottom-left-radius: 0;
}
.cid-upNT0uiQib .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-upNT0uiQib .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-upNT0uiQib .pricing {
  padding: 0 20px;
}
.cid-upNT0uiQib .currency {
  vertical-align: top;
}
.cid-upNT0uiQib .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-upNT0uiQib .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-upNT0uiQib .item__wrapper {
  margin-top: 40px;
}
.cid-upNT0uiQib .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-upNT0uiQib .column__one,
  .cid-upNT0uiQib .column__two,
  .cid-upNT0uiQib .column__three,
  .cid-upNT0uiQib .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-upNT0uiQib .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0uiQib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0wP1CS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upNT0wP1CS .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0wP1CS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0wP1CS .video-wrapper iframe {
  width: 100%;
}
.cid-upNT0wP1CS .mbr-section-title,
.cid-upNT0wP1CS .mbr-section-subtitle,
.cid-upNT0wP1CS .mbr-text {
  text-align: center;
}
.cid-upNT0xtSVv {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upNT0xtSVv .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-upNT0xtSVv .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-upNT0xtSVv .column__one,
.cid-upNT0xtSVv .column__two,
.cid-upNT0xtSVv .column__three,
.cid-upNT0xtSVv .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-upNT0xtSVv .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-upNT0xtSVv .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0xtSVv .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-upNT0xtSVv .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0xtSVv .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-upNT0xtSVv .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-upNT0xtSVv .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-upNT0xtSVv .column__two {
  border-bottom-left-radius: 0;
}
.cid-upNT0xtSVv .column__four {
  border-bottom-left-radius: 0;
}
.cid-upNT0xtSVv .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-upNT0xtSVv .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-upNT0xtSVv .pricing {
  padding: 0 20px;
}
.cid-upNT0xtSVv .currency {
  vertical-align: top;
}
.cid-upNT0xtSVv .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-upNT0xtSVv .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-upNT0xtSVv .item__wrapper {
  margin-top: 40px;
}
.cid-upNT0xtSVv .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-upNT0xtSVv .column__one,
  .cid-upNT0xtSVv .column__two,
  .cid-upNT0xtSVv .column__three,
  .cid-upNT0xtSVv .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-upNT0xtSVv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0xtSVv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH2asZvJy1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uH2asZvJy1 .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-uH2asZvJy1 .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uH2asZvJy1 .column__one,
.cid-uH2asZvJy1 .column__two,
.cid-uH2asZvJy1 .column__three,
.cid-uH2asZvJy1 .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uH2asZvJy1 .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-uH2asZvJy1 .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uH2asZvJy1 .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uH2asZvJy1 .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uH2asZvJy1 .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uH2asZvJy1 .column__two {
  border-bottom-left-radius: 0;
}
.cid-uH2asZvJy1 .column__three {
  border-bottom-left-radius: 0;
}
.cid-uH2asZvJy1 .column__four {
  border-bottom-left-radius: 0;
}
.cid-uH2asZvJy1 .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uH2asZvJy1 .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uH2asZvJy1 .pricing {
  padding: 0 20px;
}
.cid-uH2asZvJy1 .currency {
  vertical-align: top;
}
.cid-uH2asZvJy1 .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uH2asZvJy1 .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uH2asZvJy1 .item__wrapper {
  margin-top: 40px;
}
.cid-uH2asZvJy1 .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uH2asZvJy1 .column__one,
  .cid-uH2asZvJy1 .column__two,
  .cid-uH2asZvJy1 .column__three,
  .cid-uH2asZvJy1 .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uH2asZvJy1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH2asZvJy1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0AYNXe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-upNT0AYNXe .row {
  position: relative;
}
.cid-upNT0AYNXe .row .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #6ec7f2 50%, #ffffff);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-upNT0AYNXe .row .blur-circle {
    display: none;
  }
}
.cid-upNT0AYNXe .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0AYNXe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0AYNXe .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-upNT0AYNXe .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-upNT0AYNXe .row {
    padding: 0 24px;
  }
}
.cid-upNT0AYNXe .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-upNT0AYNXe .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-upNT0AYNXe .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-upNT0AYNXe .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-upNT0AYNXe .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #6ec7f2;
  z-index: -1;
}
.cid-upNT0AYNXe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upNT0AYNXe .nav.nav-tabs {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px;
  border: 2px solid #6ec7f2;
  border-radius: 8px;
  margin-bottom: 64px;
  justify-content: center;
}
.cid-upNT0AYNXe .nav.nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border-radius: 4px;
  padding: 16px 25px 6px;
  color: #111111;
  border: none;
}
.cid-upNT0AYNXe .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #6ec7f2;
  color: #ffffff;
  border: none;
}
.cid-upNT0AYNXe .tab-content {
  position: relative;
  z-index: 1;
}
.cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .list-text {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dashed #6ec7f2;
}
.cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .list-text .mbr-time {
  margin: 0;
}
.cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .list-text .mbr-desc {
  margin: 0;
}
.cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .list {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
  list-style-position: inside;
}
@media (max-width: 768px) {
  .cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .list {
    padding-left: 0;
  }
}
.cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
}
@media (max-width: 768px) {
  .cid-upNT0AYNXe .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
    padding-left: 0;
  }
}
.cid-upNT0AYNXe .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-upNT0AYNXe .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-upNT0AYNXe .mbr-time {
  color: #111111;
}
.cid-upNT0AYNXe .mbr-desc {
  color: #111111;
}
.cid-upNT0AYNXe .list {
  color: #111111;
}
.cid-upNT0AYNXe .mbr-tabs-text {
  color: #111111;
}
.cid-upNT0yJ0HC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-image: url("../../../assets/images/aleksandra-mateusz-28-1000x667.jpeg");
}
.cid-upNT0yJ0HC::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #ffffff 50%);
  z-index: 1;
}
.cid-upNT0yJ0HC .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0yJ0HC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0yJ0HC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-upNT0yJ0HC .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-upNT0yJ0HC .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-upNT0yJ0HC .container {
    padding: 0 22px;
  }
}
.cid-upNT0yJ0HC .row {
  justify-content: center;
}
.cid-upNT0yJ0HC .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-upNT0yJ0HC .content-wrapper {
    padding: 0;
  }
}
.cid-upNT0yJ0HC .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-upNT0yJ0HC .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-upNT0yJ0HC .mbr-section-title {
  color: #ffffff;
}
.cid-upNT0yJ0HC .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-upNT0yJ0HC .mbr-section-title,
.cid-upNT0yJ0HC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-upNT0A8bhv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upNT0A8bhv .mbr-fallback-image.disabled {
  display: none;
}
.cid-upNT0A8bhv .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-upNT0A8bhv .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-upNT0A8bhv .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-upNT0A8bhv a {
  font-weight: 600;
}
.cid-upNT0A8bhv a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-upNT0A8bhv .col-lg-3,
  .cid-upNT0A8bhv .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-upNT0A8bhv .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-upNT0A8bhv .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-upNT0A8bhv h5 {
  margin: 0;
}
.cid-upNT0A8bhv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upNT0A8bhv .iconfont-wrapper {
  position: relative;
}
.cid-upNT0A8bhv .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-upNT0A8bhv .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-upNT0A8bhv .sociconfont-wrapper {
  display: flex;
}
.cid-upNT0A8bhv .card-title,
.cid-upNT0A8bhv .iconfont-wrapper {
  color: #a1a1a1;
  text-align: left;
}
.cid-upNT0A8bhv .card-text {
  color: #000000;
}
.cid-upNT0A8bhv .mbr-section-title {
  color: #000000;
}
.cid-upNT0A8bhv .main-title,
.cid-upNT0A8bhv .iconfont-wrapper {
  text-align: center;
}
.cid-upNT0BNapz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-upNT0BNapz .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-upNT0BNapz .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-upNT0BNapz .container {
    padding: 0 25px;
  }
}
.cid-upNT0BNapz .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-upNT0BNapz .title-wrapper {
    padding: 0 25px;
  }
}
.cid-upNT0BNapz .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-upNT0BNapz .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-upNT0BNapz .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-upNT0BNapz .item:focus,
.cid-upNT0BNapz span:focus {
  outline: none;
}
.cid-upNT0BNapz .item-wrapper {
  position: relative;
}
.cid-upNT0BNapz .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-upNT0BNapz .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-upNT0BNapz .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-upNT0BNapz .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-upNT0BNapz .embla__button--next,
.cid-upNT0BNapz .embla__button--prev {
  display: flex;
}
.cid-upNT0BNapz .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-upNT0BNapz .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-upNT0BNapz .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-upNT0BNapz .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-upNT0BNapz .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-upNT0BNapz .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-upNT0BNapz .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-upNT0BNapz .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-upNT0BNapz .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-upNT0BNapz .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-upNT0BNapz .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-upNT0BNapz .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-upNT0BNapz .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-upNT0BNapz .mbr-section-title {
  color: #000000;
}
.cid-upNT0BNapz .mbr-text {
  color: #000000;
}
.cid-upNT0BNapz .mbr-section-title,
.cid-upNT0BNapz .mbr-section-btn {
  text-align: center;
}
#custom-html-w0 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w0 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w0 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w0 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uqKR0xliwn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKR0xliwn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKR0xliwn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKR0xliwn .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKR0xliwn .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKR0xliwn .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqKR0xliwn .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKR0xliwn .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKR0xliwn .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKR0xliwn .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKR0xliwn .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKR0xliwn .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKR0xliwn .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKR0xliwn .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKR0xliwn .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKR0xliwn .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKR0xliwn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKR0xliwn .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKR0xliwn .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-upNT0CGneJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-upNT0CGneJ .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-upNT0CGneJ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-upNT0CGneJ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-upNT0CGneJ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .social_icons {
  text-align: center;
}
.cid-upNT0CGneJ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-upNT0CGneJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upNT0CGneJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upNT0CGneJ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-upNT0CGneJ .footer_timework {
    margin-top: 50px;
  }
  .cid-upNT0CGneJ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwegC7ObV P {
  color: #1281fc;
}
.cid-uJwegC7ObV DIV {
  color: #ffffff;
}
.cid-uJwegC7ObV H10 {
  color: #034e75;
}
.cid-uJwegC7ObV .hidden {
  display: none;
}
.cid-uJwegC7ObV .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwegC7ObV .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwegC7ObV .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwegC7ObV .flag {
  background: transparent;
}
.cid-uJwegC7ObV .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwegC7ObV .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwegC7ObV #google_translate_element {
  display: none;
}
.cid-uJwegC7ObV .goog-te-banner {
  display: none;
}
.cid-uJwegC7ObV .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwegC7ObV .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwegC7ObV body {
  top: 0px !important;
}
.cid-uJwegC7ObV body body {
  top: 0 !important;
}
.cid-uJwegC7ObV body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwegC7ObV .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwegC7ObV .goog-tooltip {
  display: none !important;
}
.cid-uJwegC7ObV .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwegC7ObV .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwegC7ObV #goog-gt-tt,
.cid-uJwegC7ObV .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwegC7ObV #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwegC7ObV .goog-logo-link {
  display: none !important;
}
.cid-uJwegC7ObV .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwegC7ObV div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwegC7ObV div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqK6vqzpKX {
  padding-top: 150px;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uqK6vqzpKX .text-content {
  padding-bottom: 135px;
}
.cid-uqK6vqzpKX .content-container .btn-bgr {
  z-index: 0;
}
.cid-uqK6vqzpKX .box-item-text {
  color: #767676;
}
.cid-uqK6vqzpKX .box-item {
  padding: 2.5rem;
}
.cid-uqK6vqzpKX .box-item:first-child {
  background-color: #ffffff;
}
.cid-uqK6vqzpKX .box-item:nth-child(2) {
  background-color: #9fdbf8;
}
.cid-uqK6vqzpKX .box-item:last-child {
  background-color: #ffffff;
}
.cid-uqK6vqzpKX .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-uqK6vqzpKX .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-uqK6vqzpKX .box-list li:last-child {
  border-bottom: none;
}
.cid-uqK6vqzpKX .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-uqK6vqzpKX .mbr-iconfont {
  color: #66458e;
  font-size: 48px;
}
@media (min-width: 992px) {
  .cid-uqK6vqzpKX .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-uqK6vqzpKX .mbr-section-subtitle,
  .cid-uqK6vqzpKX .mbr-section-title,
  .cid-uqK6vqzpKX .mbr-text,
  .cid-uqK6vqzpKX .mbr-section-btn,
  .cid-uqK6vqzpKX .icon-block-top,
  .cid-uqK6vqzpKX .box-item-title,
  .cid-uqK6vqzpKX .box-item-text {
    text-align: center !important;
  }
}
.cid-uqK6vqzpKX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqK6vqzpKX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKbafd21S {
  padding-top: 30px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #ffffff;
}
.cid-uqKbafd21S .mbr-section-subtitle {
  color: #767676;
}
.cid-uqKbafd21S .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uqKbafd21S .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uqKbafd21S .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uqKbafd21S .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uqKbafd21S .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #59585d;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uqKbafd21S .icon-focus {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uqKbafd21S .icon-focus:before {
  content: '+';
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uqKbafd21S .icon-video {
  font-size: 1.5rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-uqKbafd21S .icon-video:before {
  border-radius: 100px;
  background: #444444;
  width: 100%;
  height: 100%;
  padding-left: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uqKbafd21S .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-uqKbafd21S ul {
  font-size: 0;
}
.cid-uqKbafd21S .mbr-gallery-filter ul {
  text-align: left;
}
.cid-uqKbafd21S .mbr-gallery-filter ul li .btn {
  border: none !important;
  background-color: transparent;
  color: #59585d !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-uqKbafd21S .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-uqKbafd21S .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-uqKbafd21S .mbr-gallery-filter ul li:first-child,
.cid-uqKbafd21S .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-uqKbafd21S .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-uqKbafd21S .mbr-gallery-item > div:hover:before {
  opacity: 0 !important;
}
.cid-uqKbafd21S .btn {
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.cid-uqKbafd21S .btn.active:after {
  animation: none;
}
.cid-uqKbafd21S .btn:active {
  box-shadow: none !important;
}
.cid-uqKbafd21S .btn:hover {
  background: transparent !important;
}
.cid-uqKbafd21S .btn:hover:before {
  background: transparent !important;
}
.cid-uqKbafd21S .btn:before {
  background-color: transparent !important;
}
.cid-uqKbafd21S .btn:focus {
  box-shadow: none !important;
}
.cid-uqKbafd21S .mbr-section-title,
.cid-uqKbafd21S .mbr-gallery-filter ul {
  text-align: center;
}
.cid-uNcC0Wv1RW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcC0Wv1RW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcC0Wv1RW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcC0Wv1RW .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcC0Wv1RW .currentcost {
  color: #232323;
}
.cid-uNcC0Wv1RW .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcC0Wv1RW .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcC0Wv1RW .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcC0Wv1RW .text-box {
    padding: 1rem;
  }
}
.cid-uNcC0Wv1RW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqKln258Tb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqKln258Tb .item {
  display: flex;
  border-radius: 25px;
  background-color: #eff6fa;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .cid-uqKln258Tb .item {
    padding: 3rem 4.5rem 3rem 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uqKln258Tb .item {
    padding: 3rem;
    flex-direction: column;
  }
}
.cid-uqKln258Tb .icon-box {
  background: #ffffff;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 0.7rem;
}
@media (max-width: 991px) {
  .cid-uqKln258Tb .icon-box {
    margin-top: 0;
    margin-bottom: 1.2rem;
  }
}
.cid-uqKln258Tb .step-number {
  color: #91c2be;
}
@media (max-width: 991px) {
  .cid-uqKln258Tb .card {
    margin-bottom: 2rem;
  }
  .cid-uqKln258Tb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uqKln258Tb .card-title {
  color: #2e6b75;
}
.cid-uqKln258Tb .icon-text {
  color: #000000;
}
.cid-uqKln258Tb .icon-title {
  color: #2e6b75;
}
.cid-uqKln258Tb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKln258Tb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKln258Tb .card-title,
.cid-uqKln258Tb .card-box {
  text-align: center;
  color: #22a5e5;
}
.cid-useC2FSAqi {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-useC2FSAqi .container-fluid {
  padding: 0 3rem;
}
.cid-useC2FSAqi .mbr-section-subtitle {
  color: #767676;
}
.cid-useC2FSAqi .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-useC2FSAqi .table-wrapper {
  margin: 0 auto;
}
.cid-useC2FSAqi table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-useC2FSAqi table thead tr {
  border: none !important;
}
.cid-useC2FSAqi table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #9fdbf8;
}
.cid-useC2FSAqi table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-useC2FSAqi table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-useC2FSAqi table.table {
  background: #9fdbf8;
}
.cid-useC2FSAqi tr:hover {
  background-color: #22a5e5 !important;
}
.cid-useC2FSAqi .head-item:after,
.cid-useC2FSAqi .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-useC2FSAqi table th,
  .cid-useC2FSAqi table td {
    padding: .75rem;
  }
}
.cid-useC2FSAqi .body-item {
  text-align: center;
}
.cid-useC2FSAqi .head-item {
  color: #000000;
}
.cid-useC2FSAqi .mbr-text {
  color: #767676;
}
.cid-useC2FSAqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-useC2FSAqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-w8 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w8 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w8 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w8 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uqKeRyshEk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uqKeRyshEk .form-control,
.cid-uqKeRyshEk .form-control:focus {
  color: #5b686b !important;
  border: none;
  border-radius: 0 !important;
  background-color: transparent;
  padding: .5rem 0rem;
  border-bottom: 1px solid #5b686b;
}
.cid-uqKeRyshEk .form-control:focus,
.cid-uqKeRyshEk .form-control:focus:focus {
  outline: none;
}
.cid-uqKeRyshEk input::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-uqKeRyshEk input::-moz-placeholder {
  color: #5b686b;
}
.cid-uqKeRyshEk textarea::-webkit-input-placeholder {
  color: #5b686b;
}
.cid-uqKeRyshEk textarea::-moz-placeholder {
  color: #5b686b;
}
.cid-uqKeRyshEk .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-uqKeRyshEk .form-control {
  margin-bottom: 15px;
}
.cid-uqKeRyshEk .map {
  width: 100%;
  height: 30rem;
}
.cid-uqKeRyshEk .map iframe {
  width: inherit;
  height: 100%;
}
.cid-uqKeRyshEk .mbr-text {
  color: #767676;
}
.cid-uqKeRyshEk .input-group-btn {
  display: block;
}
.cid-uqKeRyshEk .google-map {
  height: 25rem;
  position: relative;
}
.cid-uqKeRyshEk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uqKeRyshEk .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uqKeRyshEk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqKeRyshEk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 768px) {
  .cid-uqKeRyshEk .mbr-section-subtitle,
  .cid-uqKeRyshEk .mbr-section-title {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .cid-uqKeRyshEk .mbr-form {
    padding-bottom: 2rem;
  }
}
.cid-uqKeRyshEk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKeRyshEk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKJm5PqLn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqKJm5PqLn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqKJm5PqLn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqKJm5PqLn .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #22a5e5;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqKJm5PqLn .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqKJm5PqLn .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22a5e5;
  opacity: .5;
}
.cid-uqKJm5PqLn .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqKJm5PqLn .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqKJm5PqLn .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqKJm5PqLn .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqKJm5PqLn .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqKJm5PqLn .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqKJm5PqLn .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqKJm5PqLn .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqKJm5PqLn .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqKJm5PqLn .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqKJm5PqLn .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKJm5PqLn .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqKJm5PqLn .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uti6tNsBfy {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uti6tNsBfy .title__block {
  padding-bottom: 40px;
}
.cid-uti6tNsBfy .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-uti6tNsBfy .mbr-section-title b,
.cid-uti6tNsBfy .mbr-section-title strong {
  font-weight: 500;
}
.cid-uti6tNsBfy .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uti6tNsBfy .mbr-text {
  margin-bottom: 43px;
}
.cid-uti6tNsBfy .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-uti6tNsBfy .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-uti6tNsBfy .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-uti6tNsBfy .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-uti6tNsBfy .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-uti6tNsBfy .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-uti6tNsBfy .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-uti6tNsBfy .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-uti6tNsBfy .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uti6tNsBfy .row {
    text-align: center;
  }
  .cid-uti6tNsBfy .title__block {
    padding-bottom: 0;
  }
  .cid-uti6tNsBfy .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-uti6tNsBfy .figure:before {
    content: none;
  }
  .cid-uti6tNsBfy .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uti6tNsBfy .mbr-text {
    margin-bottom: 30px;
  }
  .cid-uti6tNsBfy .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-uti6tNsBfy .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-uti6tNsBfy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tNsBfy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6tOfXEJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uti6tOfXEJ .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uti6tOfXEJ .mbr-section-title b,
.cid-uti6tOfXEJ .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uti6tOfXEJ .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uti6tOfXEJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tOfXEJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6zdI34T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uti6zdI34T .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uti6zdI34T .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uti6zdI34T .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uti6zdI34T .wrapper {
  height: 100%;
}
.cid-uti6zdI34T img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uti6zdI34T .mbr-section-subtitle {
  text-align: center;
}
.cid-uti6zdI34T .mbr-section-title {
  text-align: center;
}
.cid-uti6zdI34T .card-title {
  text-align: center;
}
.cid-uti6zdI34T .mbr-text {
  text-align: left;
}
.cid-uti6zYlz8D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti6zYlz8D .right {
  display: flex;
  flex-direction: column;
}
.cid-uti6zYlz8D .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-uti6zYlz8D .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-uti6zYlz8D .last-p {
  padding-bottom: 0;
}
.cid-uti6zYlz8D .row {
  justify-content: center;
}
.cid-uti6zYlz8D a {
  font-weight: 600;
}
.cid-uti6zYlz8D .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-uti6zYlz8D .quote {
    padding: 15px;
  }
}
.cid-uNcDvwPDBU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDvwPDBU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDvwPDBU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDvwPDBU .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDvwPDBU .currentcost {
  color: #232323;
}
.cid-uNcDvwPDBU .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDvwPDBU .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDvwPDBU .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDvwPDBU .text-box {
    padding: 1rem;
  }
}
.cid-uNcDvwPDBU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uti6C2Y4W9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti6C2Y4W9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6C2Y4W9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6C2Y4W9 .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uti6C2Y4W9 img {
  margin: auto;
  width: 140px;
}
.cid-uti6C2Y4W9 .row {
  align-items: flex-start;
}
.cid-uti6C2Y4W9 .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-uti6C2Y4W9 .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uti6C2Y4W9 .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6C2Y4W9 .item-wrapper {
    padding: 1rem;
  }
}
.cid-uti6tPBsOi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uti6tPBsOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tPBsOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6tPBsOi .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uti6tPBsOi .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uti6tPBsOi .container {
    padding: 0 24px;
  }
}
.cid-uti6tPBsOi .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .content-wrapper {
    display: block;
  }
}
.cid-uti6tPBsOi .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uti6tPBsOi .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uti6tPBsOi .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uti6tPBsOi .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uti6tPBsOi .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uti6tPBsOi .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uti6tPBsOi .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uti6tPBsOi .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uti6tPBsOi .mbr-section-title {
  color: #18212d;
}
.cid-uti6tPBsOi .mbr-desc {
  color: #18212d;
}
.cid-uti6tPBsOi .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uti6tQarAe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uti6tQarAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tQarAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uti6tQarAe .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tQarAe .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uti6tQarAe .google-map {
  height: 100%;
  position: relative;
}
.cid-uti6tQarAe .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uti6tQarAe .google-map iframe {
    min-height: 350px;
  }
}
.cid-uti6tQarAe .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-uti6tQarAe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uti6tQarAe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uti6tQarAe .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uti6tQarAe .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tQarAe .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uti6tQarAe ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uti6tQarAe .content-head {
  max-width: 800px;
}
.cid-uti6tQarAe .cardTitle {
  text-align: center;
}
.cid-uti6tQarAe .list,
.cid-uti6tQarAe .item-wrap {
  text-align: center;
}
.cid-uti6tRlRM7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uti6tRlRM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tRlRM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uti6tRlRM7 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tRlRM7 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uti6tRlRM7 .google-map {
  height: 100%;
  position: relative;
}
.cid-uti6tRlRM7 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uti6tRlRM7 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uti6tRlRM7 .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-uti6tRlRM7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uti6tRlRM7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uti6tRlRM7 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uti6tRlRM7 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tRlRM7 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uti6tRlRM7 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uti6tRlRM7 .content-head {
  max-width: 800px;
}
.cid-uti6tRlRM7 .cardTitle {
  text-align: center;
}
.cid-uti6tRlRM7 .list,
.cid-uti6tRlRM7 .item-wrap {
  text-align: center;
}
.cid-uti6tSuHqT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uti6tSuHqT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tSuHqT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uti6tSuHqT .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tSuHqT .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uti6tSuHqT .google-map {
  height: 100%;
  position: relative;
}
.cid-uti6tSuHqT .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uti6tSuHqT .google-map iframe {
    min-height: 350px;
  }
}
.cid-uti6tSuHqT .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-uti6tSuHqT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uti6tSuHqT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uti6tSuHqT .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uti6tSuHqT .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tSuHqT .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uti6tSuHqT ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uti6tSuHqT .content-head {
  max-width: 800px;
}
.cid-uti6tSuHqT .cardTitle {
  text-align: center;
}
.cid-uti6tSuHqT .list,
.cid-uti6tSuHqT .item-wrap {
  text-align: center;
}
.cid-uti6tTKbBP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uti6tTKbBP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tTKbBP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uti6tTKbBP .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tTKbBP .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uti6tTKbBP .google-map {
  height: 100%;
  position: relative;
}
.cid-uti6tTKbBP .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uti6tTKbBP .google-map iframe {
    min-height: 350px;
  }
}
.cid-uti6tTKbBP .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-uti6tTKbBP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uti6tTKbBP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uti6tTKbBP .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uti6tTKbBP .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tTKbBP .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uti6tTKbBP ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uti6tTKbBP .content-head {
  max-width: 800px;
}
.cid-uti6tTKbBP .cardTitle {
  text-align: center;
}
.cid-uti6tTKbBP .list,
.cid-uti6tTKbBP .item-wrap {
  text-align: center;
}
.cid-uti6tUZeTs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uti6tUZeTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6tUZeTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uti6tUZeTs .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tUZeTs .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uti6tUZeTs .google-map {
  height: 100%;
  position: relative;
}
.cid-uti6tUZeTs .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uti6tUZeTs .google-map iframe {
    min-height: 350px;
  }
}
.cid-uti6tUZeTs .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-uti6tUZeTs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uti6tUZeTs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uti6tUZeTs .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uti6tUZeTs .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uti6tUZeTs .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uti6tUZeTs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uti6tUZeTs .content-head {
  max-width: 800px;
}
.cid-uti6tUZeTs .cardTitle {
  text-align: center;
}
.cid-uti6tUZeTs .list,
.cid-uti6tUZeTs .item-wrap {
  text-align: center;
}
.cid-uti6tWjwg0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uti6tWjwg0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uti6tWjwg0 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uti6tWjwg0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uti6tWjwg0 .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uti6tWjwg0 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uti6tWjwg0 .mbr-text,
.cid-uti6tWjwg0 .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vs .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vs .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vs .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vs .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uti6Fgg1Yw {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/walczak-18-2000x1600.jpg");
}
.cid-uti6Fgg1Yw .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-uti6uNA84P {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uti6uNA84P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6uNA84P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6uNA84P .mbr-text,
.cid-uti6uNA84P .mbr-section-btn {
  color: #232323;
}
.cid-uti6uNA84P .card-title,
.cid-uti6uNA84P .card-box {
  color: #ffffff;
}
.cid-uti6uNA84P .mbr-text,
.cid-uti6uNA84P .link-wrap {
  color: #ffffff;
}
.cid-uti6uOsbZq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti6uOsbZq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uti6uOsbZq form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uti6uOsbZq form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uti6uOsbZq form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDqKFBio {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDqKFBio .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDqKFBio .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDqKFBio .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDqKFBio .currentcost {
  color: #232323;
}
.cid-uNcDqKFBio .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDqKFBio .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDqKFBio .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDqKFBio .text-box {
    padding: 1rem;
  }
}
.cid-uNcDqKFBio .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uti6uPnVuH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti6uPnVuH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti6uPnVuH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti6uPnVuH .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uti6uPnVuH .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uti6uPnVuH .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uti6uPnVuH .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uti6uPnVuH .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uti6uPnVuH .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uti6uPnVuH .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uti6uPnVuH .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uti6uPnVuH .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uti6uPnVuH .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uti6uPnVuH .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uti6uPnVuH .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uti6uPnVuH .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uti6uPnVuH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uti6uPnVuH .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uti6uPnVuH .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uti6uQl43S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uti6uQl43S .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uti6uQl43S .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uti6uQl43S .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uti6uQl43S .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uti6uQl43S .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uti6uQl43S .social_icons {
  text-align: center;
}
.cid-uti6uQl43S .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uti6uQl43S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uti6uQl43S .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uti6uQl43S .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uti6uQl43S .footer_timework {
    margin-top: 50px;
  }
  .cid-uti6uQl43S .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweUlehbz P {
  color: #1281fc;
}
.cid-uJweUlehbz DIV {
  color: #ffffff;
}
.cid-uJweUlehbz H10 {
  color: #034e75;
}
.cid-uJweUlehbz .hidden {
  display: none;
}
.cid-uJweUlehbz .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweUlehbz .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweUlehbz .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweUlehbz .flag {
  background: transparent;
}
.cid-uJweUlehbz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweUlehbz .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweUlehbz #google_translate_element {
  display: none;
}
.cid-uJweUlehbz .goog-te-banner {
  display: none;
}
.cid-uJweUlehbz .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweUlehbz .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweUlehbz body {
  top: 0px !important;
}
.cid-uJweUlehbz body body {
  top: 0 !important;
}
.cid-uJweUlehbz body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweUlehbz .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweUlehbz .goog-tooltip {
  display: none !important;
}
.cid-uJweUlehbz .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweUlehbz .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweUlehbz #goog-gt-tt,
.cid-uJweUlehbz .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweUlehbz #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweUlehbz .goog-logo-link {
  display: none !important;
}
.cid-uJweUlehbz .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweUlehbz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweUlehbz div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uti9WudFPr {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uti9WudFPr .title__block {
  padding-bottom: 40px;
}
.cid-uti9WudFPr .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-uti9WudFPr .mbr-section-title b,
.cid-uti9WudFPr .mbr-section-title strong {
  font-weight: 500;
}
.cid-uti9WudFPr .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uti9WudFPr .mbr-text {
  margin-bottom: 43px;
}
.cid-uti9WudFPr .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-uti9WudFPr .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-uti9WudFPr .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-uti9WudFPr .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-uti9WudFPr .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-uti9WudFPr .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-uti9WudFPr .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-uti9WudFPr .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-uti9WudFPr .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uti9WudFPr .row {
    text-align: center;
  }
  .cid-uti9WudFPr .title__block {
    padding-bottom: 0;
  }
  .cid-uti9WudFPr .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-uti9WudFPr .figure:before {
    content: none;
  }
  .cid-uti9WudFPr .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uti9WudFPr .mbr-text {
    margin-bottom: 30px;
  }
  .cid-uti9WudFPr .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-uti9WudFPr .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-uti9WudFPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti9WudFPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti9WuDZCm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uti9WuDZCm .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uti9WuDZCm .mbr-section-title b,
.cid-uti9WuDZCm .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uti9WuDZCm .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uti9WuDZCm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti9WuDZCm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utia6gnZby {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-utia6gnZby .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-utia6gnZby .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-utia6gnZby .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-utia6gnZby .wrapper {
  height: 100%;
}
.cid-utia6gnZby img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-utia6gnZby .mbr-section-subtitle {
  text-align: center;
}
.cid-utia6gnZby .mbr-section-title {
  text-align: center;
}
.cid-utia6gnZby .card-title {
  text-align: center;
}
.cid-utia6gnZby .mbr-text {
  text-align: left;
}
.cid-utia7C2XTo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utia7C2XTo .right {
  display: flex;
  flex-direction: column;
}
.cid-utia7C2XTo .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-utia7C2XTo .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-utia7C2XTo .last-p {
  padding-bottom: 0;
}
.cid-utia7C2XTo .row {
  justify-content: center;
}
.cid-utia7C2XTo a {
  font-weight: 600;
}
.cid-utia7C2XTo .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-utia7C2XTo .quote {
    padding: 15px;
  }
}
.cid-uNcDAFf4Bc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDAFf4Bc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDAFf4Bc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDAFf4Bc .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDAFf4Bc .currentcost {
  color: #232323;
}
.cid-uNcDAFf4Bc .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDAFf4Bc .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDAFf4Bc .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDAFf4Bc .text-box {
    padding: 1rem;
  }
}
.cid-uNcDAFf4Bc .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utia8Xlq9m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utia8Xlq9m .mbr-fallback-image.disabled {
  display: none;
}
.cid-utia8Xlq9m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utia8Xlq9m .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-utia8Xlq9m img {
  margin: auto;
  width: 140px;
}
.cid-utia8Xlq9m .row {
  align-items: flex-start;
}
.cid-utia8Xlq9m .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-utia8Xlq9m .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-utia8Xlq9m .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utia8Xlq9m .item-wrapper {
    padding: 1rem;
  }
}
.cid-utiad0fGLf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utiad0fGLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiad0fGLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiad0fGLf .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utiad0fGLf .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utiad0fGLf .container {
    padding: 0 24px;
  }
}
.cid-utiad0fGLf .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .content-wrapper {
    display: block;
  }
}
.cid-utiad0fGLf .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-utiad0fGLf .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-utiad0fGLf .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-utiad0fGLf .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-utiad0fGLf .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-utiad0fGLf .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-utiad0fGLf .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-utiad0fGLf .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-utiad0fGLf .mbr-section-title {
  color: #18212d;
}
.cid-utiad0fGLf .mbr-desc {
  color: #18212d;
}
.cid-utiad0fGLf .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-utiah9dnNU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiah9dnNU .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiah9dnNU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiah9dnNU .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiah9dnNU .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiah9dnNU .google-map {
  height: 100%;
  position: relative;
}
.cid-utiah9dnNU .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiah9dnNU .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiah9dnNU .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-utiah9dnNU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiah9dnNU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiah9dnNU .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiah9dnNU .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiah9dnNU .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiah9dnNU ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiah9dnNU .content-head {
  max-width: 800px;
}
.cid-utiah9dnNU .cardTitle {
  text-align: center;
}
.cid-utiah9dnNU .list,
.cid-utiah9dnNU .item-wrap {
  text-align: center;
}
.cid-utiahQKJeh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiahQKJeh .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiahQKJeh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiahQKJeh .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiahQKJeh .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiahQKJeh .google-map {
  height: 100%;
  position: relative;
}
.cid-utiahQKJeh .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiahQKJeh .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiahQKJeh .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-utiahQKJeh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiahQKJeh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiahQKJeh .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiahQKJeh .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiahQKJeh .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiahQKJeh ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiahQKJeh .content-head {
  max-width: 800px;
}
.cid-utiahQKJeh .cardTitle {
  text-align: center;
}
.cid-utiahQKJeh .list,
.cid-utiahQKJeh .item-wrap {
  text-align: center;
}
.cid-utiajaeBlU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiajaeBlU .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiajaeBlU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiajaeBlU .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiajaeBlU .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiajaeBlU .google-map {
  height: 100%;
  position: relative;
}
.cid-utiajaeBlU .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiajaeBlU .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiajaeBlU .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-utiajaeBlU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiajaeBlU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiajaeBlU .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiajaeBlU .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiajaeBlU .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiajaeBlU ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiajaeBlU .content-head {
  max-width: 800px;
}
.cid-utiajaeBlU .cardTitle {
  text-align: center;
}
.cid-utiajaeBlU .list,
.cid-utiajaeBlU .item-wrap {
  text-align: center;
}
.cid-utial0uFWB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utial0uFWB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utial0uFWB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utial0uFWB .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utial0uFWB .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utial0uFWB .google-map {
  height: 100%;
  position: relative;
}
.cid-utial0uFWB .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utial0uFWB .google-map iframe {
    min-height: 350px;
  }
}
.cid-utial0uFWB .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-utial0uFWB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utial0uFWB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utial0uFWB .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utial0uFWB .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utial0uFWB .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utial0uFWB ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utial0uFWB .content-head {
  max-width: 800px;
}
.cid-utial0uFWB .cardTitle {
  text-align: center;
}
.cid-utial0uFWB .list,
.cid-utial0uFWB .item-wrap {
  text-align: center;
}
.cid-utiamghrqJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiamghrqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiamghrqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiamghrqJ .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiamghrqJ .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiamghrqJ .google-map {
  height: 100%;
  position: relative;
}
.cid-utiamghrqJ .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiamghrqJ .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiamghrqJ .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-utiamghrqJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiamghrqJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiamghrqJ .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiamghrqJ .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiamghrqJ .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiamghrqJ ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiamghrqJ .content-head {
  max-width: 800px;
}
.cid-utiamghrqJ .cardTitle {
  text-align: center;
}
.cid-utiamghrqJ .list,
.cid-utiamghrqJ .item-wrap {
  text-align: center;
}
.cid-utiaVUycXJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utiaVUycXJ .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-utiaVUycXJ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utiaVUycXJ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-utiaVUycXJ .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-utiaVUycXJ .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utiaVUycXJ .mbr-text,
.cid-utiaVUycXJ .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vt .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vt .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vt .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vt .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-utiansZ9aO {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/ukasz-lewandowski-web-5-1295x1036.jpeg");
}
.cid-utiansZ9aO .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-uti9WzqnSO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-uti9WzqnSO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti9WzqnSO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti9WzqnSO .mbr-text,
.cid-uti9WzqnSO .mbr-section-btn {
  color: #232323;
}
.cid-uti9WzqnSO .card-title,
.cid-uti9WzqnSO .card-box {
  color: #ffffff;
}
.cid-uti9WzqnSO .mbr-text,
.cid-uti9WzqnSO .link-wrap {
  color: #ffffff;
}
.cid-uti9WzOSA2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti9WzOSA2 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uti9WzOSA2 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uti9WzOSA2 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uti9WzOSA2 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDBFS41o {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDBFS41o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDBFS41o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDBFS41o .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDBFS41o .currentcost {
  color: #232323;
}
.cid-uNcDBFS41o .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDBFS41o .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDBFS41o .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDBFS41o .text-box {
    padding: 1rem;
  }
}
.cid-uNcDBFS41o .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uti9WAgSOE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uti9WAgSOE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uti9WAgSOE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uti9WAgSOE .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uti9WAgSOE .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uti9WAgSOE .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uti9WAgSOE .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uti9WAgSOE .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uti9WAgSOE .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uti9WAgSOE .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uti9WAgSOE .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uti9WAgSOE .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uti9WAgSOE .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uti9WAgSOE .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uti9WAgSOE .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uti9WAgSOE .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uti9WAgSOE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uti9WAgSOE .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uti9WAgSOE .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uti9WAFGgQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uti9WAFGgQ .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uti9WAFGgQ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uti9WAFGgQ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uti9WAFGgQ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uti9WAFGgQ .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uti9WAFGgQ .social_icons {
  text-align: center;
}
.cid-uti9WAFGgQ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uti9WAFGgQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uti9WAFGgQ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uti9WAFGgQ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uti9WAFGgQ .footer_timework {
    margin-top: 50px;
  }
  .cid-uti9WAFGgQ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweW87fd3 P {
  color: #1281fc;
}
.cid-uJweW87fd3 DIV {
  color: #ffffff;
}
.cid-uJweW87fd3 H10 {
  color: #034e75;
}
.cid-uJweW87fd3 .hidden {
  display: none;
}
.cid-uJweW87fd3 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweW87fd3 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweW87fd3 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweW87fd3 .flag {
  background: transparent;
}
.cid-uJweW87fd3 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweW87fd3 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweW87fd3 #google_translate_element {
  display: none;
}
.cid-uJweW87fd3 .goog-te-banner {
  display: none;
}
.cid-uJweW87fd3 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweW87fd3 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweW87fd3 body {
  top: 0px !important;
}
.cid-uJweW87fd3 body body {
  top: 0 !important;
}
.cid-uJweW87fd3 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweW87fd3 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweW87fd3 .goog-tooltip {
  display: none !important;
}
.cid-uJweW87fd3 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweW87fd3 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweW87fd3 #goog-gt-tt,
.cid-uJweW87fd3 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweW87fd3 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweW87fd3 .goog-logo-link {
  display: none !important;
}
.cid-uJweW87fd3 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweW87fd3 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweW87fd3 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uticgtxLee {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uticgtxLee .title__block {
  padding-bottom: 40px;
}
.cid-uticgtxLee .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-uticgtxLee .mbr-section-title b,
.cid-uticgtxLee .mbr-section-title strong {
  font-weight: 500;
}
.cid-uticgtxLee .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uticgtxLee .mbr-text {
  margin-bottom: 43px;
}
.cid-uticgtxLee .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-uticgtxLee .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-uticgtxLee .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-uticgtxLee .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-uticgtxLee .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-uticgtxLee .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-uticgtxLee .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-uticgtxLee .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-uticgtxLee .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uticgtxLee .row {
    text-align: center;
  }
  .cid-uticgtxLee .title__block {
    padding-bottom: 0;
  }
  .cid-uticgtxLee .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-uticgtxLee .figure:before {
    content: none;
  }
  .cid-uticgtxLee .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uticgtxLee .mbr-text {
    margin-bottom: 30px;
  }
  .cid-uticgtxLee .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-uticgtxLee .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-uticgtxLee .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticgtxLee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticgtVf94 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uticgtVf94 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uticgtVf94 .mbr-section-title b,
.cid-uticgtVf94 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uticgtVf94 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uticgtVf94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticgtVf94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticwLxJwT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uticwLxJwT .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uticwLxJwT .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uticwLxJwT .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uticwLxJwT .wrapper {
  height: 100%;
}
.cid-uticwLxJwT img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uticwLxJwT .mbr-section-subtitle {
  text-align: center;
}
.cid-uticwLxJwT .mbr-section-title {
  text-align: center;
}
.cid-uticwLxJwT .card-title {
  text-align: center;
}
.cid-uticwLxJwT .mbr-text {
  text-align: left;
}
.cid-uticyAtKJF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uticyAtKJF .right {
  display: flex;
  flex-direction: column;
}
.cid-uticyAtKJF .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-uticyAtKJF .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-uticyAtKJF .last-p {
  padding-bottom: 0;
}
.cid-uticyAtKJF .row {
  justify-content: center;
}
.cid-uticyAtKJF a {
  font-weight: 600;
}
.cid-uticyAtKJF .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-uticyAtKJF .quote {
    padding: 15px;
  }
}
.cid-uNcDGyS7Jt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDGyS7Jt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDGyS7Jt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDGyS7Jt .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDGyS7Jt .currentcost {
  color: #232323;
}
.cid-uNcDGyS7Jt .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDGyS7Jt .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDGyS7Jt .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDGyS7Jt .text-box {
    padding: 1rem;
  }
}
.cid-uNcDGyS7Jt .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uticzIYtHH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uticzIYtHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticzIYtHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticzIYtHH .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-uticzIYtHH img {
  margin: auto;
  width: 140px;
}
.cid-uticzIYtHH .row {
  align-items: flex-start;
}
.cid-uticzIYtHH .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-uticzIYtHH .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uticzIYtHH .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticzIYtHH .item-wrapper {
    padding: 1rem;
  }
}
.cid-uticG7aj3T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uticG7aj3T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticG7aj3T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticG7aj3T .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uticG7aj3T .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uticG7aj3T .container {
    padding: 0 24px;
  }
}
.cid-uticG7aj3T .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .content-wrapper {
    display: block;
  }
}
.cid-uticG7aj3T .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uticG7aj3T .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uticG7aj3T .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uticG7aj3T .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uticG7aj3T .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uticG7aj3T .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uticG7aj3T .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uticG7aj3T .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uticG7aj3T .mbr-section-title {
  color: #18212d;
}
.cid-uticG7aj3T .mbr-desc {
  color: #18212d;
}
.cid-uticG7aj3T .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uticJeN7iG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uticJeN7iG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticJeN7iG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uticJeN7iG .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticJeN7iG .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uticJeN7iG .google-map {
  height: 100%;
  position: relative;
}
.cid-uticJeN7iG .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uticJeN7iG .google-map iframe {
    min-height: 350px;
  }
}
.cid-uticJeN7iG .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-uticJeN7iG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uticJeN7iG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uticJeN7iG .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uticJeN7iG .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uticJeN7iG .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uticJeN7iG ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uticJeN7iG .content-head {
  max-width: 800px;
}
.cid-uticJeN7iG .cardTitle {
  text-align: center;
}
.cid-uticJeN7iG .list,
.cid-uticJeN7iG .item-wrap {
  text-align: center;
}
.cid-uticKhmU7t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uticKhmU7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticKhmU7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uticKhmU7t .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticKhmU7t .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uticKhmU7t .google-map {
  height: 100%;
  position: relative;
}
.cid-uticKhmU7t .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uticKhmU7t .google-map iframe {
    min-height: 350px;
  }
}
.cid-uticKhmU7t .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-uticKhmU7t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uticKhmU7t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uticKhmU7t .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uticKhmU7t .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uticKhmU7t .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uticKhmU7t ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uticKhmU7t .content-head {
  max-width: 800px;
}
.cid-uticKhmU7t .cardTitle {
  text-align: center;
}
.cid-uticKhmU7t .list,
.cid-uticKhmU7t .item-wrap {
  text-align: center;
}
.cid-uticMj1H6U {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uticMj1H6U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticMj1H6U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uticMj1H6U .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticMj1H6U .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uticMj1H6U .google-map {
  height: 100%;
  position: relative;
}
.cid-uticMj1H6U .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uticMj1H6U .google-map iframe {
    min-height: 350px;
  }
}
.cid-uticMj1H6U .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-uticMj1H6U .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uticMj1H6U .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uticMj1H6U .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uticMj1H6U .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uticMj1H6U .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uticMj1H6U ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uticMj1H6U .content-head {
  max-width: 800px;
}
.cid-uticMj1H6U .cardTitle {
  text-align: center;
}
.cid-uticMj1H6U .list,
.cid-uticMj1H6U .item-wrap {
  text-align: center;
}
.cid-uticNkoyum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uticNkoyum .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticNkoyum .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uticNkoyum .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticNkoyum .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uticNkoyum .google-map {
  height: 100%;
  position: relative;
}
.cid-uticNkoyum .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uticNkoyum .google-map iframe {
    min-height: 350px;
  }
}
.cid-uticNkoyum .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-uticNkoyum .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uticNkoyum .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uticNkoyum .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uticNkoyum .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uticNkoyum .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uticNkoyum ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uticNkoyum .content-head {
  max-width: 800px;
}
.cid-uticNkoyum .cardTitle {
  text-align: center;
}
.cid-uticNkoyum .list,
.cid-uticNkoyum .item-wrap {
  text-align: center;
}
.cid-uticOmW2Ri {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uticOmW2Ri .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticOmW2Ri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uticOmW2Ri .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uticOmW2Ri .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uticOmW2Ri .google-map {
  height: 100%;
  position: relative;
}
.cid-uticOmW2Ri .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uticOmW2Ri .google-map iframe {
    min-height: 350px;
  }
}
.cid-uticOmW2Ri .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-uticOmW2Ri .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uticOmW2Ri .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uticOmW2Ri .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uticOmW2Ri .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uticOmW2Ri .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uticOmW2Ri ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uticOmW2Ri .content-head {
  max-width: 800px;
}
.cid-uticOmW2Ri .cardTitle {
  text-align: center;
}
.cid-uticOmW2Ri .list,
.cid-uticOmW2Ri .item-wrap {
  text-align: center;
}
.cid-uticPRFuT3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uticPRFuT3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uticPRFuT3 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uticPRFuT3 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uticPRFuT3 .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uticPRFuT3 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uticPRFuT3 .mbr-text,
.cid-uticPRFuT3 .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vu .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vu .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vu .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vu .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uticTeK05Q {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/wioleta-kaczmarek-46-995x796.jpeg");
}
.cid-uticTeK05Q .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-uticgyOuzo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #22a5e5;
}
.cid-uticgyOuzo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticgyOuzo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticgyOuzo .mbr-text,
.cid-uticgyOuzo .mbr-section-btn {
  color: #232323;
}
.cid-uticgyOuzo .card-title,
.cid-uticgyOuzo .card-box {
  color: #ffffff;
}
.cid-uticgyOuzo .mbr-text,
.cid-uticgyOuzo .link-wrap {
  color: #ffffff;
}
.cid-uticgzadty {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uticgzadty .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uticgzadty form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uticgzadty form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uticgzadty form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDFtJ7FN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDFtJ7FN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDFtJ7FN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDFtJ7FN .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDFtJ7FN .currentcost {
  color: #232323;
}
.cid-uNcDFtJ7FN .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDFtJ7FN .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDFtJ7FN .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDFtJ7FN .text-box {
    padding: 1rem;
  }
}
.cid-uNcDFtJ7FN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uticgzzYVD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uticgzzYVD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uticgzzYVD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uticgzzYVD .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uticgzzYVD .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uticgzzYVD .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uticgzzYVD .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uticgzzYVD .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uticgzzYVD .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uticgzzYVD .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uticgzzYVD .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uticgzzYVD .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uticgzzYVD .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uticgzzYVD .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uticgzzYVD .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uticgzzYVD .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uticgzzYVD .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uticgzzYVD .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uticgzzYVD .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uticgA2roW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uticgA2roW .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uticgA2roW .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uticgA2roW .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uticgA2roW .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uticgA2roW .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uticgA2roW .social_icons {
  text-align: center;
}
.cid-uticgA2roW .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uticgA2roW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uticgA2roW .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uticgA2roW .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uticgA2roW .footer_timework {
    margin-top: 50px;
  }
  .cid-uticgA2roW .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweXMEI9I P {
  color: #1281fc;
}
.cid-uJweXMEI9I DIV {
  color: #ffffff;
}
.cid-uJweXMEI9I H10 {
  color: #034e75;
}
.cid-uJweXMEI9I .hidden {
  display: none;
}
.cid-uJweXMEI9I .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweXMEI9I .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweXMEI9I .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweXMEI9I .flag {
  background: transparent;
}
.cid-uJweXMEI9I .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweXMEI9I .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweXMEI9I #google_translate_element {
  display: none;
}
.cid-uJweXMEI9I .goog-te-banner {
  display: none;
}
.cid-uJweXMEI9I .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweXMEI9I .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweXMEI9I body {
  top: 0px !important;
}
.cid-uJweXMEI9I body body {
  top: 0 !important;
}
.cid-uJweXMEI9I body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweXMEI9I .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweXMEI9I .goog-tooltip {
  display: none !important;
}
.cid-uJweXMEI9I .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweXMEI9I .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweXMEI9I #goog-gt-tt,
.cid-uJweXMEI9I .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweXMEI9I #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweXMEI9I .goog-logo-link {
  display: none !important;
}
.cid-uJweXMEI9I .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweXMEI9I div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweXMEI9I div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utidIWFaH7 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-utidIWFaH7 .title__block {
  padding-bottom: 40px;
}
.cid-utidIWFaH7 .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-utidIWFaH7 .mbr-section-title b,
.cid-utidIWFaH7 .mbr-section-title strong {
  font-weight: 500;
}
.cid-utidIWFaH7 .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-utidIWFaH7 .mbr-text {
  margin-bottom: 43px;
}
.cid-utidIWFaH7 .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-utidIWFaH7 .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-utidIWFaH7 .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-utidIWFaH7 .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-utidIWFaH7 .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-utidIWFaH7 .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-utidIWFaH7 .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-utidIWFaH7 .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-utidIWFaH7 .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utidIWFaH7 .row {
    text-align: center;
  }
  .cid-utidIWFaH7 .title__block {
    padding-bottom: 0;
  }
  .cid-utidIWFaH7 .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-utidIWFaH7 .figure:before {
    content: none;
  }
  .cid-utidIWFaH7 .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-utidIWFaH7 .mbr-text {
    margin-bottom: 30px;
  }
  .cid-utidIWFaH7 .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-utidIWFaH7 .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-utidIWFaH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utidIWFaH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utidIY3GRk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-utidIY3GRk .mbr-section-title {
  margin-bottom: 35px;
}
.cid-utidIY3GRk .mbr-section-title b,
.cid-utidIY3GRk .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-utidIY3GRk .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-utidIY3GRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-utidIY3GRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utieFwzbQr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-utieFwzbQr .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-utieFwzbQr .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-utieFwzbQr .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-utieFwzbQr .wrapper {
  height: 100%;
}
.cid-utieFwzbQr img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-utieFwzbQr .mbr-section-subtitle {
  text-align: center;
}
.cid-utieFwzbQr .mbr-section-title {
  text-align: center;
}
.cid-utieFwzbQr .card-title {
  text-align: center;
}
.cid-utieFwzbQr .mbr-text {
  text-align: left;
}
.cid-utieGFTWye {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utieGFTWye .right {
  display: flex;
  flex-direction: column;
}
.cid-utieGFTWye .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-utieGFTWye .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-utieGFTWye .last-p {
  padding-bottom: 0;
}
.cid-utieGFTWye .row {
  justify-content: center;
}
.cid-utieGFTWye a {
  font-weight: 600;
}
.cid-utieGFTWye .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-utieGFTWye .quote {
    padding: 15px;
  }
}
.cid-uNcDJPhnyh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDJPhnyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDJPhnyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDJPhnyh .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDJPhnyh .currentcost {
  color: #232323;
}
.cid-uNcDJPhnyh .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDJPhnyh .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDJPhnyh .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDJPhnyh .text-box {
    padding: 1rem;
  }
}
.cid-uNcDJPhnyh .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utieHK8MLP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utieHK8MLP .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieHK8MLP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utieHK8MLP .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-utieHK8MLP img {
  margin: auto;
  width: 140px;
}
.cid-utieHK8MLP .row {
  align-items: flex-start;
}
.cid-utieHK8MLP .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-utieHK8MLP .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-utieHK8MLP .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieHK8MLP .item-wrapper {
    padding: 1rem;
  }
}
.cid-utieKK4493 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utieKK4493 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieKK4493 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utieKK4493 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-utieKK4493 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utieKK4493 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-utieKK4493 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utieKK4493 .container {
    padding: 0 24px;
  }
}
.cid-utieKK4493 .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-utieKK4493 .content-wrapper {
    display: block;
  }
}
.cid-utieKK4493 .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-utieKK4493 .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-utieKK4493 .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-utieKK4493 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-utieKK4493 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-utieKK4493 .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-utieKK4493 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-utieKK4493 .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-utieKK4493 .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-utieKK4493 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-utieKK4493 .mbr-section-title {
  color: #18212d;
}
.cid-utieKK4493 .mbr-desc {
  color: #18212d;
}
.cid-utieKK4493 .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-utieMhG2kn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utieMhG2kn .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieMhG2kn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utieMhG2kn .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieMhG2kn .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utieMhG2kn .google-map {
  height: 100%;
  position: relative;
}
.cid-utieMhG2kn .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utieMhG2kn .google-map iframe {
    min-height: 350px;
  }
}
.cid-utieMhG2kn .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-utieMhG2kn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utieMhG2kn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utieMhG2kn .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utieMhG2kn .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utieMhG2kn .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utieMhG2kn ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utieMhG2kn .content-head {
  max-width: 800px;
}
.cid-utieMhG2kn .cardTitle {
  text-align: center;
}
.cid-utieMhG2kn .list,
.cid-utieMhG2kn .item-wrap {
  text-align: center;
}
.cid-utieMYZNhB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utieMYZNhB .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieMYZNhB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utieMYZNhB .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieMYZNhB .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utieMYZNhB .google-map {
  height: 100%;
  position: relative;
}
.cid-utieMYZNhB .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utieMYZNhB .google-map iframe {
    min-height: 350px;
  }
}
.cid-utieMYZNhB .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-utieMYZNhB .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utieMYZNhB .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utieMYZNhB .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utieMYZNhB .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utieMYZNhB .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utieMYZNhB ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utieMYZNhB .content-head {
  max-width: 800px;
}
.cid-utieMYZNhB .cardTitle {
  text-align: center;
}
.cid-utieMYZNhB .list,
.cid-utieMYZNhB .item-wrap {
  text-align: center;
}
.cid-utieNzMUao {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utieNzMUao .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieNzMUao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utieNzMUao .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieNzMUao .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utieNzMUao .google-map {
  height: 100%;
  position: relative;
}
.cid-utieNzMUao .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utieNzMUao .google-map iframe {
    min-height: 350px;
  }
}
.cid-utieNzMUao .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-utieNzMUao .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utieNzMUao .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utieNzMUao .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utieNzMUao .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utieNzMUao .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utieNzMUao ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utieNzMUao .content-head {
  max-width: 800px;
}
.cid-utieNzMUao .cardTitle {
  text-align: center;
}
.cid-utieNzMUao .list,
.cid-utieNzMUao .item-wrap {
  text-align: center;
}
.cid-utieOtjr1K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utieOtjr1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieOtjr1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utieOtjr1K .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieOtjr1K .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utieOtjr1K .google-map {
  height: 100%;
  position: relative;
}
.cid-utieOtjr1K .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utieOtjr1K .google-map iframe {
    min-height: 350px;
  }
}
.cid-utieOtjr1K .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-utieOtjr1K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utieOtjr1K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utieOtjr1K .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utieOtjr1K .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utieOtjr1K .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utieOtjr1K ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utieOtjr1K .content-head {
  max-width: 800px;
}
.cid-utieOtjr1K .cardTitle {
  text-align: center;
}
.cid-utieOtjr1K .list,
.cid-utieOtjr1K .item-wrap {
  text-align: center;
}
.cid-utieQhpsPu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utieQhpsPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-utieQhpsPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utieQhpsPu .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utieQhpsPu .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utieQhpsPu .google-map {
  height: 100%;
  position: relative;
}
.cid-utieQhpsPu .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utieQhpsPu .google-map iframe {
    min-height: 350px;
  }
}
.cid-utieQhpsPu .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-utieQhpsPu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utieQhpsPu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utieQhpsPu .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utieQhpsPu .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utieQhpsPu .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utieQhpsPu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utieQhpsPu .content-head {
  max-width: 800px;
}
.cid-utieQhpsPu .cardTitle {
  text-align: center;
}
.cid-utieQhpsPu .list,
.cid-utieQhpsPu .item-wrap {
  text-align: center;
}
.cid-utieRA9FPj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utieRA9FPj .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-utieRA9FPj .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utieRA9FPj .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-utieRA9FPj .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-utieRA9FPj .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utieRA9FPj .mbr-text,
.cid-utieRA9FPj .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vv .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vv .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vv .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vv .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-utieTiqbp4 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/rodzinka-2024-web-53-2000x1600.jpeg");
}
.cid-utieTiqbp4 .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-utidJ2SH8q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-utidJ2SH8q .mbr-fallback-image.disabled {
  display: none;
}
.cid-utidJ2SH8q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utidJ2SH8q .mbr-text,
.cid-utidJ2SH8q .mbr-section-btn {
  color: #232323;
}
.cid-utidJ2SH8q .card-title,
.cid-utidJ2SH8q .card-box {
  color: #ffffff;
}
.cid-utidJ2SH8q .mbr-text,
.cid-utidJ2SH8q .link-wrap {
  color: #ffffff;
}
.cid-utidJ3eVsM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utidJ3eVsM .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utidJ3eVsM form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utidJ3eVsM form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utidJ3eVsM form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDIXDMmF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDIXDMmF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDIXDMmF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDIXDMmF .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDIXDMmF .currentcost {
  color: #232323;
}
.cid-uNcDIXDMmF .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDIXDMmF .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDIXDMmF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDIXDMmF .text-box {
    padding: 1rem;
  }
}
.cid-uNcDIXDMmF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utidJ3GLAc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utidJ3GLAc .mbr-fallback-image.disabled {
  display: none;
}
.cid-utidJ3GLAc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utidJ3GLAc .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-utidJ3GLAc .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-utidJ3GLAc .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-utidJ3GLAc .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utidJ3GLAc .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-utidJ3GLAc .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-utidJ3GLAc .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-utidJ3GLAc .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-utidJ3GLAc .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-utidJ3GLAc .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-utidJ3GLAc .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utidJ3GLAc .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-utidJ3GLAc .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-utidJ3GLAc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-utidJ3GLAc .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-utidJ3GLAc .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-utidJ4cq2u {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-utidJ4cq2u .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-utidJ4cq2u .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-utidJ4cq2u .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-utidJ4cq2u .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-utidJ4cq2u .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-utidJ4cq2u .social_icons {
  text-align: center;
}
.cid-utidJ4cq2u .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-utidJ4cq2u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-utidJ4cq2u .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-utidJ4cq2u .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-utidJ4cq2u .footer_timework {
    margin-top: 50px;
  }
  .cid-utidJ4cq2u .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwfnMQWB6 P {
  color: #1281fc;
}
.cid-uJwfnMQWB6 DIV {
  color: #ffffff;
}
.cid-uJwfnMQWB6 H10 {
  color: #034e75;
}
.cid-uJwfnMQWB6 .hidden {
  display: none;
}
.cid-uJwfnMQWB6 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwfnMQWB6 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwfnMQWB6 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwfnMQWB6 .flag {
  background: transparent;
}
.cid-uJwfnMQWB6 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwfnMQWB6 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwfnMQWB6 #google_translate_element {
  display: none;
}
.cid-uJwfnMQWB6 .goog-te-banner {
  display: none;
}
.cid-uJwfnMQWB6 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwfnMQWB6 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwfnMQWB6 body {
  top: 0px !important;
}
.cid-uJwfnMQWB6 body body {
  top: 0 !important;
}
.cid-uJwfnMQWB6 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-tooltip {
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwfnMQWB6 #goog-gt-tt,
.cid-uJwfnMQWB6 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwfnMQWB6 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-logo-link {
  display: none !important;
}
.cid-uJwfnMQWB6 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwfnMQWB6 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwfnMQWB6 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utig19xVpU {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-utig19xVpU .title__block {
  padding-bottom: 40px;
}
.cid-utig19xVpU .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-utig19xVpU .mbr-section-title b,
.cid-utig19xVpU .mbr-section-title strong {
  font-weight: 500;
}
.cid-utig19xVpU .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-utig19xVpU .mbr-text {
  margin-bottom: 43px;
}
.cid-utig19xVpU .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-utig19xVpU .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-utig19xVpU .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-utig19xVpU .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-utig19xVpU .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-utig19xVpU .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-utig19xVpU .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-utig19xVpU .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-utig19xVpU .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utig19xVpU .row {
    text-align: center;
  }
  .cid-utig19xVpU .title__block {
    padding-bottom: 0;
  }
  .cid-utig19xVpU .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-utig19xVpU .figure:before {
    content: none;
  }
  .cid-utig19xVpU .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-utig19xVpU .mbr-text {
    margin-bottom: 30px;
  }
  .cid-utig19xVpU .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-utig19xVpU .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-utig19xVpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-utig19xVpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utig19UUlf {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-utig19UUlf .mbr-section-title {
  margin-bottom: 35px;
}
.cid-utig19UUlf .mbr-section-title b,
.cid-utig19UUlf .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-utig19UUlf .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-utig19UUlf .mbr-fallback-image.disabled {
  display: none;
}
.cid-utig19UUlf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utighoDdfV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-utighoDdfV .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-utighoDdfV .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-utighoDdfV .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-utighoDdfV .wrapper {
  height: 100%;
}
.cid-utighoDdfV img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-utighoDdfV .mbr-section-subtitle {
  text-align: center;
}
.cid-utighoDdfV .mbr-section-title {
  text-align: center;
}
.cid-utighoDdfV .card-title {
  text-align: center;
}
.cid-utighoDdfV .mbr-text {
  text-align: center;
}
.cid-utigipUX2o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utigipUX2o .right {
  display: flex;
  flex-direction: column;
}
.cid-utigipUX2o .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-utigipUX2o .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-utigipUX2o .last-p {
  padding-bottom: 0;
}
.cid-utigipUX2o .row {
  justify-content: center;
}
.cid-utigipUX2o a {
  font-weight: 600;
}
.cid-utigipUX2o .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-utigipUX2o .quote {
    padding: 15px;
  }
}
.cid-uNcDNsiyPa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDNsiyPa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDNsiyPa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDNsiyPa .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDNsiyPa .currentcost {
  color: #232323;
}
.cid-uNcDNsiyPa .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDNsiyPa .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDNsiyPa .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDNsiyPa .text-box {
    padding: 1rem;
  }
}
.cid-uNcDNsiyPa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utigjS7vVI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utigjS7vVI .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigjS7vVI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utigjS7vVI .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-utigjS7vVI img {
  margin: auto;
  width: 140px;
}
.cid-utigjS7vVI .row {
  align-items: flex-start;
}
.cid-utigjS7vVI .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-utigjS7vVI .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-utigjS7vVI .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utigjS7vVI .item-wrapper {
    padding: 1rem;
  }
}
.cid-utigmK7VLM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utigmK7VLM .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigmK7VLM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utigmK7VLM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utigmK7VLM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utigmK7VLM .container {
    padding: 0 24px;
  }
}
.cid-utigmK7VLM .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .content-wrapper {
    display: block;
  }
}
.cid-utigmK7VLM .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-utigmK7VLM .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-utigmK7VLM .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-utigmK7VLM .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-utigmK7VLM .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-utigmK7VLM .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-utigmK7VLM .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-utigmK7VLM .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-utigmK7VLM .mbr-section-title {
  color: #18212d;
}
.cid-utigmK7VLM .mbr-desc {
  color: #18212d;
}
.cid-utigmK7VLM .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-utigocYjmv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utigocYjmv .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigocYjmv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utigocYjmv .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utigocYjmv .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utigocYjmv .google-map {
  height: 100%;
  position: relative;
}
.cid-utigocYjmv .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utigocYjmv .google-map iframe {
    min-height: 350px;
  }
}
.cid-utigocYjmv .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-utigocYjmv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utigocYjmv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utigocYjmv .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utigocYjmv .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utigocYjmv .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utigocYjmv ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utigocYjmv .content-head {
  max-width: 800px;
}
.cid-utigocYjmv .cardTitle {
  text-align: center;
}
.cid-utigocYjmv .list,
.cid-utigocYjmv .item-wrap {
  text-align: center;
}
.cid-utigp5ssMy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utigp5ssMy .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigp5ssMy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utigp5ssMy .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utigp5ssMy .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utigp5ssMy .google-map {
  height: 100%;
  position: relative;
}
.cid-utigp5ssMy .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utigp5ssMy .google-map iframe {
    min-height: 350px;
  }
}
.cid-utigp5ssMy .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-utigp5ssMy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utigp5ssMy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utigp5ssMy .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utigp5ssMy .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utigp5ssMy .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utigp5ssMy ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utigp5ssMy .content-head {
  max-width: 800px;
}
.cid-utigp5ssMy .cardTitle {
  text-align: center;
}
.cid-utigp5ssMy .list,
.cid-utigp5ssMy .item-wrap {
  text-align: center;
}
.cid-utigpNVVTG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utigpNVVTG .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigpNVVTG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utigpNVVTG .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utigpNVVTG .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utigpNVVTG .google-map {
  height: 100%;
  position: relative;
}
.cid-utigpNVVTG .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utigpNVVTG .google-map iframe {
    min-height: 350px;
  }
}
.cid-utigpNVVTG .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-utigpNVVTG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utigpNVVTG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utigpNVVTG .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utigpNVVTG .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utigpNVVTG .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utigpNVVTG ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utigpNVVTG .content-head {
  max-width: 800px;
}
.cid-utigpNVVTG .cardTitle {
  text-align: center;
}
.cid-utigpNVVTG .list,
.cid-utigpNVVTG .item-wrap {
  text-align: center;
}
.cid-utigqvyjNc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utigqvyjNc .mbr-fallback-image.disabled {
  display: none;
}
.cid-utigqvyjNc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utigqvyjNc .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utigqvyjNc .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utigqvyjNc .google-map {
  height: 100%;
  position: relative;
}
.cid-utigqvyjNc .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utigqvyjNc .google-map iframe {
    min-height: 350px;
  }
}
.cid-utigqvyjNc .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-utigqvyjNc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utigqvyjNc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utigqvyjNc .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utigqvyjNc .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utigqvyjNc .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utigqvyjNc ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utigqvyjNc .content-head {
  max-width: 800px;
}
.cid-utigqvyjNc .cardTitle {
  text-align: center;
}
.cid-utigqvyjNc .list,
.cid-utigqvyjNc .item-wrap {
  text-align: center;
}
.cid-utih5PwovR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utih5PwovR .mbr-fallback-image.disabled {
  display: none;
}
.cid-utih5PwovR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utih5PwovR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utih5PwovR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utih5PwovR .google-map {
  height: 100%;
  position: relative;
}
.cid-utih5PwovR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utih5PwovR .google-map iframe {
    min-height: 350px;
  }
}
.cid-utih5PwovR .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-utih5PwovR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utih5PwovR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utih5PwovR .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utih5PwovR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utih5PwovR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utih5PwovR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utih5PwovR .content-head {
  max-width: 800px;
}
.cid-utih5PwovR .cardTitle {
  text-align: center;
}
.cid-utih5PwovR .list,
.cid-utih5PwovR .item-wrap {
  text-align: center;
}
.cid-utigrjomPU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utigrjomPU .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-utigrjomPU .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utigrjomPU .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-utigrjomPU .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-utigrjomPU .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utigrjomPU .mbr-text,
.cid-utigrjomPU .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vw .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vw .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vw .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vw .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-utig1errVh {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/czesaw-hoppe-1-1295x1619.jpg");
}
.cid-utig1errVh .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-utig1eOf5n {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #22a5e5;
}
.cid-utig1eOf5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-utig1eOf5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utig1eOf5n .mbr-text,
.cid-utig1eOf5n .mbr-section-btn {
  color: #232323;
}
.cid-utig1eOf5n .card-title,
.cid-utig1eOf5n .card-box {
  color: #ffffff;
}
.cid-utig1eOf5n .mbr-text,
.cid-utig1eOf5n .link-wrap {
  color: #ffffff;
}
.cid-utig1fc7mt {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utig1fc7mt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utig1fc7mt form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utig1fc7mt form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utig1fc7mt form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDMB1mPI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDMB1mPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDMB1mPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDMB1mPI .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDMB1mPI .currentcost {
  color: #232323;
}
.cid-uNcDMB1mPI .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDMB1mPI .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDMB1mPI .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDMB1mPI .text-box {
    padding: 1rem;
  }
}
.cid-uNcDMB1mPI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utig1fIwc8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utig1fIwc8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utig1fIwc8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utig1fIwc8 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-utig1fIwc8 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-utig1fIwc8 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-utig1fIwc8 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utig1fIwc8 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-utig1fIwc8 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-utig1fIwc8 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-utig1fIwc8 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-utig1fIwc8 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-utig1fIwc8 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-utig1fIwc8 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utig1fIwc8 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-utig1fIwc8 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-utig1fIwc8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-utig1fIwc8 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-utig1fIwc8 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-utig1gcAbb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-utig1gcAbb .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-utig1gcAbb .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-utig1gcAbb .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-utig1gcAbb .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-utig1gcAbb .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-utig1gcAbb .social_icons {
  text-align: center;
}
.cid-utig1gcAbb .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-utig1gcAbb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-utig1gcAbb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-utig1gcAbb .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-utig1gcAbb .footer_timework {
    margin-top: 50px;
  }
  .cid-utig1gcAbb .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwfs0uLIv P {
  color: #1281fc;
}
.cid-uJwfs0uLIv DIV {
  color: #ffffff;
}
.cid-uJwfs0uLIv H10 {
  color: #034e75;
}
.cid-uJwfs0uLIv .hidden {
  display: none;
}
.cid-uJwfs0uLIv .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwfs0uLIv .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwfs0uLIv .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwfs0uLIv .flag {
  background: transparent;
}
.cid-uJwfs0uLIv .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwfs0uLIv .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwfs0uLIv #google_translate_element {
  display: none;
}
.cid-uJwfs0uLIv .goog-te-banner {
  display: none;
}
.cid-uJwfs0uLIv .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwfs0uLIv .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwfs0uLIv body {
  top: 0px !important;
}
.cid-uJwfs0uLIv body body {
  top: 0 !important;
}
.cid-uJwfs0uLIv body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwfs0uLIv .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwfs0uLIv .goog-tooltip {
  display: none !important;
}
.cid-uJwfs0uLIv .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwfs0uLIv .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwfs0uLIv #goog-gt-tt,
.cid-uJwfs0uLIv .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwfs0uLIv #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwfs0uLIv .goog-logo-link {
  display: none !important;
}
.cid-uJwfs0uLIv .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwfs0uLIv div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwfs0uLIv div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utihRdhzFu {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-utihRdhzFu .title__block {
  padding-bottom: 40px;
}
.cid-utihRdhzFu .mbr-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.cid-utihRdhzFu .mbr-section-title b,
.cid-utihRdhzFu .mbr-section-title strong {
  font-weight: 500;
}
.cid-utihRdhzFu .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-utihRdhzFu .mbr-text {
  margin-bottom: 43px;
}
.cid-utihRdhzFu .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-utihRdhzFu .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-utihRdhzFu .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-utihRdhzFu .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-utihRdhzFu .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-utihRdhzFu .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-utihRdhzFu .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-utihRdhzFu .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-utihRdhzFu .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utihRdhzFu .row {
    text-align: center;
  }
  .cid-utihRdhzFu .title__block {
    padding-bottom: 0;
  }
  .cid-utihRdhzFu .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-utihRdhzFu .figure:before {
    content: none;
  }
  .cid-utihRdhzFu .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-utihRdhzFu .mbr-text {
    margin-bottom: 30px;
  }
  .cid-utihRdhzFu .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-utihRdhzFu .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-utihRdhzFu .mbr-fallback-image.disabled {
  display: none;
}
.cid-utihRdhzFu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utihRdEX02 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-utihRdEX02 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-utihRdEX02 .mbr-section-title b,
.cid-utihRdEX02 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-utihRdEX02 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-utihRdEX02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utihRdEX02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiih2RSMj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiih2RSMj .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-utiih2RSMj .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-utiih2RSMj .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-utiih2RSMj .wrapper {
  height: 100%;
}
.cid-utiih2RSMj img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-utiih2RSMj .mbr-section-subtitle {
  text-align: center;
}
.cid-utiih2RSMj .mbr-section-title {
  text-align: center;
}
.cid-utiih2RSMj .card-title {
  text-align: center;
}
.cid-utiih2RSMj .mbr-text {
  text-align: left;
}
.cid-utiiihhuMV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utiiihhuMV .right {
  display: flex;
  flex-direction: column;
}
.cid-utiiihhuMV .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}
.cid-utiiihhuMV .p {
  padding-bottom: 1.875rem;
  color: #272727;
}
.cid-utiiihhuMV .last-p {
  padding-bottom: 0;
}
.cid-utiiihhuMV .row {
  justify-content: center;
}
.cid-utiiihhuMV a {
  font-weight: 600;
}
.cid-utiiihhuMV .quote {
  padding: 1.25em 2.375em;
  color: #111111;
  background-color: #9fdbf8;
  text-align: center;
}
@media (max-width: 760px) {
  .cid-utiiihhuMV .quote {
    padding: 15px;
  }
}
.cid-uNcDPSkidN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDPSkidN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDPSkidN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDPSkidN .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDPSkidN .currentcost {
  color: #232323;
}
.cid-uNcDPSkidN .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDPSkidN .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDPSkidN .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDPSkidN .text-box {
    padding: 1rem;
  }
}
.cid-uNcDPSkidN .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utiikkZAN0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utiikkZAN0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiikkZAN0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiikkZAN0 .img-wrapper {
  text-align: center;
  padding-bottom: 2rem;
}
.cid-utiikkZAN0 img {
  margin: auto;
  width: 140px;
}
.cid-utiikkZAN0 .row {
  align-items: flex-start;
}
.cid-utiikkZAN0 .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 992px) {
  .cid-utiikkZAN0 .item-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-utiikkZAN0 .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiikkZAN0 .item-wrapper {
    padding: 1rem;
  }
}
.cid-utiimjUZ0Y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utiimjUZ0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiimjUZ0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utiimjUZ0Y .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utiimjUZ0Y .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-utiimjUZ0Y .container {
    padding: 0 24px;
  }
}
.cid-utiimjUZ0Y .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .content-wrapper {
    display: block;
  }
}
.cid-utiimjUZ0Y .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-utiimjUZ0Y .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-utiimjUZ0Y .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-utiimjUZ0Y .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-utiimjUZ0Y .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-utiimjUZ0Y .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-utiimjUZ0Y .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-utiimjUZ0Y .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-utiimjUZ0Y .mbr-section-title {
  color: #18212d;
}
.cid-utiimjUZ0Y .mbr-desc {
  color: #18212d;
}
.cid-utiimjUZ0Y .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-utiinLegjc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiinLegjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiinLegjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiinLegjc .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiinLegjc .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiinLegjc .google-map {
  height: 100%;
  position: relative;
}
.cid-utiinLegjc .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiinLegjc .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiinLegjc .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-utiinLegjc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiinLegjc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiinLegjc .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiinLegjc .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiinLegjc .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiinLegjc ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiinLegjc .content-head {
  max-width: 800px;
}
.cid-utiinLegjc .cardTitle {
  text-align: center;
}
.cid-utiinLegjc .list,
.cid-utiinLegjc .item-wrap {
  text-align: center;
}
.cid-utiioCM9hR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiioCM9hR .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiioCM9hR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiioCM9hR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiioCM9hR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiioCM9hR .google-map {
  height: 100%;
  position: relative;
}
.cid-utiioCM9hR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiioCM9hR .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiioCM9hR .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-utiioCM9hR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiioCM9hR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiioCM9hR .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiioCM9hR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiioCM9hR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiioCM9hR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiioCM9hR .content-head {
  max-width: 800px;
}
.cid-utiioCM9hR .cardTitle {
  text-align: center;
}
.cid-utiioCM9hR .list,
.cid-utiioCM9hR .item-wrap {
  text-align: center;
}
.cid-utiipukOZ9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiipukOZ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiipukOZ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiipukOZ9 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiipukOZ9 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiipukOZ9 .google-map {
  height: 100%;
  position: relative;
}
.cid-utiipukOZ9 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiipukOZ9 .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiipukOZ9 .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-utiipukOZ9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiipukOZ9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiipukOZ9 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiipukOZ9 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiipukOZ9 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiipukOZ9 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiipukOZ9 .content-head {
  max-width: 800px;
}
.cid-utiipukOZ9 .cardTitle {
  text-align: center;
}
.cid-utiipukOZ9 .list,
.cid-utiipukOZ9 .item-wrap {
  text-align: center;
}
.cid-utiiqCI6PA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiiqCI6PA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiiqCI6PA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiiqCI6PA .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiiqCI6PA .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiiqCI6PA .google-map {
  height: 100%;
  position: relative;
}
.cid-utiiqCI6PA .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiiqCI6PA .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiiqCI6PA .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-utiiqCI6PA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiiqCI6PA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiiqCI6PA .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiiqCI6PA .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiiqCI6PA .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiiqCI6PA ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiiqCI6PA .content-head {
  max-width: 800px;
}
.cid-utiiqCI6PA .cardTitle {
  text-align: center;
}
.cid-utiiqCI6PA .list,
.cid-utiiqCI6PA .item-wrap {
  text-align: center;
}
.cid-utiirqfC2N {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-utiirqfC2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-utiirqfC2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-utiirqfC2N .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utiirqfC2N .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-utiirqfC2N .google-map {
  height: 100%;
  position: relative;
}
.cid-utiirqfC2N .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-utiirqfC2N .google-map iframe {
    min-height: 350px;
  }
}
.cid-utiirqfC2N .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-utiirqfC2N .google-map[data-state] {
  background: #e9e5dc;
}
.cid-utiirqfC2N .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-utiirqfC2N .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-utiirqfC2N .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utiirqfC2N .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-utiirqfC2N ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-utiirqfC2N .content-head {
  max-width: 800px;
}
.cid-utiirqfC2N .cardTitle {
  text-align: center;
}
.cid-utiirqfC2N .list,
.cid-utiirqfC2N .item-wrap {
  text-align: center;
}
.cid-utiisecym2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-utiisecym2 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-utiisecym2 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utiisecym2 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-utiisecym2 .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-utiisecym2 .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utiisecym2 .mbr-text,
.cid-utiisecym2 .item .mbr-section-btn {
  text-align: center;
}
#custom-html-vx .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vx .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vx .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vx .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-utihRicpvz {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/agnieszka-sienkiewicz-175-1295x1036.jpg");
}
.cid-utihRicpvz .pulsingButton {
  position: relative;
  width: 212px;
  height: 212px;
  border: none;
  box-shadow: 0 0 0 0 #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-size: 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 100px rgba(232, 76, 61, 0);
  }
}
.cid-utihRiAIZA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #22a5e5;
}
.cid-utihRiAIZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-utihRiAIZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utihRiAIZA .mbr-text,
.cid-utihRiAIZA .mbr-section-btn {
  color: #232323;
}
.cid-utihRiAIZA .card-title,
.cid-utihRiAIZA .card-box {
  color: #ffffff;
}
.cid-utihRiAIZA .mbr-text,
.cid-utihRiAIZA .link-wrap {
  color: #ffffff;
}
.cid-utihRj0kz6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utihRj0kz6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-utihRj0kz6 form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-utihRj0kz6 form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-utihRj0kz6 form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDQMz8xG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDQMz8xG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDQMz8xG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDQMz8xG .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDQMz8xG .currentcost {
  color: #232323;
}
.cid-uNcDQMz8xG .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDQMz8xG .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDQMz8xG .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDQMz8xG .text-box {
    padding: 1rem;
  }
}
.cid-uNcDQMz8xG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-utihRjqvz4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utihRjqvz4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utihRjqvz4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utihRjqvz4 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-utihRjqvz4 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-utihRjqvz4 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-utihRjqvz4 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utihRjqvz4 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-utihRjqvz4 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-utihRjqvz4 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-utihRjqvz4 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-utihRjqvz4 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-utihRjqvz4 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-utihRjqvz4 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utihRjqvz4 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-utihRjqvz4 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-utihRjqvz4 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-utihRjqvz4 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-utihRjqvz4 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-utihRjR05Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-utihRjR05Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-utihRjR05Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-utihRjR05Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-utihRjR05Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-utihRjR05Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-utihRjR05Q .social_icons {
  text-align: center;
}
.cid-utihRjR05Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-utihRjR05Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-utihRjR05Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-utihRjR05Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-utihRjR05Q .footer_timework {
    margin-top: 50px;
  }
  .cid-utihRjR05Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwfMj7oRp P {
  color: #1281fc;
}
.cid-uJwfMj7oRp DIV {
  color: #ffffff;
}
.cid-uJwfMj7oRp H10 {
  color: #034e75;
}
.cid-uJwfMj7oRp .hidden {
  display: none;
}
.cid-uJwfMj7oRp .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwfMj7oRp .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwfMj7oRp .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwfMj7oRp .flag {
  background: transparent;
}
.cid-uJwfMj7oRp .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwfMj7oRp .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwfMj7oRp #google_translate_element {
  display: none;
}
.cid-uJwfMj7oRp .goog-te-banner {
  display: none;
}
.cid-uJwfMj7oRp .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwfMj7oRp .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwfMj7oRp body {
  top: 0px !important;
}
.cid-uJwfMj7oRp body body {
  top: 0 !important;
}
.cid-uJwfMj7oRp body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwfMj7oRp .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwfMj7oRp .goog-tooltip {
  display: none !important;
}
.cid-uJwfMj7oRp .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwfMj7oRp .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwfMj7oRp #goog-gt-tt,
.cid-uJwfMj7oRp .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwfMj7oRp #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwfMj7oRp .goog-logo-link {
  display: none !important;
}
.cid-uJwfMj7oRp .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwfMj7oRp div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwfMj7oRp div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utPbGSD7hW {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utPbGSD7hW .mbr-fallback-image.disabled {
  display: none;
}
.cid-utPbGSD7hW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utPbGSD7hW .mbr-section-title,
.cid-utPbGSD7hW .mbr-text,
.cid-utPbGSD7hW .mbr-section-btn {
  text-align: center;
}
.cid-utPbGSD7hW .video-wrapper {
  margin: auto;
}
.cid-utPbGSD7hW .video-wrapper iframe {
  width: 100%;
}
.cid-utPbGSD7hW .mbr-section-title {
  color: #22a5e5;
}
.cid-utOYEnjUmX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/adrianna-malik-web-32-2000x1600.jpg");
}
.cid-utOYEnjUmX .mbr-fallback-image.disabled {
  display: none;
}
.cid-utOYEnjUmX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utOYHjX5nX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utOYHjX5nX .mbr-fallback-image.disabled {
  display: none;
}
.cid-utOYHjX5nX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utOYHjX5nX .item {
  padding-bottom: 2rem;
}
.cid-utOYHjX5nX .item-wrapper {
  position: relative;
}
.cid-utOYHjX5nX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-utOYHjX5nX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-utOYHjX5nX .carousel-control,
.cid-utOYHjX5nX .close {
  background: #1b1b1b;
}
.cid-utOYHjX5nX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-utOYHjX5nX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-utOYHjX5nX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-utOYHjX5nX .carousel-control-next span {
  margin-left: 5px;
}
.cid-utOYHjX5nX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-utOYHjX5nX .close::before {
  content: '\e91a';
}
.cid-utOYHjX5nX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-utOYHjX5nX .carousel-control {
  display: flex;
  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-utOYHjX5nX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utOYHjX5nX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utOYHjX5nX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-utOYHjX5nX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-utOYHjX5nX .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-utOYHjX5nX .carousel-indicators li.active,
.cid-utOYHjX5nX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-utOYHjX5nX .carousel-indicators li::after,
.cid-utOYHjX5nX .carousel-indicators li::before {
  content: none;
}
.cid-utOYHjX5nX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-utOYHjX5nX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-utOYHjX5nX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utOYHjX5nX .carousel-indicators {
    display: none;
  }
}
.cid-utOYHjX5nX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-utOYHjX5nX .carousel-inner > .active {
  display: block;
}
.cid-utOYHjX5nX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utOYHjX5nX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utOYHjX5nX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-utOYHjX5nX .carousel-control,
  .cid-utOYHjX5nX .carousel-indicators,
  .cid-utOYHjX5nX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-utOYHjX5nX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-utOYHjX5nX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-utOYHjX5nX .carousel-indicators .active,
.cid-utOYHjX5nX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-utOYHjX5nX .carousel-indicators .active {
  background: #fff;
}
.cid-utOYHjX5nX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-utOYHjX5nX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-utOYHjX5nX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-utOYHjX5nX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-utOYHjX5nX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-utOYHjX5nX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-utOYHjX5nX .carousel {
  width: 100%;
}
.cid-utOYHjX5nX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-utOYHjX5nX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-utOYHjX5nX .modal.fade .modal-dialog,
.cid-utOYHjX5nX .modal.in .modal-dialog {
  transform: none;
}
.cid-utOYHjX5nX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-utOYHjX5nX H6 {
  text-align: center;
}
.cid-utP3OXUW8W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utP3OXUW8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-utP3OXUW8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utP3OXUW8W .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-utP3OXUW8W .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-utP3OXUW8W .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-utP3OXUW8W .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utP3OXUW8W .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-utP3OXUW8W .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-utP3OXUW8W .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-utP3OXUW8W .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-utP3OXUW8W .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-utP3OXUW8W .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-utP3OXUW8W .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utP3OXUW8W .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-utP3OXUW8W .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-utP3OXUW8W .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-utP3OXUW8W .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-utP3OXUW8W .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-utQLvXBytP {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/daniel-drzazga-web-21-1638x2048.jpg");
}
.cid-utQLvXBytP .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQLvXBytP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utQLvXBytP .mbr-section-title,
.cid-utQLvXBytP .mbr-text,
.cid-utQLvXBytP .mbr-section-btn {
  text-align: center;
}
.cid-utQLvXBytP .video-wrapper {
  margin: auto;
}
.cid-utQLvXBytP .video-wrapper iframe {
  width: 100%;
}
.cid-utQLvXBytP .mbr-section-title {
  color: #22a5e5;
}
.cid-utQN2gqEme {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-utQN2gqEme .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQN2gqEme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utQN2gqEme .item {
  padding-bottom: 2rem;
}
.cid-utQN2gqEme .item-wrapper {
  position: relative;
}
.cid-utQN2gqEme .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-utQN2gqEme .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-utQN2gqEme .carousel-control,
.cid-utQN2gqEme .close {
  background: #1b1b1b;
}
.cid-utQN2gqEme .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-utQN2gqEme .carousel-control-prev span {
  margin-right: 5px;
}
.cid-utQN2gqEme .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-utQN2gqEme .carousel-control-next span {
  margin-left: 5px;
}
.cid-utQN2gqEme .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-utQN2gqEme .close::before {
  content: '\e91a';
}
.cid-utQN2gqEme .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-utQN2gqEme .carousel-control {
  display: flex;
  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-utQN2gqEme .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utQN2gqEme .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-utQN2gqEme .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-utQN2gqEme .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-utQN2gqEme .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-utQN2gqEme .carousel-indicators li.active,
.cid-utQN2gqEme .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-utQN2gqEme .carousel-indicators li::after,
.cid-utQN2gqEme .carousel-indicators li::before {
  content: none;
}
.cid-utQN2gqEme .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-utQN2gqEme .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-utQN2gqEme .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-utQN2gqEme .carousel-indicators {
    display: none;
  }
}
.cid-utQN2gqEme .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-utQN2gqEme .carousel-inner > .active {
  display: block;
}
.cid-utQN2gqEme .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-utQN2gqEme .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-utQN2gqEme .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-utQN2gqEme .carousel-control,
  .cid-utQN2gqEme .carousel-indicators,
  .cid-utQN2gqEme .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-utQN2gqEme .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-utQN2gqEme .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-utQN2gqEme .carousel-indicators .active,
.cid-utQN2gqEme .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-utQN2gqEme .carousel-indicators .active {
  background: #fff;
}
.cid-utQN2gqEme .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-utQN2gqEme .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-utQN2gqEme .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-utQN2gqEme .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-utQN2gqEme .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-utQN2gqEme .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-utQN2gqEme .carousel {
  width: 100%;
}
.cid-utQN2gqEme .modal-backdrop.in {
  opacity: 0.8;
}
.cid-utQN2gqEme .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-utQN2gqEme .modal.fade .modal-dialog,
.cid-utQN2gqEme .modal.in .modal-dialog {
  transform: none;
}
.cid-utQN2gqEme .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-utQN2gqEme H6 {
  text-align: center;
}
.cid-utQLw1zLZ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-utQLw1zLZ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utQLw1zLZ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utQLw1zLZ5 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-utQLw1zLZ5 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-utQLw1zLZ5 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-utQLw1zLZ5 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-utQLw1zLZ5 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-utQLw1zLZ5 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-utQLw1zLZ5 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-utQLw1zLZ5 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-utQLw1zLZ5 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-utQLw1zLZ5 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-utQLw1zLZ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-utQLw1zLZ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-utQLw1zLZ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-utQLw1zLZ5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-utQLw1zLZ5 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-utQLw1zLZ5 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-utQLw249qI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-utQLw249qI .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-utQLw249qI .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-utQLw249qI .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-utQLw249qI .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-utQLw249qI .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-utQLw249qI .social_icons {
  text-align: center;
}
.cid-utQLw249qI .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-utQLw249qI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-utQLw249qI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-utQLw249qI .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-utQLw249qI .footer_timework {
    margin-top: 50px;
  }
  .cid-utQLw249qI .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uvsjGxmaT1 {
  padding-top: 285px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/zaneta-zgliczynska-14-1295x863.jpg");
  overflow: hidden;
}
.cid-uvsjGxmaT1 svg {
  fill: #22a5e5 !important;
  pointer-events: none;
}
.cid-uvsjGxmaT1 #e2_shape {
  fill: #22a5e5 !important;
}
.cid-uvsjGxmaT1 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-uvsjGxmaT1 .mbr-text {
  font-weight: 300;
}
.cid-uvsjGxmaT1 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-uvsjGxmaT1 .btn-white {
  color: #404040 !important;
}
.cid-uvsjGxmaT1 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-uvsjGxmaT1 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-uvsjGxmaT1 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-uvsjGxmaT1 {
    padding: 30px;
  }
  .cid-uvsjGxmaT1 svg {
    display: none;
  }
}
.cid-uvsjGxmaT1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsjGxmaT1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvsjGxmaT1 .mbr-section-title,
.cid-uvsjGxmaT1 .mbr-section-btn {
  text-align: center;
}
.cid-uvsjGxmaT1 .mbr-text,
.cid-uvsjGxmaT1 .mbr-section-btn {
  text-align: center;
}
.cid-uDOAnrAPSP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDOAnrAPSP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDOAnrAPSP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDOAnrAPSP .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #22a5e5;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-uDOAnrAPSP .label-text {
  color: #22a5e5;
}
.cid-uDOAnrAPSP .mbr-title {
  margin-top: 30px;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uDOAnrAPSP .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-uDOAnrAPSP .mbr-subtitle {
  margin-top: 40px;
  color: #747474;
}
@media (max-width: 991px) {
  .cid-uDOAnrAPSP .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-uDOAnrAPSP .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-uvsnisj9Tz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uvsnisj9Tz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsnisj9Tz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvsnisj9Tz ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uvsnisj9Tz li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uvsnisj9Tz ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6ec7f2;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uvsnisj9Tz H3 {
  text-align: center;
}
.cid-uvsoSs8FeE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uvsiidaqdZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uvsiidaqdZ::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uvsiidaqdZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsiidaqdZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uvsiidaqdZ .container {
    padding: 0 22px;
  }
}
.cid-uvsiidaqdZ .row {
  justify-content: center;
}
.cid-uvsiidaqdZ .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uvsiidaqdZ .content-wrapper {
    padding: 0;
  }
}
.cid-uvsiidaqdZ .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvsiidaqdZ .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uvsiidaqdZ .mbr-section-title {
  color: #ffffff;
}
.cid-uvsiidaqdZ .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uvsiidaqdZ .mbr-section-title,
.cid-uvsiidaqdZ .mbr-section-btn {
  text-align: center;
}
#custom-html-w5 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w5 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w5 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w5 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uvsiidBtdk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uvsiidBtdk .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uvsiidBtdk .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uvsiidBtdk .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uvsiidBtdk .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uvsiidBtdk .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uvsiidBtdk .social_icons {
  text-align: center;
}
.cid-uvsiidBtdk .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uvsiidBtdk .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uvsiidBtdk .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uvsiidBtdk .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uvsiidBtdk .footer_timework {
    margin-top: 50px;
  }
  .cid-uvsiidBtdk .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwdX2oGLz P {
  color: #1281fc;
}
.cid-uJwdX2oGLz DIV {
  color: #ffffff;
}
.cid-uJwdX2oGLz H10 {
  color: #034e75;
}
.cid-uJwdX2oGLz .hidden {
  display: none;
}
.cid-uJwdX2oGLz .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwdX2oGLz .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwdX2oGLz .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwdX2oGLz .flag {
  background: transparent;
}
.cid-uJwdX2oGLz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwdX2oGLz .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwdX2oGLz #google_translate_element {
  display: none;
}
.cid-uJwdX2oGLz .goog-te-banner {
  display: none;
}
.cid-uJwdX2oGLz .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwdX2oGLz .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwdX2oGLz body {
  top: 0px !important;
}
.cid-uJwdX2oGLz body body {
  top: 0 !important;
}
.cid-uJwdX2oGLz body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwdX2oGLz .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwdX2oGLz .goog-tooltip {
  display: none !important;
}
.cid-uJwdX2oGLz .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwdX2oGLz .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwdX2oGLz #goog-gt-tt,
.cid-uJwdX2oGLz .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwdX2oGLz #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwdX2oGLz .goog-logo-link {
  display: none !important;
}
.cid-uJwdX2oGLz .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwdX2oGLz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwdX2oGLz div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uwn6ezVGge {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/boat-www-2000x1125.jpg");
}
.cid-uwn6ezVGge .mbr-iconfont {
  color: #f6f6f6 !important;
  font-size: 3.5rem !important;
}
.cid-uwn6ezVGge .row {
  justify-content: center;
  padding-bottom: 5rem;
}
.cid-uwn6ezVGge .link {
  margin: 0;
}
.cid-uwn6ezVGge .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uwn6ezVGge .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  margin: auto;
  right: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
.cid-uwn6ezVGge h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.8rem;
  letter-spacing: 6px;
}
.cid-uwn6ezVGge h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwn6ezVGge h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwn6ezVGge .btn {
  margin: 0.2rem !important;
}
.cid-uwn6ezVGge .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwn6ezVGge .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwn9TrSPSS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwn9TrSPSS h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uwn9TrSPSS h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwn9TrSPSS h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uwn9TrSPSS .mbr-text,
.cid-uwn9TrSPSS .mbr-section-btn {
  color: #767676;
}
@media (max-width: 768px) {
  .cid-uwn9TrSPSS h3:before,
  .cid-uwn9TrSPSS h3:after {
    display: none;
  }
}
.cid-uwn9TrSPSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwn9TrSPSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwnB8F98mQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwnB8F98mQ .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uwnB8F98mQ .mbr-figure img {
  height: 150px;
  width: 150px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-uwnB8F98mQ .mbr-text,
.cid-uwnB8F98mQ .mbr-section-btn {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uwnB8F98mQ img {
    height: 250px !important;
    width: 250px !important;
  }
}
.cid-uwnB8F98mQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnB8F98mQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwnOnsLIPW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwnOnsLIPW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnOnsLIPW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwnOnsLIPW .mbr-iconfont {
  margin: auto;
  display: inline-flex;
  font-size: 2rem;
  color: #47b5ed;
  width: 40px;
  justify-content: center;
  align-items: center;
}
.cid-uwnOnsLIPW .card-title,
.cid-uwnOnsLIPW .iconfont-wrapper {
  color: #232323;
}
.cid-uwnOnsLIPW .card-text {
  color: #232323;
}
.cid-uwnOnsLIPW .mbr-section-title {
  color: #232323;
}
.cid-uwnOnsLIPW .mbr-section-subtitle {
  color: #232323;
}
.cid-uwnOnsLIPW .content-head {
  max-width: 800px;
}
.cid-uwnCvcry6d {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwnCvcry6d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnCvcry6d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwnCvcry6d .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uwnCvcry6d .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uwnCvcry6d .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uwnCvcry6d .media-content,
.cid-uwnCvcry6d .mbr-figure {
  align-self: center;
}
.cid-uwnCvcry6d .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uwnCvcry6d .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uwnCvcry6d .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uwnCvcry6d .mbr-section-maintitle {
  text-align: center;
}
.cid-uwnCvcry6d .mbr-section-title {
  text-align: left;
}
.cid-uwnCvcry6d .mbr-text,
.cid-uwnCvcry6d .mbr-section-btn {
  text-align: center;
}
.cid-uwnCyrX13h {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwnCyrX13h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnCyrX13h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwnCyrX13h .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uwnCyrX13h .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uwnCyrX13h .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uwnCyrX13h .media-content,
.cid-uwnCyrX13h .mbr-figure {
  align-self: center;
}
.cid-uwnCyrX13h .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uwnCyrX13h .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uwnCyrX13h .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uwnCyrX13h .mbr-section-maintitle {
  text-align: center;
}
.cid-uwnCyrX13h .mbr-section-title {
  text-align: left;
}
.cid-uwnCyrX13h .mbr-text,
.cid-uwnCyrX13h .mbr-section-btn {
  text-align: center;
}
.cid-uwnExrzsUn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwnExrzsUn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnExrzsUn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwnExrzsUn .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uwnExrzsUn .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uwnExrzsUn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uwnExrzsUn .media-content,
.cid-uwnExrzsUn .mbr-figure {
  align-self: center;
}
.cid-uwnExrzsUn .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uwnExrzsUn .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uwnExrzsUn .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uwnExrzsUn .mbr-section-maintitle {
  text-align: center;
}
.cid-uwnExrzsUn .mbr-section-title {
  text-align: left;
}
.cid-uwnExrzsUn .mbr-text,
.cid-uwnExrzsUn .mbr-section-btn {
  text-align: center;
}
.cid-uwnDyjc6Rm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uwnDyjc6Rm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnDyjc6Rm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwnDyjc6Rm .mbr-figure {
    margin-top: 1.5rem;
  }
}
.cid-uwnDyjc6Rm .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uwnDyjc6Rm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uwnDyjc6Rm .media-content,
.cid-uwnDyjc6Rm .mbr-figure {
  align-self: center;
}
.cid-uwnDyjc6Rm .mbr-figure iframe {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uwnDyjc6Rm .mbr-figure {
  border-radius: 0rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  .cid-uwnDyjc6Rm .mbr-figure {
    border-radius: 2rem;
  }
}
.cid-uwnDyjc6Rm .mbr-section-maintitle {
  text-align: center;
}
.cid-uwnDyjc6Rm .mbr-section-title {
  text-align: left;
}
.cid-uwnDyjc6Rm .mbr-text,
.cid-uwnDyjc6Rm .mbr-section-btn {
  text-align: center;
}
.cid-uwnH2jL3Uk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uwnH2jL3Uk .nav-tabs .nav-item.open .nav-link:focus,
.cid-uwnH2jL3Uk .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uwnH2jL3Uk .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border: none;
}
.cid-uwnH2jL3Uk .tab-content {
  border: 1px solid lightgray;
  padding: 1.5rem 3rem;
}
.cid-uwnH2jL3Uk .nav-tabs .nav-link {
  color: #ffffff;
  font-style: normal;
  padding: 1rem 1.5rem;
  background: transparent;
  font-weight: 600;
  border: none;
  border-radius: 0;
}
.cid-uwnH2jL3Uk .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-uwnH2jL3Uk .nav-tabs .nav-link.active {
  font-weight: 600;
  font-style: normal;
  border: 1px solid lightgray;
  border-bottom: none;
}
.cid-uwnH2jL3Uk P {
  color: #767676;
  text-align: center;
}
.cid-uwnH2jL3Uk H2 {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uwnH2jL3Uk .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-uwnH2jL3Uk .mbr-text,
  .cid-uwnH2jL3Uk .nav-link {
    text-align: center;
  }
  .cid-uwnH2jL3Uk .nav-tabs .nav-link.active {
    border-bottom: 1px solid lightgray;
  }
}
.cid-uwnH2jL3Uk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnH2jL3Uk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwnKz2VBiX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uwnKz2VBiX .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uwnKz2VBiX .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uwnKz2VBiX .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uwnKz2VBiX .wrapper {
  height: 100%;
}
.cid-uwnKz2VBiX img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uwnKz2VBiX .mbr-section-subtitle {
  text-align: center;
}
.cid-uwnKz2VBiX .mbr-section-title {
  text-align: center;
}
.cid-uwnKz2VBiX .card-title {
  text-align: center;
}
.cid-uwnKz2VBiX .mbr-text {
  text-align: center;
}
.cid-uwnLCjJIza {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uwnLCjJIza .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uwnLCjJIza .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uwnLCjJIza .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uwnLCjJIza .wrapper {
  height: 100%;
}
.cid-uwnLCjJIza img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uwnLCjJIza .mbr-section-subtitle {
  text-align: center;
}
.cid-uwnLCjJIza .mbr-section-title {
  text-align: center;
}
.cid-uwnLCjJIza .card-title {
  text-align: center;
}
.cid-uwnLCjJIza .mbr-text {
  text-align: center;
}
.cid-uwn9Y2v73u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uwn9Y2v73u .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-uwn9Y2v73u .mbr-subtitle {
  color: #767676;
}
@media (max-width: 767px) {
  .cid-uwn9Y2v73u .md-pb {
    margin-bottom: 2rem;
  }
}
.cid-uItGZloN7b {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-uItGZloN7b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uItGZloN7b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uItGZloN7b .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uItGZloN7b .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uItGZloN7b .container {
    padding: 0 30px;
  }
}
.cid-uItGZloN7b .row {
  justify-content: center;
}
.cid-uItGZloN7b .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uItGZloN7b .card-wrapper {
  background-color: #47b5ed;
  margin-bottom: 30px;
  padding: 25px 100px;
}
.cid-uItGZloN7b .card-wrapper a .mbr-price {
  padding-bottom: 10px;
  border-bottom: 1px solid #212529;
}
.cid-uItGZloN7b .card-wrapper a .mbr-desc {
  margin: 10px 0 0;
}
.cid-uItGZloN7b .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uItGZloN7b .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-uItGZloN7b .mbr-desc {
  color: #212529;
  text-align: center;
}
.cid-uwnN4oXlHm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #9fdbf8;
}
.cid-uwnN4oXlHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnN4oXlHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uwnN4oXlHm .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-uwnN4oXlHm .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uwnN4oXlHm .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uwnN4oXlHm .card-wrapper {
    padding: 4rem;
  }
}
.cid-uwnN4oXlHm .mbr-text,
.cid-uwnN4oXlHm .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uwnN4oXlHm .card-title,
.cid-uwnN4oXlHm .card-box {
  text-align: center;
  color: #000000;
}
.cid-uwnN4oXlHm .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uwnN4oXlHm .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-uwnN4oXlHm .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #47b5ed;
  background-color: #47b5ed;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uwnN4oXlHm .counter-container ol {
  margin-bottom: 0;
  padding-left: 2.25rem;
  counter-reset: myCounter;
}
.cid-uwnN4oXlHm .counter-container ol li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
}
.cid-uwnN4oXlHm .counter-container ol li:before {
  font-weight: 700;
  position: absolute;
  left: -1.5em;
  counter-increment: myCounter;
  content: counter(myCounter);
  transition: all .2s;
  color: #47b5ed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uwnN4oXlHm .mbr-text UL {
  text-align: left;
}
.cid-uwnN4oXlHm .mbr-text {
  text-align: center;
}
.cid-uwo64f8Ur4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uwo64f8Ur4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwo64f8Ur4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uwo64f8Ur4 .container {
    padding: 0 24px;
  }
}
.cid-uwo64f8Ur4 .row {
  justify-content: center;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .mbr-text {
  margin-bottom: 32px !important;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group {
  margin-bottom: 32px !important;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-control {
  background-color: #9fdbf8;
  padding: 32px;
  box-shadow: none;
  border: 2px solid transparent !important;
  border-radius: 16px !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-control {
    padding: 16px;
  }
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-control::placeholder {
  color: #47b5ed;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-control:hover,
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-control:focus {
  box-shadow: none;
  border: 2px solid #9fdbf8 !important;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group textarea.form-control {
  min-height: 150px;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-check {
  padding-left: 2.1em;
  margin-bottom: 16px !important;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .form-group .form-check .form-check-input {
  background-color: #9fdbf8;
  border-color: #9fdbf8;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .mbr-section-btn {
  width: 100%;
}
.cid-uwo64f8Ur4 .form-wrapper .row.dragArea .mbr-section-btn .btn {
  width: 100%;
}
.cid-uwo64f8Ur4 .mbr-section-title {
  color: #262642;
  text-align: center;
}
.cid-uwo64f8Ur4 .mbr-text {
  color: #262642;
  text-align: center;
}
.cid-uwo64f8Ur4 label {
  color: #262642;
}
.cid-uwnQ08WF4d {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uwnQ08WF4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uwnQ08WF4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uwnQ08WF4d .row {
    flex-direction: column-reverse;
  }
  .cid-uwnQ08WF4d .row .map-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uwnQ08WF4d .google-map {
  height: 100%;
  position: relative;
}
.cid-uwnQ08WF4d .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uwnQ08WF4d .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-uwnQ08WF4d .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uwnQ08WF4d .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uwnQ08WF4d .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uwnQ08WF4d .card-wrapper {
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
.cid-uwnQ08WF4d .card-wrapper:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uwnQ08WF4d .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uwnQ08WF4d .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uwnQ08WF4d .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #6ec7f2;
}
#custom-html-w6 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w6 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w6 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w6 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwe0Toyci P {
  color: #1281fc;
}
.cid-uJwe0Toyci DIV {
  color: #ffffff;
}
.cid-uJwe0Toyci H10 {
  color: #034e75;
}
.cid-uJwe0Toyci .hidden {
  display: none;
}
.cid-uJwe0Toyci .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwe0Toyci .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwe0Toyci .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwe0Toyci .flag {
  background: transparent;
}
.cid-uJwe0Toyci .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwe0Toyci .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwe0Toyci #google_translate_element {
  display: none;
}
.cid-uJwe0Toyci .goog-te-banner {
  display: none;
}
.cid-uJwe0Toyci .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwe0Toyci .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwe0Toyci body {
  top: 0px !important;
}
.cid-uJwe0Toyci body body {
  top: 0 !important;
}
.cid-uJwe0Toyci body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwe0Toyci .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwe0Toyci .goog-tooltip {
  display: none !important;
}
.cid-uJwe0Toyci .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwe0Toyci .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwe0Toyci #goog-gt-tt,
.cid-uJwe0Toyci .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwe0Toyci #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwe0Toyci .goog-logo-link {
  display: none !important;
}
.cid-uJwe0Toyci .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwe0Toyci div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwe0Toyci div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uvsqJZOrLd {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uvsqJZOrLd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsqJZOrLd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvsqJZOrLd .content-wrapper {
  position: relative;
  overflow: hidden;
  padding: 96px;
}
@media (max-width: 1440px) {
  .cid-uvsqJZOrLd .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uvsqJZOrLd .content-wrapper {
    padding: 26px 22px;
  }
}
.cid-uvsqJZOrLd .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uvsqJZOrLd .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.cid-uvsqJZOrLd .content-wrapper .mbr-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.cid-uvsqJZOrLd .content-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uvsqJZOrLd .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uvsqJZOrLd .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uvsqJZOrLd .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uvsqJZOrLd .mbr-section-title {
  color: #191c25;
}
.cid-uvsqJZOrLd .mbr-desc {
  color: #858585;
  text-align: center;
}
.cid-uvsqJZOrLd .mbr-section-title,
.cid-uvsqJZOrLd .mbr-section-btn,
.cid-uvsqJZOrLd .title-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uDOBuY3Tcr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uDOBuY3Tcr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDOBuY3Tcr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDOBuY3Tcr .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #22a5e5;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-uDOBuY3Tcr .label-text {
  color: #6ec7f2;
}
.cid-uDOBuY3Tcr .mbr-title {
  margin-top: 30px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uDOBuY3Tcr .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-uDOBuY3Tcr .mbr-subtitle {
  margin-top: 40px;
  color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-uDOBuY3Tcr .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-uDOBuY3Tcr .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-uvg7c8J5hu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uvg7c8J5hu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvg7c8J5hu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvg7c8J5hu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvg7c8J5hu .mbr-section-title {
  color: #ffffff;
}
.cid-uNVIX42qY0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uNVIX42qY0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVIX42qY0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVIX42qY0 .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uNVIX42qY0 .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .container {
    padding: 0 16px;
  }
}
.cid-uNVIX42qY0 .row {
  justify-content: center;
  margin: 0 -24px;
}
.cid-uNVIX42qY0 .row .item {
  padding: 0 24px;
}
.cid-uNVIX42qY0 .row .item:first-child {
  margin-bottom: 0;
}
.cid-uNVIX42qY0 .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uNVIX42qY0 .item {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .item {
    margin-bottom: 32px;
  }
}
.cid-uNVIX42qY0 .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-uNVIX42qY0 .item .item-wrapper .item-img img {
  height: 136px;
  width: 136px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .card-price {
  padding-top: 32px;
  border-top: 1px solid #c1c1c1;
  margin-bottom: 24px;
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .card-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .item .item-wrapper .item-content .card-title {
    margin-bottom: 16px;
  }
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .card-desc {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uNVIX42qY0 .item .item-wrapper .item-content .card-desc {
    margin-bottom: 16px;
  }
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0 0 5px 0;
  border: none !important;
  position: relative;
  margin-top: 0;
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline::before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus:before,
.cid-uNVIX42qY0 .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus:before {
  width: 0;
}
.cid-uNVIX42qY0 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNVIX42qY0 .card-title {
  color: #1c1c1c;
}
.cid-uNVIX42qY0 .card-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uNVIX42qY0 .card-price {
  color: #f27120;
  text-align: center;
}
.cid-uNVIX42qY0 .card-title,
.cid-uNVIX42qY0 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
#Przelicznik_Cenowy_AutaLCA {
  /* Responsive Styles */
}
#Przelicznik_Cenowy_AutaLCA .calculator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 20px;
}
#Przelicznik_Cenowy_AutaLCA .calculator-input {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
#Przelicznik_Cenowy_AutaLCA .date-picker,
#Przelicznik_Cenowy_AutaLCA .checkbox-container {
  width: 100%;
  max-width: 300px;
}
#Przelicznik_Cenowy_AutaLCA .calculate-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}
#Przelicznik_Cenowy_AutaLCA .calculate-button:hover {
  background-color: #0056b3;
}
#Przelicznik_Cenowy_AutaLCA .result-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-top: 15px;
}
#Przelicznik_Cenowy_AutaLCA .total-price {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  width: 48%;
}
@media (max-width: 600px) {
  #Przelicznik_Cenowy_AutaLCA .calculator-container {
    padding: 15px;
  }
  #Przelicznik_Cenowy_AutaLCA .calculator-input,
  #Przelicznik_Cenowy_AutaLCA .calculate-button,
  #Przelicznik_Cenowy_AutaLCA .total-price {
    max-width: 100%;
  }
  #Przelicznik_Cenowy_AutaLCA .result-container {
    flex-direction: column;
    align-items: center;
  }
  #Przelicznik_Cenowy_AutaLCA .total-price {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-uNlHYhdtLm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNlHYhdtLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNlHYhdtLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNhd6BouXc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNhd6BouXc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNhd6BouXc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNhd6BouXc .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6ec7f2;
  margin-bottom: 2rem;
}
.cid-uNhd6BouXc .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uNhd6BouXc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNhd6BouXc .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvg7caOY3u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uvg7caOY3u::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uvg7caOY3u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvg7caOY3u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uvg7caOY3u .container {
    padding: 0 22px;
  }
}
.cid-uvg7caOY3u .row {
  justify-content: center;
}
.cid-uvg7caOY3u .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uvg7caOY3u .content-wrapper {
    padding: 0;
  }
}
.cid-uvg7caOY3u .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uvg7caOY3u .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uvg7caOY3u .mbr-section-title {
  color: #ffffff;
}
.cid-uvg7caOY3u .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uvg7caOY3u .mbr-section-title,
.cid-uvg7caOY3u .mbr-section-btn {
  text-align: center;
}
#custom-html-w3 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w3 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w3 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w3 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uvg7cbfyjb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uvg7cbfyjb .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uvg7cbfyjb .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uvg7cbfyjb .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uvg7cbfyjb .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uvg7cbfyjb .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uvg7cbfyjb .social_icons {
  text-align: center;
}
.cid-uvg7cbfyjb .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uvg7cbfyjb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uvg7cbfyjb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uvg7cbfyjb .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uvg7cbfyjb .footer_timework {
    margin-top: 50px;
  }
  .cid-uvg7cbfyjb .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwdQcpbF9 P {
  color: #1281fc;
}
.cid-uJwdQcpbF9 DIV {
  color: #ffffff;
}
.cid-uJwdQcpbF9 H10 {
  color: #034e75;
}
.cid-uJwdQcpbF9 .hidden {
  display: none;
}
.cid-uJwdQcpbF9 .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwdQcpbF9 .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwdQcpbF9 .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwdQcpbF9 .flag {
  background: transparent;
}
.cid-uJwdQcpbF9 .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwdQcpbF9 .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwdQcpbF9 #google_translate_element {
  display: none;
}
.cid-uJwdQcpbF9 .goog-te-banner {
  display: none;
}
.cid-uJwdQcpbF9 .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwdQcpbF9 .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwdQcpbF9 body {
  top: 0px !important;
}
.cid-uJwdQcpbF9 body body {
  top: 0 !important;
}
.cid-uJwdQcpbF9 body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-tooltip {
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwdQcpbF9 #goog-gt-tt,
.cid-uJwdQcpbF9 .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwdQcpbF9 #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-logo-link {
  display: none !important;
}
.cid-uJwdQcpbF9 .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwdQcpbF9 div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwdQcpbF9 div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uvsrngdGcH {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uvsrngdGcH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvsrngdGcH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvsrngdGcH .content-wrapper {
  position: relative;
  overflow: hidden;
  padding: 96px;
}
@media (max-width: 1440px) {
  .cid-uvsrngdGcH .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uvsrngdGcH .content-wrapper {
    padding: 26px 22px;
  }
}
.cid-uvsrngdGcH .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uvsrngdGcH .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.cid-uvsrngdGcH .content-wrapper .mbr-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.cid-uvsrngdGcH .content-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uvsrngdGcH .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uvsrngdGcH .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uvsrngdGcH .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uvsrngdGcH .mbr-section-title {
  color: #191c25;
}
.cid-uvsrngdGcH .mbr-desc {
  color: #858585;
  text-align: center;
}
.cid-uvsrngdGcH .mbr-section-title,
.cid-uvsrngdGcH .mbr-section-btn,
.cid-uvsrngdGcH .title-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uDOAWCMgZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uDOAWCMgZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDOAWCMgZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDOAWCMgZX .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #22a5e5;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-uDOAWCMgZX .label-text {
  color: #6ec7f2;
}
.cid-uDOAWCMgZX .mbr-title {
  margin-top: 30px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uDOAWCMgZX .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-uDOAWCMgZX .mbr-subtitle {
  margin-top: 40px;
  color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-uDOAWCMgZX .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-uDOAWCMgZX .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-uuCmTo4yS4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uuCmTo4yS4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuCmTo4yS4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuCmTo4yS4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuCmTo4yS4 .mbr-section-title {
  color: #ffffff;
}
.cid-uNVygnqZiC {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uNVygnqZiC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVygnqZiC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNVygnqZiC .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-uNVygnqZiC .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .container {
    padding: 0 16px;
  }
}
.cid-uNVygnqZiC .row {
  justify-content: center;
  margin: 0 -24px;
}
.cid-uNVygnqZiC .row .item {
  padding: 0 24px;
}
.cid-uNVygnqZiC .row .item:first-child {
  margin-bottom: 0;
}
.cid-uNVygnqZiC .title-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .title-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-uNVygnqZiC .item {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .item {
    margin-bottom: 32px;
  }
}
.cid-uNVygnqZiC .item .item-wrapper .item-img {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.cid-uNVygnqZiC .item .item-wrapper .item-img img {
  height: 136px;
  width: 136px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .card-price {
  padding-top: 32px;
  border-top: 1px solid #c1c1c1;
  margin-bottom: 24px;
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .card-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .item .item-wrapper .item-content .card-title {
    margin-bottom: 16px;
  }
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .card-desc {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uNVygnqZiC .item .item-wrapper .item-content .card-desc {
    margin-bottom: 16px;
  }
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline {
  padding: 0 0 5px 0;
  border: none !important;
  position: relative;
  margin-top: 0;
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline::before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #1c1c1c;
  transition: all 0.3s ease-in-out;
}
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:hover:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-primary-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-secondary-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-success-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-info-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-warning-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-danger-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-black-outline:focus:before,
.cid-uNVygnqZiC .item .item-wrapper .item-content .mbr-section-btn .btn-white-outline:focus:before {
  width: 0;
}
.cid-uNVygnqZiC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNVygnqZiC .card-title {
  color: #1c1c1c;
}
.cid-uNVygnqZiC .card-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uNVygnqZiC .card-price {
  color: #f27120;
  text-align: center;
}
.cid-uNVygnqZiC .card-title,
.cid-uNVygnqZiC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
#przelicznik-wynajmu {
  /* Responsive Styles */
}
#przelicznik-wynajmu .calculator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 20px;
}
#przelicznik-wynajmu .calculator-input {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
#przelicznik-wynajmu .date-picker,
#przelicznik-wynajmu .checkbox-container {
  width: 100%;
  max-width: 300px;
}
#przelicznik-wynajmu .calculate-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}
#przelicznik-wynajmu .calculate-button:hover {
  background-color: #0056b3;
}
#przelicznik-wynajmu .result-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-top: 15px;
}
#przelicznik-wynajmu .total-price {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  width: 48%;
}
@media (max-width: 600px) {
  #przelicznik-wynajmu .calculator-container {
    padding: 15px;
  }
  #przelicznik-wynajmu .calculator-input,
  #przelicznik-wynajmu .calculate-button,
  #przelicznik-wynajmu .total-price {
    max-width: 100%;
  }
  #przelicznik-wynajmu .result-container {
    flex-direction: column;
    align-items: center;
  }
  #przelicznik-wynajmu .total-price {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-uNVEwQFAcG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNVEwQFAcG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNVEwQFAcG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNgXVsu1k5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNgXVsu1k5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNgXVsu1k5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNgXVsu1k5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6ec7f2;
  margin-bottom: 2rem;
}
.cid-uNgXVsu1k5 .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uNgXVsu1k5 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNgXVsu1k5 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-ukSFAayRlI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-ukSFAayRlI::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-ukSFAayRlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukSFAayRlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ukSFAayRlI .container {
    padding: 0 22px;
  }
}
.cid-ukSFAayRlI .row {
  justify-content: center;
}
.cid-ukSFAayRlI .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-ukSFAayRlI .content-wrapper {
    padding: 0;
  }
}
.cid-ukSFAayRlI .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukSFAayRlI .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-ukSFAayRlI .mbr-section-title {
  color: #ffffff;
}
.cid-ukSFAayRlI .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-ukSFAayRlI .mbr-section-title,
.cid-ukSFAayRlI .mbr-section-btn {
  text-align: center;
}
#custom-html-w4 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w4 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w4 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w4 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwdUFBOKR P {
  color: #1281fc;
}
.cid-uJwdUFBOKR DIV {
  color: #ffffff;
}
.cid-uJwdUFBOKR H10 {
  color: #034e75;
}
.cid-uJwdUFBOKR .hidden {
  display: none;
}
.cid-uJwdUFBOKR .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwdUFBOKR .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwdUFBOKR .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwdUFBOKR .flag {
  background: transparent;
}
.cid-uJwdUFBOKR .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwdUFBOKR .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwdUFBOKR #google_translate_element {
  display: none;
}
.cid-uJwdUFBOKR .goog-te-banner {
  display: none;
}
.cid-uJwdUFBOKR .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwdUFBOKR .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwdUFBOKR body {
  top: 0px !important;
}
.cid-uJwdUFBOKR body body {
  top: 0 !important;
}
.cid-uJwdUFBOKR body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwdUFBOKR .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwdUFBOKR .goog-tooltip {
  display: none !important;
}
.cid-uJwdUFBOKR .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwdUFBOKR .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwdUFBOKR #goog-gt-tt,
.cid-uJwdUFBOKR .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwdUFBOKR #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwdUFBOKR .goog-logo-link {
  display: none !important;
}
.cid-uJwdUFBOKR .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwdUFBOKR div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwdUFBOKR div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
#custom-html-16i {
  /* Type valid CSS here */
}
#custom-html-16i div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-16i p {
  font-size: 60px;
  color: #777;
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uDLptVnh41 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ewa-jasik-web-50-2000x1600.jpg");
}
.cid-uDLptVnh41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLptVnh41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLptVnh41 .container {
    padding: 0 30px;
  }
}
.cid-uDLptVnh41 .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uDLptVnh41 .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uDLptVnh41 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uDLptVnh41 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uDLptVnh41 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uDLptVnh41 .mbr-section-title {
  color: #ffffff;
}
.cid-uDLptVnh41 .mbr-text,
.cid-uDLptVnh41 .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uDLptVnh41 .mbr-section-title,
.cid-uDLptVnh41 .mbr-section-btn {
  text-align: center;
}
.cid-uDLgYg9FF4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uDLgYg9FF4 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uDLgYg9FF4 .mbr-section-title b,
.cid-uDLgYg9FF4 .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uDLgYg9FF4 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uDLgYg9FF4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgYg9FF4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLkAKkuDT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkAKkuDT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkAKkuDT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgYnZX7r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgYnZX7r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgYnZX7r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgYnZX7r .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYnZX7r .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgYnZX7r .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgYnZX7r .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgYnZX7r .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgYnZX7r .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-uDLgYnZX7r .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgYnZX7r .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgYnZX7r .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgYnZX7r .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYnZX7r .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgYnZX7r ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgYnZX7r .content-head {
  max-width: 800px;
}
.cid-uDLgYnZX7r .cardTitle {
  text-align: center;
}
.cid-uDLgYnZX7r .list,
.cid-uDLgYnZX7r .item-wrap {
  text-align: center;
}
.cid-uDLkND01HP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkND01HP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkND01HP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgYx5r7t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgYx5r7t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgYx5r7t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgYx5r7t .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYx5r7t .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgYx5r7t .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgYx5r7t .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgYx5r7t .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgYx5r7t .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-uDLgYx5r7t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgYx5r7t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgYx5r7t .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgYx5r7t .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYx5r7t .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgYx5r7t ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgYx5r7t .content-head {
  max-width: 800px;
}
.cid-uDLgYx5r7t .cardTitle {
  text-align: center;
}
.cid-uDLgYx5r7t .list,
.cid-uDLgYx5r7t .item-wrap {
  text-align: center;
}
.cid-uDLkOIMBV1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkOIMBV1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkOIMBV1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDe8Wfbr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDe8Wfbr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDe8Wfbr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDe8Wfbr .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDe8Wfbr .currentcost {
  color: #232323;
}
.cid-uNcDe8Wfbr .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDe8Wfbr .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDe8Wfbr .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDe8Wfbr .text-box {
    padding: 1rem;
  }
}
.cid-uNcDe8Wfbr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDLgYGHDAT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgYGHDAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgYGHDAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgYGHDAT .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYGHDAT .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgYGHDAT .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgYGHDAT .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgYGHDAT .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgYGHDAT .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-uDLgYGHDAT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgYGHDAT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgYGHDAT .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgYGHDAT .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYGHDAT .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgYGHDAT ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgYGHDAT .content-head {
  max-width: 800px;
}
.cid-uDLgYGHDAT .cardTitle {
  text-align: center;
}
.cid-uDLgYGHDAT .list,
.cid-uDLgYGHDAT .item-wrap {
  text-align: center;
}
.cid-uDLkPyMVNM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkPyMVNM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkPyMVNM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgYQtaBa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgYQtaBa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgYQtaBa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgYQtaBa .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYQtaBa .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgYQtaBa .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgYQtaBa .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgYQtaBa .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgYQtaBa .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-uDLgYQtaBa .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgYQtaBa .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgYQtaBa .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgYQtaBa .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgYQtaBa .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgYQtaBa ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgYQtaBa .content-head {
  max-width: 800px;
}
.cid-uDLgYQtaBa .cardTitle {
  text-align: center;
}
.cid-uDLgYQtaBa .list,
.cid-uDLgYQtaBa .item-wrap {
  text-align: center;
}
.cid-uDLkQfruI0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkQfruI0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkQfruI0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgZ17q9X {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgZ17q9X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgZ17q9X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgZ17q9X .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgZ17q9X .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgZ17q9X .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgZ17q9X .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgZ17q9X .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgZ17q9X .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-uDLgZ17q9X .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgZ17q9X .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgZ17q9X .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgZ17q9X .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgZ17q9X .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgZ17q9X ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgZ17q9X .content-head {
  max-width: 800px;
}
.cid-uDLgZ17q9X .cardTitle {
  text-align: center;
}
.cid-uDLgZ17q9X .list,
.cid-uDLgZ17q9X .item-wrap {
  text-align: center;
}
.cid-uDLkQX1EBH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLkQX1EBH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLkQX1EBH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgZcqZy4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uDLgZcqZy4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgZcqZy4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDLgZcqZy4 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgZcqZy4 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uDLgZcqZy4 .google-map {
  height: 100%;
  position: relative;
}
.cid-uDLgZcqZy4 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uDLgZcqZy4 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uDLgZcqZy4 .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-uDLgZcqZy4 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uDLgZcqZy4 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uDLgZcqZy4 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uDLgZcqZy4 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLgZcqZy4 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uDLgZcqZy4 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uDLgZcqZy4 .content-head {
  max-width: 800px;
}
.cid-uDLgZcqZy4 .cardTitle {
  text-align: center;
}
.cid-uDLgZcqZy4 .list,
.cid-uDLgZcqZy4 .item-wrap {
  text-align: center;
}
.cid-uDLgZferwX {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uDLgZferwX .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uDLgZferwX .mbr-section-title b,
.cid-uDLgZferwX .mbr-section-title strong {
  font-weight: 500;
}
.cid-uDLgZferwX .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uDLgZferwX .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uDLgZferwX .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uDLgZferwX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgZferwX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-vq .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vq .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vq .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vq .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uDLgZgg7Ji {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-uDLgZgg7Ji .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgZgg7Ji .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgZgg7Ji .mbr-text,
.cid-uDLgZgg7Ji .mbr-section-btn {
  color: #232323;
}
.cid-uDLgZgg7Ji .card-title,
.cid-uDLgZgg7Ji .card-box {
  color: #ffffff;
}
.cid-uDLgZgg7Ji .mbr-text,
.cid-uDLgZgg7Ji .link-wrap {
  color: #ffffff;
}
.cid-uDLgZhcqdp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDLgZhcqdp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDLgZhcqdp form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uDLgZhcqdp form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uDLgZhcqdp form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDfrqVDj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDfrqVDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDfrqVDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDfrqVDj .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDfrqVDj .currentcost {
  color: #232323;
}
.cid-uNcDfrqVDj .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDfrqVDj .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDfrqVDj .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDfrqVDj .text-box {
    padding: 1rem;
  }
}
.cid-uNcDfrqVDj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDLgZi9OTL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDLgZi9OTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLgZi9OTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLgZi9OTL .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uDLgZi9OTL .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uDLgZi9OTL .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uDLgZi9OTL .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uDLgZi9OTL .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uDLgZi9OTL .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uDLgZi9OTL .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uDLgZi9OTL .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uDLgZi9OTL .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uDLgZi9OTL .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uDLgZi9OTL .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDLgZi9OTL .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uDLgZi9OTL .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uDLgZi9OTL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDLgZi9OTL .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDLgZi9OTL .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uDLgZj3Yg1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uDLgZj3Yg1 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uDLgZj3Yg1 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uDLgZj3Yg1 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uDLgZj3Yg1 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uDLgZj3Yg1 .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uDLgZj3Yg1 .social_icons {
  text-align: center;
}
.cid-uDLgZj3Yg1 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uDLgZj3Yg1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uDLgZj3Yg1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uDLgZj3Yg1 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uDLgZj3Yg1 .footer_timework {
    margin-top: 50px;
  }
  .cid-uDLgZj3Yg1 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweQa79ql P {
  color: #1281fc;
}
.cid-uJweQa79ql DIV {
  color: #ffffff;
}
.cid-uJweQa79ql H10 {
  color: #034e75;
}
.cid-uJweQa79ql .hidden {
  display: none;
}
.cid-uJweQa79ql .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweQa79ql .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweQa79ql .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweQa79ql .flag {
  background: transparent;
}
.cid-uJweQa79ql .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweQa79ql .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweQa79ql #google_translate_element {
  display: none;
}
.cid-uJweQa79ql .goog-te-banner {
  display: none;
}
.cid-uJweQa79ql .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweQa79ql .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweQa79ql body {
  top: 0px !important;
}
.cid-uJweQa79ql body body {
  top: 0 !important;
}
.cid-uJweQa79ql body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweQa79ql .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweQa79ql .goog-tooltip {
  display: none !important;
}
.cid-uJweQa79ql .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweQa79ql .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweQa79ql #goog-gt-tt,
.cid-uJweQa79ql .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweQa79ql #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweQa79ql .goog-logo-link {
  display: none !important;
}
.cid-uJweQa79ql .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweQa79ql div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweQa79ql div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uDWsBBUpne {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mariusz-fecenloben-web-28-2000x1156.jpg");
}
.cid-uDWsBBUpne .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBBUpne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uDWsBBUpne .container {
    padding: 0 30px;
  }
}
.cid-uDWsBBUpne .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uDWsBBUpne .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uDWsBBUpne .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uDWsBBUpne .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uDWsBBUpne .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uDWsBBUpne .mbr-section-title {
  color: #ffffff;
}
.cid-uDWsBBUpne .mbr-text,
.cid-uDWsBBUpne .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uDWsBBUpne .mbr-section-title,
.cid-uDWsBBUpne .mbr-section-btn {
  text-align: center;
}
.cid-uDWsBCJbPb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uDWsBCJbPb .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uDWsBCJbPb .mbr-section-title b,
.cid-uDWsBCJbPb .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uDWsBCJbPb .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uDWsBCJbPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBCJbPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBDiTU2 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBDiTU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBDiTU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBFhRSU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBFhRSU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBFhRSU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDm3H31m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDm3H31m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDm3H31m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDm3H31m .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDm3H31m .currentcost {
  color: #232323;
}
.cid-uNcDm3H31m .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDm3H31m .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDm3H31m .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDm3H31m .text-box {
    padding: 1rem;
  }
}
.cid-uNcDm3H31m .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDWsBGWMBy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBGWMBy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBGWMBy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBJq7QU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBJq7QU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBJq7QU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBLMZxm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBLMZxm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBLMZxm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBNzG3g {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWsBNzG3g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBNzG3g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWu94wPSM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWu94wPSM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWu94wPSM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWuab6aUT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWuab6aUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWuab6aUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWu4OHfeH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWu4OHfeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWu4OHfeH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWu7tCpwQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDWu7tCpwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWu7tCpwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBPvNFx {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mariusz-fecenloben-web-27-1638x2048.jpg");
}
.cid-uDWsBPvNFx .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uDWsBPvNFx .mbr-section-title b,
.cid-uDWsBPvNFx .mbr-section-title strong {
  font-weight: 500;
}
.cid-uDWsBPvNFx .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uDWsBPvNFx .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uDWsBPvNFx .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uDWsBPvNFx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBPvNFx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-vr .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vr .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vr .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vr .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uDWsBQF3By {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDWsBQF3By .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDWsBQF3By form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uDWsBQF3By form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uDWsBQF3By form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcDjDDh5x {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcDjDDh5x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcDjDDh5x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcDjDDh5x .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcDjDDh5x .currentcost {
  color: #232323;
}
.cid-uNcDjDDh5x .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcDjDDh5x .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcDjDDh5x .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcDjDDh5x .text-box {
    padding: 1rem;
  }
}
.cid-uNcDjDDh5x .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uDWsBRHOM8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uDWsBRHOM8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDWsBRHOM8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDWsBRHOM8 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uDWsBRHOM8 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uDWsBRHOM8 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uDWsBRHOM8 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uDWsBRHOM8 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uDWsBRHOM8 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uDWsBRHOM8 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uDWsBRHOM8 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uDWsBRHOM8 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uDWsBRHOM8 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uDWsBRHOM8 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDWsBRHOM8 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uDWsBRHOM8 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uDWsBRHOM8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDWsBRHOM8 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uDWsBRHOM8 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uDWsBSw6AA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uDWsBSw6AA .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uDWsBSw6AA .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uDWsBSw6AA .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uDWsBSw6AA .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uDWsBSw6AA .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uDWsBSw6AA .social_icons {
  text-align: center;
}
.cid-uDWsBSw6AA .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uDWsBSw6AA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uDWsBSw6AA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uDWsBSw6AA .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uDWsBSw6AA .footer_timework {
    margin-top: 50px;
  }
  .cid-uDWsBSw6AA .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweSo6tjc P {
  color: #1281fc;
}
.cid-uJweSo6tjc DIV {
  color: #ffffff;
}
.cid-uJweSo6tjc H10 {
  color: #034e75;
}
.cid-uJweSo6tjc .hidden {
  display: none;
}
.cid-uJweSo6tjc .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweSo6tjc .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweSo6tjc .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweSo6tjc .flag {
  background: transparent;
}
.cid-uJweSo6tjc .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweSo6tjc .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweSo6tjc #google_translate_element {
  display: none;
}
.cid-uJweSo6tjc .goog-te-banner {
  display: none;
}
.cid-uJweSo6tjc .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweSo6tjc .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweSo6tjc body {
  top: 0px !important;
}
.cid-uJweSo6tjc body body {
  top: 0 !important;
}
.cid-uJweSo6tjc body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweSo6tjc .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweSo6tjc .goog-tooltip {
  display: none !important;
}
.cid-uJweSo6tjc .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweSo6tjc .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweSo6tjc #goog-gt-tt,
.cid-uJweSo6tjc .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweSo6tjc #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweSo6tjc .goog-logo-link {
  display: none !important;
}
.cid-uJweSo6tjc .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweSo6tjc div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweSo6tjc div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uG7fX5QG1U {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uG7fX5QG1U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7fX5QG1U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG7fX5QG1U .content-wrapper {
  position: relative;
  overflow: hidden;
  padding: 96px;
}
@media (max-width: 1440px) {
  .cid-uG7fX5QG1U .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uG7fX5QG1U .content-wrapper {
    padding: 26px 22px;
  }
}
.cid-uG7fX5QG1U .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uG7fX5QG1U .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #232323;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}
.cid-uG7fX5QG1U .content-wrapper .mbr-desc {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.cid-uG7fX5QG1U .content-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uG7fX5QG1U .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uG7fX5QG1U .content-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uG7fX5QG1U .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uG7fX5QG1U .mbr-section-title {
  color: #191c25;
}
.cid-uG7fX5QG1U .mbr-desc {
  color: #858585;
  text-align: center;
}
.cid-uG7fX5QG1U .mbr-section-title,
.cid-uG7fX5QG1U .mbr-section-btn,
.cid-uG7fX5QG1U .title-wrapper {
  text-align: center;
  color: #ffffff;
}
.cid-uG7fX6UL15 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uG7fX6UL15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7fX6UL15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG7fX6UL15 .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #22a5e5;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-uG7fX6UL15 .label-text {
  color: #6ec7f2;
}
.cid-uG7fX6UL15 .mbr-title {
  margin-top: 30px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uG7fX6UL15 .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-uG7fX6UL15 .mbr-subtitle {
  margin-top: 40px;
  color: #9fdbf8;
}
@media (max-width: 991px) {
  .cid-uG7fX6UL15 .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-uG7fX6UL15 .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-uG7fX7gSTw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uG7fX7gSTw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7fX7gSTw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uG7fX7gSTw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uG7fX7gSTw .mbr-section-title {
  color: #ffffff;
}
.cid-uG7fX7zIh5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uG7fX7zIh5 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uG7fX7zIh5 .galleryItem {
  border-radius: 10px;
}
.cid-uG7fX7zIh5 .galleryItem .img_wraper img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
.cid-uG7fX7zIh5 .item_overlay:hover .img_wraper img {
  opacity: .8;
}
.cid-uG7fX7zIh5 .mbr-gallery-filter li {
  display: block;
}
.cid-uG7fX7zIh5 .mbr-gallery-item .shop-item-price {
  font-size: 15px;
  color: #47b5ed;
  width: 100%;
  letter-spacing: 2px;
  font-weight: 700;
}
.cid-uG7fX7zIh5 .mbr-gallery-item .oldprice {
  color: #919dab;
  font-size: 15px;
  text-decoration: line-through;
  margin-left: 10px;
}
.cid-uG7fX7zIh5 .mbr-gallery-item .price-block {
  text-align: center;
  display: block;
  margin-top: 4px;
}
.cid-uG7fX7zIh5 .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 0;
  letter-spacing: 2px;
  padding: 0 !important;
}
.cid-uG7fX7zIh5 .mbr-shop .row {
  margin: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uG7fX7zIh5 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uG7fX7zIh5 .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uG7fX7zIh5 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .image-modal {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-uG7fX7zIh5 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
}
.cid-uG7fX7zIh5 .mbr-shop .hide-modal {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
  border-radius: 10px;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
}
.cid-uG7fX7zIh5 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uG7fX7zIh5 .mbr-shop .filter-by-pu,
.cid-uG7fX7zIh5 .mbr-shop .filter-by-pd,
.cid-uG7fX7zIh5 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uG7fX7zIh5 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uG7fX7zIh5 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 15px;
  width: 33%;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem h4,
.cid-uG7fX7zIh5 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem h5,
.cid-uG7fX7zIh5 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem p,
.cid-uG7fX7zIh5 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uG7fX7zIh5 .mbr-shop .item-button {
  text-align: center;
}
.cid-uG7fX7zIh5 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uG7fX7zIh5 .mbr-shop .modalButton.btn-info {
  right: 15%;
}
.cid-uG7fX7zIh5 .mbr-shop .sidebar {
  margin-bottom: 30px;
  position: relative;
}
.cid-uG7fX7zIh5 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uG7fX7zIh5 .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #9fdbf8;
  top: -20px;
  right: 3px;
  border-radius: 10px;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: center;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 100%;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uG7fX7zIh5 .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  top: 30px;
  left: 30px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #e43f3f;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #ffffff;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item__hided h4,
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item__hided h5,
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem .price-block {
  display: block;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  word-spacing: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-uG7fX7zIh5 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uG7fX7zIh5 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uG7fX7zIh5 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uG7fX7zIh5 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uG7fX7zIh5 .mbr-shop .range-controls {
  position: relative;
}
.cid-uG7fX7zIh5 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uG7fX7zIh5 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #6ec7f2;
}
.cid-uG7fX7zIh5 .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #6ec7f2;
  cursor: pointer;
}
.cid-uG7fX7zIh5 .mbr-shop .toggle:hover,
.cid-uG7fX7zIh5 .mbr-shop .toggle:active {
  background-color: #ff6666;
}
.cid-uG7fX7zIh5 .mbr-shop .min-toggle {
  left: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .max-toggle {
  right: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .hided-by-price {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .mbr-section-btn .btn {
  font-weight: 500;
  font-size: 18px;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .price-block .oldprice {
  color: #ffe161;
  margin-left: 10px;
  text-decoration: line-through;
}
.cid-uG7fX7zIh5 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uG7fX7zIh5 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uG7fX7zIh5 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
}
.cid-uG7fX7zIh5 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
}
.cid-uG7fX7zIh5 .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uG7fX7zIh5 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
  padding-bottom: 15px;
  background-color: transparent;
}
.cid-uG7fX7zIh5 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uG7fX7zIh5 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uG7fX7zIh5 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uG7fX7zIh5 .mbr-shop .price-range {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .price-range-reset {
  display: none;
}
.cid-uG7fX7zIh5 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uG7fX7zIh5 .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uG7fX7zIh5 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uG7fX7zIh5 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uG7fX7zIh5 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uG7fX7zIh5 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uG7fX7zIh5 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uG7fX7zIh5 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uG7fX7zIh5 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uG7fX7zIh5 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uG7fX7zIh5 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uG7fX7zIh5 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uG7fX7zIh5 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uG7fX7zIh5 .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-uG7fX7zIh5 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uG7fX7zIh5 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uG7fX7zIh5 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uG7fX7zIh5 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uG7fX7zIh5 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uG7fX7zIh5 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uG7fX7zIh5 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uG7fX7zIh5 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uG7fX7zIh5 .range-slider .mbr-section-btn {
  margin: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uG7fX7zIh5 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uG7fX7zIh5 .mbr-gallery-item .sidebar_wraper {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uG7fX7zIh5 .sidebar .sidebar_wraper {
  background-color: #9fdbf8;
}
.cid-uG7fX7zIh5 .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  color: inherit !important;
  font-size: 1.1rem !important;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul li .btn {
  border: none;
  margin: 0 !important;
  padding: 0;
  background-color: transparent !important;
  color: inherit !important;
  font-weight: 400;
}
.cid-uG7fX7zIh5 .mbr-shop .mbr-gallery-filter ul li li.active .btn {
  font-weight: 700;
}
.cid-uG7fX7zIh5 .sidebar {
  display: flex;
  flex-direction: column;
}
.cid-uG7fX7zIh5 .range-slider {
  order: 1;
}
.cid-uG7fX7zIh5 .sidebar-categories {
  order: 2;
}
.cid-uG7fX7zIh5 .bestseller-block {
  order: 3;
}
.cid-uG7fX7zIh5 .categories {
  padding: 0;
}
.cid-uG7fX7zIh5 .sidebar-title {
  font-weight: bold;
}
.cid-uG7fX7zIh5 .oldprice,
.cid-uG7fX7zIh5 .price-block {
  color: #111111;
}
.cid-uG7fX7zIh5 .item-title {
  text-align: center;
}
#custom-html-uh {
  /* Responsive Styles */
}
#custom-html-uh .calculator-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 20px;
}
#custom-html-uh .calculator-input {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}
#custom-html-uh .date-picker,
#custom-html-uh .checkbox-container,
#custom-html-uh .dropdown-container {
  width: 100%;
  max-width: 300px;
}
#custom-html-uh .calculate-button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  max-width: 300px;
}
#custom-html-uh .calculate-button:hover {
  background-color: #0056b3;
}
#custom-html-uh .result-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin-top: 15px;
}
#custom-html-uh .total-price {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
  text-align: center;
  width: 48%;
}
@media (max-width: 600px) {
  #custom-html-uh .calculator-container {
    padding: 15px;
  }
  #custom-html-uh .calculator-input,
  #custom-html-uh .calculate-button,
  #custom-html-uh .total-price {
    max-width: 100%;
  }
  #custom-html-uh .result-container {
    flex-direction: column;
    align-items: center;
  }
  #custom-html-uh .total-price {
    width: 100%;
    margin-bottom: 10px;
  }
}
.cid-uNlJ2YKJEt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNlJ2YKJEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNlJ2YKJEt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNhzroaChW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNhzroaChW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNhzroaChW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNhzroaChW .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6ec7f2;
  margin-bottom: 2rem;
}
.cid-uNhzroaChW .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uNhzroaChW .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNhzroaChW .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uG7fX91aSl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uG7fX91aSl::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #000000 50%);
  z-index: 1;
}
.cid-uG7fX91aSl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uG7fX91aSl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uG7fX91aSl .container {
    padding: 0 22px;
  }
}
.cid-uG7fX91aSl .row {
  justify-content: center;
}
.cid-uG7fX91aSl .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uG7fX91aSl .content-wrapper {
    padding: 0;
  }
}
.cid-uG7fX91aSl .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uG7fX91aSl .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uG7fX91aSl .mbr-section-title {
  color: #ffffff;
}
.cid-uG7fX91aSl .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uG7fX91aSl .mbr-section-title,
.cid-uG7fX91aSl .mbr-section-btn {
  text-align: center;
}
#custom-html-w2 .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-w2 .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-w2 .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-w2 .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uG7fX9tfJi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uG7fX9tfJi .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uG7fX9tfJi .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uG7fX9tfJi .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uG7fX9tfJi .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uG7fX9tfJi .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uG7fX9tfJi .social_icons {
  text-align: center;
}
.cid-uG7fX9tfJi .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uG7fX9tfJi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uG7fX9tfJi .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uG7fX9tfJi .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uG7fX9tfJi .footer_timework {
    margin-top: 50px;
  }
  .cid-uG7fX9tfJi .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwcn3IoCD P {
  color: #1281fc;
}
.cid-uJwcn3IoCD DIV {
  color: #ffffff;
}
.cid-uJwcn3IoCD H10 {
  color: #034e75;
}
.cid-uJwcn3IoCD .hidden {
  display: none;
}
.cid-uJwcn3IoCD .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwcn3IoCD .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwcn3IoCD .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwcn3IoCD .flag {
  background: transparent;
}
.cid-uJwcn3IoCD .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwcn3IoCD .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwcn3IoCD #google_translate_element {
  display: none;
}
.cid-uJwcn3IoCD .goog-te-banner {
  display: none;
}
.cid-uJwcn3IoCD .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwcn3IoCD .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwcn3IoCD body {
  top: 0px !important;
}
.cid-uJwcn3IoCD body body {
  top: 0 !important;
}
.cid-uJwcn3IoCD body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwcn3IoCD .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwcn3IoCD .goog-tooltip {
  display: none !important;
}
.cid-uJwcn3IoCD .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwcn3IoCD .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwcn3IoCD #goog-gt-tt,
.cid-uJwcn3IoCD .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwcn3IoCD #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwcn3IoCD .goog-logo-link {
  display: none !important;
}
.cid-uJwcn3IoCD .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwcn3IoCD div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwcn3IoCD div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uGYFiTcF1X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/eliza-pionka-web-24-2000x1600.jpg");
}
.cid-uGYFiTcF1X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYFiTcF1X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uGYFiTcF1X .container {
    padding: 0 30px;
  }
}
.cid-uGYFiTcF1X .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uGYFiTcF1X .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uGYFiTcF1X .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uGYFiTcF1X .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uGYFiTcF1X .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uGYFiTcF1X .mbr-section-title {
  color: #ffffff;
}
.cid-uGYFiTcF1X .mbr-text,
.cid-uGYFiTcF1X .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uGYFiTcF1X .mbr-section-title,
.cid-uGYFiTcF1X .mbr-section-btn {
  text-align: center;
  color: #111111;
}
.cid-uGYEDOOwPh {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGYEDOOwPh .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uGYEDOOwPh .mbr-section-title b,
.cid-uGYEDOOwPh .mbr-section-title strong {
  font-weight: 500;
}
.cid-uGYEDOOwPh .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uGYEDOOwPh .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uGYEDOOwPh .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uGYEDOOwPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEDOOwPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEDPV10V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGYEDPV10V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEDPV10V img {
  border-radius: 1rem;
}
.cid-uGYEDPV10V .row {
  padding: 0 1rem;
}
.cid-uGYEDPV10V .btn {
  transition: all 0.3s;
}
.cid-uGYEDPV10V .btn:hover,
.cid-uGYEDPV10V .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-uGYEDPV10V .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-uGYEDPV10V .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-uGYEDPV10V .card {
    padding: 3rem 2rem;
  }
}
.cid-uGYEDPV10V .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-uGYEDPV10V .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uGYEDPV10V .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uGYEDPV10V .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGYEDPV10V .mbr-section-subtitle,
.cid-uGYEDPV10V .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-uGYEDPV10V .mbr-text,
.cid-uGYEDPV10V .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uNcCD4Zomp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCD4Zomp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCD4Zomp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCD4Zomp .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCD4Zomp .currentcost {
  color: #232323;
}
.cid-uNcCD4Zomp .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCD4Zomp .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCD4Zomp .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCD4Zomp .text-box {
    padding: 1rem;
  }
}
.cid-uNcCD4Zomp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGYEDQyqID {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYEDQyqID .title__block {
  margin-bottom: 89px;
}
.cid-uGYEDQyqID .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYEDQyqID .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYEDQyqID .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uGYEDQyqID .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYEDQyqID .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYEDQyqID .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYEDQyqID .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYEDQyqID .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYEDQyqID .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYEDQyqID .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYEDQyqID .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYEDQyqID .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYEDQyqID .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYEDQyqID .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYEDQyqID .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYEDQyqID .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYEDQyqID .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEDQyqID .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYEDQyqID .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEDQyqID .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYEDQyqID .iconBackground {
    left: 0 !important;
  }
  .cid-uGYEDQyqID .separline:before {
    left: 0 !important;
  }
}
.cid-uGYEDQyqID .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEDQyqID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEDQyqID .mbr-timeline-text {
  text-align: center;
}
.cid-uGYEDTA5sm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYEDTA5sm .title__block {
  margin-bottom: 89px;
}
.cid-uGYEDTA5sm .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYEDTA5sm .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYEDTA5sm .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYEDTA5sm .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYEDTA5sm .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYEDTA5sm .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYEDTA5sm .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYEDTA5sm .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYEDTA5sm .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYEDTA5sm .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYEDTA5sm .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYEDTA5sm .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYEDTA5sm .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYEDTA5sm .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYEDTA5sm .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEDTA5sm .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYEDTA5sm .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEDTA5sm .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYEDTA5sm .iconBackground {
    left: 0 !important;
  }
  .cid-uGYEDTA5sm .separline:before {
    left: 0 !important;
  }
}
.cid-uGYEDTA5sm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEDTA5sm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEDTA5sm .mbr-timeline-text {
  text-align: center;
}
.cid-uGYEDSP6It {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYEDSP6It .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYEDSP6It .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYEDSP6It .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYEDSP6It .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYEDSP6It .btn:hover {
  box-shadow: none;
}
.cid-uGYEDSP6It .mbr-section-title,
.cid-uGYEDSP6It .mbr-section-btn {
  text-align: center;
}
.cid-uGYKCfZnvo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYKCfZnvo .title__block {
  margin-bottom: 89px;
}
.cid-uGYKCfZnvo .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYKCfZnvo .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYKCfZnvo .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYKCfZnvo .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYKCfZnvo .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYKCfZnvo .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYKCfZnvo .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYKCfZnvo .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYKCfZnvo .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYKCfZnvo .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYKCfZnvo .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYKCfZnvo .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYKCfZnvo .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYKCfZnvo .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYKCfZnvo .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYKCfZnvo .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYKCfZnvo .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYKCfZnvo .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYKCfZnvo .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYKCfZnvo .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYKCfZnvo .iconBackground {
    left: 0 !important;
  }
  .cid-uGYKCfZnvo .separline:before {
    left: 0 !important;
  }
}
.cid-uGYKCfZnvo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYKCfZnvo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYKCfZnvo .mbr-timeline-text {
  text-align: center;
}
.cid-uGYLAdaGk2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYLAdaGk2 .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYLAdaGk2 .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYLAdaGk2 .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYLAdaGk2 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYLAdaGk2 .btn:hover {
  box-shadow: none;
}
.cid-uGYLAdaGk2 .mbr-section-title,
.cid-uGYLAdaGk2 .mbr-section-btn {
  text-align: center;
}
.cid-uGYEDXrrsL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGYEDXrrsL .title__block {
  margin-bottom: 65px;
}
.cid-uGYEDXrrsL .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-uGYEDXrrsL .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-uGYEDXrrsL .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-uGYEDXrrsL .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-uGYEDXrrsL .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-uGYEDXrrsL .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-uGYEDXrrsL .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-uGYEDXrrsL .card__content {
  display: block;
  width: 100%;
}
.cid-uGYEDXrrsL .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-uGYEDXrrsL .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uGYEDXrrsL .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYEDXrrsL .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-uGYEDXrrsL .nav-item {
    margin-bottom: 9px;
  }
  .cid-uGYEDXrrsL .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-uGYEDXrrsL .card__wrap {
    margin-bottom: 40px;
  }
  .cid-uGYEDXrrsL .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-uGYEDXrrsL .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uGYEDXrrsL .card__image {
    max-width: 90px;
  }
  .cid-uGYEDXrrsL .card__image img {
    width: 70%;
  }
}
.cid-uGYEDXrrsL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEDXrrsL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEE0v2Y0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYEE0v2Y0 .title__block {
  margin-bottom: 89px;
}
.cid-uGYEE0v2Y0 .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYEE0v2Y0 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYEE0v2Y0 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYEE0v2Y0 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYEE0v2Y0 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYEE0v2Y0 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYEE0v2Y0 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYEE0v2Y0 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYEE0v2Y0 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYEE0v2Y0 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYEE0v2Y0 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYEE0v2Y0 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYEE0v2Y0 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYEE0v2Y0 .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYEE0v2Y0 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYEE0v2Y0 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYEE0v2Y0 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEE0v2Y0 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYEE0v2Y0 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYEE0v2Y0 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYEE0v2Y0 .iconBackground {
    left: 0 !important;
  }
  .cid-uGYEE0v2Y0 .separline:before {
    left: 0 !important;
  }
}
.cid-uGYEE0v2Y0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEE0v2Y0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEE0v2Y0 .mbr-timeline-text {
  text-align: center;
}
.cid-uGYN5nAOUy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYN5nAOUy .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYN5nAOUy .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYN5nAOUy .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYN5nAOUy .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYN5nAOUy .btn:hover {
  box-shadow: none;
}
.cid-uGYN5nAOUy .mbr-section-title,
.cid-uGYN5nAOUy .mbr-section-btn {
  text-align: center;
}
.cid-uNcCHOPaoX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCHOPaoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCHOPaoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCHOPaoX .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCHOPaoX .currentcost {
  color: #232323;
}
.cid-uNcCHOPaoX .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCHOPaoX .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCHOPaoX .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCHOPaoX .text-box {
    padding: 1rem;
  }
}
.cid-uNcCHOPaoX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGYNpRRIp0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYNpRRIp0 .title__block {
  margin-bottom: 89px;
}
.cid-uGYNpRRIp0 .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYNpRRIp0 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYNpRRIp0 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYNpRRIp0 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYNpRRIp0 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYNpRRIp0 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYNpRRIp0 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYNpRRIp0 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYNpRRIp0 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYNpRRIp0 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYNpRRIp0 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYNpRRIp0 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYNpRRIp0 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYNpRRIp0 .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYNpRRIp0 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYNpRRIp0 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYNpRRIp0 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNpRRIp0 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYNpRRIp0 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNpRRIp0 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYNpRRIp0 .iconBackground {
    left: 0 !important;
  }
  .cid-uGYNpRRIp0 .separline:before {
    left: 0 !important;
  }
}
.cid-uGYNpRRIp0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYNpRRIp0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYNpRRIp0 .mbr-timeline-text {
  text-align: center;
}
.cid-uGYO2oWuqm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYO2oWuqm .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYO2oWuqm .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYO2oWuqm .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYO2oWuqm .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYO2oWuqm .btn:hover {
  box-shadow: none;
}
.cid-uGYO2oWuqm .mbr-section-title,
.cid-uGYO2oWuqm .mbr-section-btn {
  text-align: center;
}
.cid-uGYNqHUPDl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYNqHUPDl .title__block {
  margin-bottom: 89px;
}
.cid-uGYNqHUPDl .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYNqHUPDl .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYNqHUPDl .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYNqHUPDl .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYNqHUPDl .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYNqHUPDl .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYNqHUPDl .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYNqHUPDl .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYNqHUPDl .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYNqHUPDl .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYNqHUPDl .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYNqHUPDl .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYNqHUPDl .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYNqHUPDl .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYNqHUPDl .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYNqHUPDl .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYNqHUPDl .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNqHUPDl .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYNqHUPDl .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNqHUPDl .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYNqHUPDl .iconBackground {
    left: 0 !important;
  }
  .cid-uGYNqHUPDl .separline:before {
    left: 0 !important;
  }
}
.cid-uGYNqHUPDl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYNqHUPDl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYNqHUPDl .mbr-timeline-text {
  text-align: center;
}
.cid-uGYOGMHioM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYOGMHioM .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYOGMHioM .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYOGMHioM .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYOGMHioM .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYOGMHioM .btn:hover {
  box-shadow: none;
}
.cid-uGYOGMHioM .mbr-section-title,
.cid-uGYOGMHioM .mbr-section-btn {
  text-align: center;
}
.cid-uGYNrB62ZY {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGYNrB62ZY .title__block {
  margin-bottom: 89px;
}
.cid-uGYNrB62ZY .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uGYNrB62ZY .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uGYNrB62ZY .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uGYNrB62ZY .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uGYNrB62ZY .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uGYNrB62ZY .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uGYNrB62ZY .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uGYNrB62ZY .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uGYNrB62ZY .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uGYNrB62ZY .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uGYNrB62ZY .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uGYNrB62ZY .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uGYNrB62ZY .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uGYNrB62ZY .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYNrB62ZY .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uGYNrB62ZY .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uGYNrB62ZY .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNrB62ZY .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uGYNrB62ZY .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uGYNrB62ZY .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uGYNrB62ZY .iconBackground {
    left: 0 !important;
  }
  .cid-uGYNrB62ZY .separline:before {
    left: 0 !important;
  }
}
.cid-uGYNrB62ZY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYNrB62ZY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYNrB62ZY .mbr-timeline-text {
  text-align: center;
}
.cid-uGYPbMK0tU {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uGYPbMK0tU .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uGYPbMK0tU .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uGYPbMK0tU .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uGYPbMK0tU .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uGYPbMK0tU .btn:hover {
  box-shadow: none;
}
.cid-uGYPbMK0tU .mbr-section-title,
.cid-uGYPbMK0tU .mbr-section-btn {
  text-align: center;
}
.cid-uGYEE14qZS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGYEE14qZS .title__block {
  margin-bottom: 65px;
}
.cid-uGYEE14qZS .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-uGYEE14qZS .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-uGYEE14qZS .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-uGYEE14qZS .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-uGYEE14qZS .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-uGYEE14qZS .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-uGYEE14qZS .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-uGYEE14qZS .card__content {
  display: block;
  width: 100%;
}
.cid-uGYEE14qZS .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-uGYEE14qZS .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uGYEE14qZS .title__block {
    margin-bottom: 40px;
  }
  .cid-uGYEE14qZS .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-uGYEE14qZS .nav-item {
    margin-bottom: 9px;
  }
  .cid-uGYEE14qZS .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-uGYEE14qZS .card__wrap {
    margin-bottom: 40px;
  }
  .cid-uGYEE14qZS .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-uGYEE14qZS .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uGYEE14qZS .card__image {
    max-width: 90px;
  }
  .cid-uGYEE14qZS .card__image img {
    width: 70%;
  }
}
.cid-uGYEE14qZS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEE14qZS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEE57V6G {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uGYEE57V6G .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uGYEE57V6G .mbr-section-title b,
.cid-uGYEE57V6G .mbr-section-title strong {
  font-weight: 500;
}
.cid-uGYEE57V6G .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uGYEE57V6G .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uGYEE57V6G .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uGYEE57V6G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEE57V6G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-vm .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vm .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vm .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vm .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uNcCJ7lZPM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCJ7lZPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCJ7lZPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCJ7lZPM .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCJ7lZPM .currentcost {
  color: #232323;
}
.cid-uNcCJ7lZPM .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCJ7lZPM .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCJ7lZPM .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCJ7lZPM .text-box {
    padding: 1rem;
  }
}
.cid-uNcCJ7lZPM .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uGYEE5DtkX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGYEE5DtkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGYEE5DtkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGYEE5DtkX .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uGYEE5DtkX .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uGYEE5DtkX .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uGYEE5DtkX .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uGYEE5DtkX .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uGYEE5DtkX .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uGYEE5DtkX .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uGYEE5DtkX .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uGYEE5DtkX .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uGYEE5DtkX .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uGYEE5DtkX .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uGYEE5DtkX .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uGYEE5DtkX .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uGYEE5DtkX .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGYEE5DtkX .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uGYEE5DtkX .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uGYEE6dxBL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uGYEE6dxBL .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uGYEE6dxBL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uGYEE6dxBL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uGYEE6dxBL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uGYEE6dxBL .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uGYEE6dxBL .social_icons {
  text-align: center;
}
.cid-uGYEE6dxBL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uGYEE6dxBL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uGYEE6dxBL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uGYEE6dxBL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uGYEE6dxBL .footer_timework {
    margin-top: 50px;
  }
  .cid-uGYEE6dxBL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweHG19CO P {
  color: #1281fc;
}
.cid-uJweHG19CO DIV {
  color: #ffffff;
}
.cid-uJweHG19CO H10 {
  color: #034e75;
}
.cid-uJweHG19CO .hidden {
  display: none;
}
.cid-uJweHG19CO .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweHG19CO .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweHG19CO .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweHG19CO .flag {
  background: transparent;
}
.cid-uJweHG19CO .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweHG19CO .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweHG19CO #google_translate_element {
  display: none;
}
.cid-uJweHG19CO .goog-te-banner {
  display: none;
}
.cid-uJweHG19CO .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweHG19CO .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweHG19CO body {
  top: 0px !important;
}
.cid-uJweHG19CO body body {
  top: 0 !important;
}
.cid-uJweHG19CO body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweHG19CO .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweHG19CO .goog-tooltip {
  display: none !important;
}
.cid-uJweHG19CO .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweHG19CO .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweHG19CO #goog-gt-tt,
.cid-uJweHG19CO .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweHG19CO #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweHG19CO .goog-logo-link {
  display: none !important;
}
.cid-uJweHG19CO .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweHG19CO div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweHG19CO div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uH3fAOVmxZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/marta-nowak-web-63-2000x1333.jpg");
}
.cid-uH3fAOVmxZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fAOVmxZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uH3fAOVmxZ .container {
    padding: 0 30px;
  }
}
.cid-uH3fAOVmxZ .content-wrapper {
  padding: 170px 0;
}
@media (max-width: 992px) {
  .cid-uH3fAOVmxZ .content-wrapper {
    padding: 80px 0;
  }
}
.cid-uH3fAOVmxZ .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uH3fAOVmxZ .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uH3fAOVmxZ .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uH3fAOVmxZ .mbr-section-title {
  color: #ffffff;
}
.cid-uH3fAOVmxZ .mbr-text,
.cid-uH3fAOVmxZ .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uH3fAOVmxZ .mbr-section-title,
.cid-uH3fAOVmxZ .mbr-section-btn {
  text-align: center;
  color: #111111;
}
.cid-uH3fAPOeSt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3fAPOeSt .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uH3fAPOeSt .mbr-section-title b,
.cid-uH3fAPOeSt .mbr-section-title strong {
  font-weight: 500;
}
.cid-uH3fAPOeSt .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uH3fAPOeSt .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uH3fAPOeSt .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uH3fAPOeSt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fAPOeSt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fAQtkiM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3fAQtkiM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fAQtkiM img {
  border-radius: 1rem;
}
.cid-uH3fAQtkiM .row {
  padding: 0 1rem;
}
.cid-uH3fAQtkiM .btn {
  transition: all 0.3s;
}
.cid-uH3fAQtkiM .btn:hover,
.cid-uH3fAQtkiM .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-uH3fAQtkiM .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-uH3fAQtkiM .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-uH3fAQtkiM .card {
    padding: 3rem 2rem;
  }
}
.cid-uH3fAQtkiM .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-uH3fAQtkiM .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uH3fAQtkiM .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uH3fAQtkiM .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uH3fAQtkiM .mbr-section-subtitle,
.cid-uH3fAQtkiM .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-uH3fAQtkiM .mbr-text,
.cid-uH3fAQtkiM .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uNcCQ6wrvb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCQ6wrvb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCQ6wrvb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCQ6wrvb .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCQ6wrvb .currentcost {
  color: #232323;
}
.cid-uNcCQ6wrvb .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCQ6wrvb .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCQ6wrvb .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCQ6wrvb .text-box {
    padding: 1rem;
  }
}
.cid-uNcCQ6wrvb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3hBltLcQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3hBltLcQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3hBltLcQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3hgmNTMv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3hgmNTMv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3hgmNTMv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3hgmNTMv .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uH3hgmNTMv .card {
    margin-bottom: 2rem!important;
  }
  .cid-uH3hgmNTMv .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uH3hgmNTMv .link-wrap {
    align-items: center;
  }
}
.cid-uH3hgmNTMv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3hgmNTMv .card-title,
.cid-uH3hgmNTMv .card-box {
  text-align: left;
}
.cid-uH3iE44h6N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3iE44h6N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3iE44h6N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3iE44h6N .mbr-section-subtitle {
  text-align: center;
}
.cid-uH3iwQzp24 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3iwQzp24 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3iwQzp24 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3iwQzp24 .item-wrapper {
  border-radius: 4px;
  background: #fafafa;
}
@media (min-width: 992px) {
  .cid-uH3iwQzp24 .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uH3iwQzp24 .item-wrapper {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}
.cid-uH3iwQzp24 .row {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uH3iwQzp24 .row .row {
    flex-direction: column-reverse;
  }
  .cid-uH3iwQzp24 .row .row .img-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uH3iwQzp24 .img-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3iwQzp24 .card-subtitle {
  color: #0095ff;
}
.cid-uH3iwQzp24 .mbr-text {
  color: #555555;
}
.cid-uH3fAQWY9g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uH3fAQWY9g .title__block {
  margin-bottom: 89px;
}
.cid-uH3fAQWY9g .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uH3fAQWY9g .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uH3fAQWY9g .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-uH3fAQWY9g .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uH3fAQWY9g .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uH3fAQWY9g .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uH3fAQWY9g .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uH3fAQWY9g .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uH3fAQWY9g .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uH3fAQWY9g .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uH3fAQWY9g .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uH3fAQWY9g .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uH3fAQWY9g .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uH3fAQWY9g .title__block {
    margin-bottom: 40px;
  }
  .cid-uH3fAQWY9g .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uH3fAQWY9g .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uH3fAQWY9g .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fAQWY9g .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uH3fAQWY9g .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fAQWY9g .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uH3fAQWY9g .iconBackground {
    left: 0 !important;
  }
  .cid-uH3fAQWY9g .separline:before {
    left: 0 !important;
  }
}
.cid-uH3fAQWY9g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fAQWY9g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fAQWY9g .mbr-timeline-text {
  text-align: center;
}
.cid-uH3lqQ0lxR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3fARz6D1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uH3fARz6D1 .title__block {
  margin-bottom: 89px;
}
.cid-uH3fARz6D1 .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uH3fARz6D1 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uH3fARz6D1 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: left;
}
.cid-uH3fARz6D1 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uH3fARz6D1 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uH3fARz6D1 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uH3fARz6D1 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uH3fARz6D1 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uH3fARz6D1 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uH3fARz6D1 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uH3fARz6D1 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uH3fARz6D1 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uH3fARz6D1 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uH3fARz6D1 .title__block {
    margin-bottom: 40px;
  }
  .cid-uH3fARz6D1 .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uH3fARz6D1 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uH3fARz6D1 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fARz6D1 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uH3fARz6D1 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fARz6D1 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uH3fARz6D1 .iconBackground {
    left: 0 !important;
  }
  .cid-uH3fARz6D1 .separline:before {
    left: 0 !important;
  }
}
.cid-uH3fARz6D1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fARz6D1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fARz6D1 .mbr-timeline-text {
  text-align: center;
}
.cid-uNcCVZACHb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCVZACHb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCVZACHb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCVZACHb .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCVZACHb .currentcost {
  color: #232323;
}
.cid-uNcCVZACHb .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCVZACHb .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCVZACHb .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCVZACHb .text-box {
    padding: 1rem;
  }
}
.cid-uNcCVZACHb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3fAS7dqs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fAS7dqs .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uH3fAS7dqs .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fAS7dqs .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fAS7dqs .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fAS7dqs .btn:hover {
  box-shadow: none;
}
.cid-uH3fAS7dqs .mbr-section-title,
.cid-uH3fAS7dqs .mbr-section-btn {
  text-align: center;
}
.cid-uH3fASDVGb {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uH3fASDVGb .title__block {
  margin-bottom: 89px;
}
.cid-uH3fASDVGb .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uH3fASDVGb .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uH3fASDVGb .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uH3fASDVGb .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uH3fASDVGb .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uH3fASDVGb .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uH3fASDVGb .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uH3fASDVGb .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uH3fASDVGb .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uH3fASDVGb .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uH3fASDVGb .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uH3fASDVGb .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uH3fASDVGb .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uH3fASDVGb .title__block {
    margin-bottom: 40px;
  }
  .cid-uH3fASDVGb .mbr-section-title {
    margin-bottom: 15px;
  }
  .cid-uH3fASDVGb .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uH3fASDVGb .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fASDVGb .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uH3fASDVGb .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fASDVGb .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uH3fASDVGb .iconBackground {
    left: 0 !important;
  }
  .cid-uH3fASDVGb .separline:before {
    left: 0 !important;
  }
}
.cid-uH3fASDVGb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fASDVGb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fASDVGb .mbr-timeline-text {
  text-align: center;
}
.cid-uH3fATldBv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fATldBv .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uH3fATldBv .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fATldBv .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fATldBv .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fATldBv .btn:hover {
  box-shadow: none;
}
.cid-uH3fATldBv .mbr-section-title,
.cid-uH3fATldBv .mbr-section-btn {
  text-align: center;
}
.cid-uH3fATPJCy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3fATPJCy .title__block {
  margin-bottom: 65px;
}
.cid-uH3fATPJCy .nav-tabs {
  margin-bottom: 105px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border-bottom: 1px solid #22a5e5 !important;
}
.cid-uH3fATPJCy .nav-item {
  min-width: auto;
  margin: 0;
}
.cid-uH3fATPJCy .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #22a5e5 !important;
  font-weight: 700;
  padding: 0 36px 41px;
  border: none;
  border-radius: 0 !important;
  margin: 0;
  border-bottom: 11px solid transparent;
  background-color: transparent;
  transition: all .1s;
}
.cid-uH3fATPJCy .nav-tabs .nav-link.active {
  font-weight: 700;
  border: none;
  background-color: transparent;
  border-bottom: 11px solid #22a5e5 !important;
}
.cid-uH3fATPJCy .card__wrap {
  margin-bottom: 60px;
  display: flex;
}
.cid-uH3fATPJCy .card__image {
  display: block;
  max-width: 150px;
  width: 100%;
  text-align: center;
}
.cid-uH3fATPJCy .card__image img {
  width: 45%;
  object-fit: cover;
}
.cid-uH3fATPJCy .card__content {
  display: block;
  width: 100%;
}
.cid-uH3fATPJCy .card__title {
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}
.cid-uH3fATPJCy .card__text {
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uH3fATPJCy .title__block {
    margin-bottom: 40px;
  }
  .cid-uH3fATPJCy .nav-tabs {
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-bottom: 47px;
  }
  .cid-uH3fATPJCy .nav-item {
    margin-bottom: 9px;
  }
  .cid-uH3fATPJCy .nav-tabs .nav-link {
    padding-bottom: 25px;
  }
  .cid-uH3fATPJCy .card__wrap {
    margin-bottom: 40px;
  }
  .cid-uH3fATPJCy .card__title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
  .cid-uH3fATPJCy .card__image {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .cid-uH3fATPJCy .card__image {
    max-width: 90px;
  }
  .cid-uH3fATPJCy .card__image img {
    width: 70%;
  }
}
.cid-uH3fATPJCy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fATPJCy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fAV5rh0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uH3fAV5rh0 .title__block {
  margin-bottom: 89px;
}
.cid-uH3fAV5rh0 .timelines-container .separline:last-child:before {
  content: none;
}
.cid-uH3fAV5rh0 .mbr-timeline-title {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: center;
}
.cid-uH3fAV5rh0 .timeline-text-content {
  padding: 27px 27px 28px 37px;
  border: 1px solid #ddebe9;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
}
.cid-uH3fAV5rh0 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-uH3fAV5rh0 .timeline-text-content:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid #ddebe9;
  display: block;
  border-bottom: none;
  border-left: none;
  position: absolute;
  right: -8px;
  top: 18px;
  background-color: #ffffff;
  transform: rotate(45deg);
}
.cid-uH3fAV5rh0 .timeline-element {
  margin-top: 20px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}
.cid-uH3fAV5rh0 .timeline-element:nth-child(odd) .timeline-text-content {
  margin-right: 35px;
}
.cid-uH3fAV5rh0 .timeline-element:nth-child(even) .timeline-text-content {
  margin-left: 35px;
}
.cid-uH3fAV5rh0 .timeline-element:nth-child(even) .timeline-text-content:before {
  right: auto;
  left: -8px;
  top: 18px;
  transform: rotate(225deg);
}
.cid-uH3fAV5rh0 .iconBackground {
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 21px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
  background-color: #22a5e5;
}
.cid-uH3fAV5rh0 .iconBackground:before {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: inherit;
  opacity: .35;
  top: -10px;
  left: -10px;
  border-radius: 50%;
}
.cid-uH3fAV5rh0 .separline:before {
  top: 60px;
  bottom: 0;
  position: absolute;
  content: "";
  width: .5px;
  background-color: #22a5e5;
  left: calc(50% - 1px);
  height: calc(100% - 3rem);
  opacity: .35;
}
@media (max-width: 991px) {
  .cid-uH3fAV5rh0 .title__block {
    margin-bottom: 40px;
  }
  .cid-uH3fAV5rh0 .timeline-element {
    margin: 0 0 28px 10px;
  }
  .cid-uH3fAV5rh0 .timeline-element:nth-child(odd) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fAV5rh0 .timeline-element:nth-child(odd) .timeline-text-content:before {
    right: auto;
    left: -8px;
    transform: rotate(225deg);
  }
  .cid-uH3fAV5rh0 .timeline-element:nth-child(even) .timeline-text-content {
    margin-right: 10px;
  }
  .cid-uH3fAV5rh0 .timeline-text-content {
    padding: 18px 19px;
    margin-left: 0 !important;
  }
  .cid-uH3fAV5rh0 .iconBackground {
    left: 0 !important;
  }
  .cid-uH3fAV5rh0 .separline:before {
    left: 0 !important;
  }
}
.cid-uH3fAV5rh0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fAV5rh0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fAV5rh0 .mbr-timeline-text {
  text-align: center;
}
.cid-uH3fAVOUf4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fAVOUf4 .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #ffffff;
  text-align: center;
}
.cid-uH3fAVOUf4 .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fAVOUf4 .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fAVOUf4 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fAVOUf4 .btn:hover {
  box-shadow: none;
}
.cid-uH3fAVOUf4 .mbr-section-title,
.cid-uH3fAVOUf4 .mbr-section-btn {
  text-align: center;
}
.cid-uH3fAVOUf4 .mbr-section-title,
.cid-uH3fAVOUf4 .mbr-section-btn DIV {
  text-align: left;
}
.cid-uH3fAX6ppl {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fAX6ppl .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uH3fAX6ppl .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fAX6ppl .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fAX6ppl .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fAX6ppl .btn:hover {
  box-shadow: none;
}
.cid-uH3fAX6ppl .mbr-section-title,
.cid-uH3fAX6ppl .mbr-section-btn {
  text-align: center;
}
.cid-uH3fAYlNY5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fAYlNY5 .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uH3fAYlNY5 .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fAYlNY5 .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fAYlNY5 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fAYlNY5 .btn:hover {
  box-shadow: none;
}
.cid-uH3fAYlNY5 .mbr-section-title,
.cid-uH3fAYlNY5 .mbr-section-btn {
  text-align: center;
}
.cid-uH3fAZRXeT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uH3fAZRXeT .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uH3fAZRXeT .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uH3fAZRXeT .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uH3fAZRXeT .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uH3fAZRXeT .btn:hover {
  box-shadow: none;
}
.cid-uH3fAZRXeT .mbr-section-title,
.cid-uH3fAZRXeT .mbr-section-btn {
  text-align: center;
}
.cid-uH3fB1FUYt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uH3fB1FUYt .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uH3fB1FUYt .mbr-section-title b,
.cid-uH3fB1FUYt .mbr-section-title strong {
  font-weight: 500;
}
.cid-uH3fB1FUYt .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uH3fB1FUYt .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uH3fB1FUYt .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uH3fB1FUYt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fB1FUYt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3pBZCkQM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uH3pBZCkQM .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
#custom-html-wv .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-wv .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-wv .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-wv .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uNcCXiHcn3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCXiHcn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCXiHcn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCXiHcn3 .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCXiHcn3 .currentcost {
  color: #232323;
}
.cid-uNcCXiHcn3 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCXiHcn3 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCXiHcn3 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCXiHcn3 .text-box {
    padding: 1rem;
  }
}
.cid-uNcCXiHcn3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uH3fB2xZFm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uH3fB2xZFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH3fB2xZFm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH3fB2xZFm .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uH3fB2xZFm .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uH3fB2xZFm .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uH3fB2xZFm .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uH3fB2xZFm .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uH3fB2xZFm .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uH3fB2xZFm .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uH3fB2xZFm .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uH3fB2xZFm .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uH3fB2xZFm .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uH3fB2xZFm .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uH3fB2xZFm .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uH3fB2xZFm .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uH3fB2xZFm .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uH3fB2xZFm .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uH3fB2xZFm .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uH3fB3KWQG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uH3fB3KWQG .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uH3fB3KWQG .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uH3fB3KWQG .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uH3fB3KWQG .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uH3fB3KWQG .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uH3fB3KWQG .social_icons {
  text-align: center;
}
.cid-uH3fB3KWQG .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uH3fB3KWQG .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uH3fB3KWQG .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uH3fB3KWQG .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uH3fB3KWQG .footer_timework {
    margin-top: 50px;
  }
  .cid-uH3fB3KWQG .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweJhOaHq P {
  color: #1281fc;
}
.cid-uJweJhOaHq DIV {
  color: #ffffff;
}
.cid-uJweJhOaHq H10 {
  color: #034e75;
}
.cid-uJweJhOaHq .hidden {
  display: none;
}
.cid-uJweJhOaHq .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweJhOaHq .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweJhOaHq .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweJhOaHq .flag {
  background: transparent;
}
.cid-uJweJhOaHq .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweJhOaHq .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweJhOaHq #google_translate_element {
  display: none;
}
.cid-uJweJhOaHq .goog-te-banner {
  display: none;
}
.cid-uJweJhOaHq .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweJhOaHq .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweJhOaHq body {
  top: 0px !important;
}
.cid-uJweJhOaHq body body {
  top: 0 !important;
}
.cid-uJweJhOaHq body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweJhOaHq .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweJhOaHq .goog-tooltip {
  display: none !important;
}
.cid-uJweJhOaHq .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweJhOaHq .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweJhOaHq #goog-gt-tt,
.cid-uJweJhOaHq .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweJhOaHq #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweJhOaHq .goog-logo-link {
  display: none !important;
}
.cid-uJweJhOaHq .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweJhOaHq div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweJhOaHq div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uHhlWywv2Q {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHhlWywv2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHhlWywv2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHhlWywv2Q .mbr-section-title,
.cid-uHhlWywv2Q .mbr-text,
.cid-uHhlWywv2Q .mbr-section-btn {
  text-align: center;
}
.cid-uHhlWywv2Q .video-wrapper {
  margin: auto;
}
.cid-uHhlWywv2Q .video-wrapper iframe {
  width: 100%;
}
.cid-uHhlWywv2Q .mbr-section-title {
  color: #22a5e5;
}
.cid-uHhlWyRXo0 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bartomiej-gospodarczyk-web-14-2000x1600.jpg");
}
.cid-uHhlWyRXo0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHhlWyRXo0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHhmoPIl9y {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHhmoPIl9y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHhmoPIl9y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHhmoPIl9y .item {
  padding-bottom: 2rem;
}
.cid-uHhmoPIl9y .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uHhmoPIl9y .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uHhmoPIl9y .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uHhmoPIl9y .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uHhmoPIl9y .carousel-control,
.cid-uHhmoPIl9y .close {
  background: #1b1b1b;
}
.cid-uHhmoPIl9y .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uHhmoPIl9y .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uHhmoPIl9y .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uHhmoPIl9y .carousel-control-next span {
  margin-left: 5px;
}
.cid-uHhmoPIl9y .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uHhmoPIl9y .close::before {
  content: '\e91a';
}
.cid-uHhmoPIl9y .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uHhmoPIl9y .carousel-control {
  display: flex;
  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-uHhmoPIl9y .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHhmoPIl9y .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHhmoPIl9y .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHhmoPIl9y .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uHhmoPIl9y .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-uHhmoPIl9y .carousel-indicators li.active,
.cid-uHhmoPIl9y .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uHhmoPIl9y .carousel-indicators li::after,
.cid-uHhmoPIl9y .carousel-indicators li::before {
  content: none;
}
.cid-uHhmoPIl9y .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uHhmoPIl9y .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uHhmoPIl9y .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uHhmoPIl9y .carousel-indicators {
    display: none;
  }
}
.cid-uHhmoPIl9y .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uHhmoPIl9y .carousel-inner > .active {
  display: block;
}
.cid-uHhmoPIl9y .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHhmoPIl9y .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uHhmoPIl9y .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uHhmoPIl9y .carousel-control,
  .cid-uHhmoPIl9y .carousel-indicators,
  .cid-uHhmoPIl9y .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uHhmoPIl9y .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uHhmoPIl9y .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uHhmoPIl9y .carousel-indicators .active,
.cid-uHhmoPIl9y .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uHhmoPIl9y .carousel-indicators .active {
  background: #fff;
}
.cid-uHhmoPIl9y .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uHhmoPIl9y .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uHhmoPIl9y .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uHhmoPIl9y .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uHhmoPIl9y .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uHhmoPIl9y .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uHhmoPIl9y .carousel {
  width: 100%;
}
.cid-uHhmoPIl9y .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uHhmoPIl9y .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uHhmoPIl9y .modal.fade .modal-dialog,
.cid-uHhmoPIl9y .modal.in .modal-dialog {
  transform: none;
}
.cid-uHhmoPIl9y .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uHhmoPIl9y H6 {
  text-align: center;
}
.cid-uHhlWC9dw1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHhlWC9dw1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHhlWC9dw1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHhlWC9dw1 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uHhlWC9dw1 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uHhlWC9dw1 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uHhlWC9dw1 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uHhlWC9dw1 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHhlWC9dw1 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uHhlWC9dw1 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uHhlWC9dw1 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uHhlWC9dw1 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uHhlWC9dw1 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uHhlWC9dw1 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uHhlWC9dw1 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uHhlWC9dw1 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uHhlWC9dw1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHhlWC9dw1 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHhlWC9dw1 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uHhlWCGGZC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uHhlWCGGZC .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uHhlWCGGZC .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uHhlWCGGZC .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uHhlWCGGZC .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uHhlWCGGZC .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uHhlWCGGZC .social_icons {
  text-align: center;
}
.cid-uHhlWCGGZC .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uHhlWCGGZC .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uHhlWCGGZC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uHhlWCGGZC .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uHhlWCGGZC .footer_timework {
    margin-top: 50px;
  }
  .cid-uHhlWCGGZC .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uHtSSPbs84 {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/patrycja-jeziorska-web-49-2000x1333.jpg");
}
.cid-uHtSSPbs84 .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uHtSSPbs84 .wrap {
  padding: 0 25px;
}
.cid-uHtSSPbs84 .wrap:before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #9fdbf8;
  top: 0px;
  right: 0px;
}
.cid-uHtSSPbs84 .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uHtSSPbs84 .mbr-text {
  margin-bottom: 20px;
}
.cid-uHtSSPbs84 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uHtSSPbs84 .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uHtSSPbs84 .container,
  .cid-uHtSSPbs84 .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uHtSSPbs84 .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uHtSSPbs84 a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uHtSSPbs84 .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uHtSSPbs84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtSSPbs84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtSSPbs84 .mbr-section-title,
.cid-uHtSSPbs84 .mbr-figure {
  text-align: center;
}
.cid-uHtSSPbs84 .mbr-text,
.cid-uHtSSPbs84 .mbr-section-btn {
  text-align: center;
}
.cid-uHtZGIHL6L {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHtZGIHL6L .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #6ec7f2;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uHtZGIHL6L H2 {
  color: #36404c;
  text-align: center;
}
.cid-uHtZGIHL6L H3 {
  color: #36404c;
  text-align: center;
}
.cid-uHtZGIHL6L .mbr-text,
.cid-uHtZGIHL6L .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uHtZGIHL6L .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-uHtZGIHL6L img {
  filter: invert(0.5);
  width: auto;
}
.cid-uHtZGIHL6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtZGIHL6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCpJRPX7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCpJRPX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCpJRPX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCpJRPX7 .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCpJRPX7 .currentcost {
  color: #232323;
}
.cid-uNcCpJRPX7 .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCpJRPX7 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCpJRPX7 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCpJRPX7 .text-box {
    padding: 1rem;
  }
}
.cid-uNcCpJRPX7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHtZJ4l2xa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHtZJ4l2xa .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHtZJ4l2xa .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHtZJ4l2xa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtZJ4l2xa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtZK9g9dP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHtZK9g9dP .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHtZK9g9dP .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHtZK9g9dP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtZK9g9dP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu6u5qqZi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHu6u5qqZi .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHu6u5qqZi .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHu6u5qqZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu6u5qqZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu6vYpMBb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHu6vYpMBb .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHu6vYpMBb .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHu6vYpMBb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu6vYpMBb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu6wGXcdd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHu6wGXcdd .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHu6wGXcdd .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHu6wGXcdd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu6wGXcdd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHucqsP9mK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uHucqsP9mK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHucqsP9mK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uHucqsP9mK .container-fluid {
    padding: 0;
  }
}
.cid-uHucqsP9mK .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uHucqsP9mK .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uHucqsP9mK .embla__button--next,
.cid-uHucqsP9mK .embla__button--prev {
  display: flex;
}
.cid-uHucqsP9mK .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uHucqsP9mK .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uHucqsP9mK .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uHucqsP9mK .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uHucqsP9mK .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHucqsP9mK .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHucqsP9mK .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHucqsP9mK .embla {
  position: relative;
  width: 100%;
}
.cid-uHucqsP9mK .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uHucqsP9mK .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uHucqsP9mK .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uHucqsP9mK .embla__slide a {
  cursor: grab;
}
.cid-uHucqsP9mK .embla__slide a:active {
  cursor: grabbing;
}
.cid-uHucqsP9mK .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uHucqsP9mK .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uHucqsP9mK .mbr-section-title {
  color: #232323;
}
.cid-uHucqsP9mK .mbr-section-subtitle {
  color: #232323;
}
.cid-uHucqsP9mK .mbr-box {
  color: #ffffff;
}
.cid-uHucqsP9mK .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uHucqsP9mK img,
.cid-uHucqsP9mK .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uHucqsP9mK .item-wrapper {
  position: relative;
}
.cid-uHucqsP9mK .content-head {
  max-width: 800px;
}
.cid-uHu7GqNPGK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHu7GqNPGK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu7GqNPGK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu7GqNPGK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHu7GqNPGK .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHu7GqNPGK .container {
    padding: 0 15px;
  }
}
.cid-uHu7GqNPGK .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHu7GqNPGK .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHu7GqNPGK .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHu7GqNPGK .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHu7GqNPGK .content-wrap {
    display: block;
  }
}
.cid-uHu7GqNPGK .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu7GqNPGK .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu7GqNPGK .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu7GqNPGK .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu7GqNPGK .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHu7GqNPGK .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHu7GqNPGK .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHu7GqNPGK .mbr-desc,
.cid-uHu7GqNPGK .desc-wrapper {
  color: #3f1819;
}
.cid-uHtZd3TbQP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHtZd3TbQP .mbr-section-title {
  margin-bottom: 0;
}
.cid-uHtZd3TbQP .mbr-text {
  margin-top: 10px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-uHtZd3TbQP .card__block {
  margin-top: 45px;
  font-weight: 500;
}
.cid-uHtZd3TbQP .card__title {
  width: 100%;
}
.cid-uHtZd3TbQP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtZd3TbQP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu8uRAEzV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHu8uRAEzV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu8uRAEzV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu8uRAEzV .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHu8uRAEzV .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHu8uRAEzV .container {
    padding: 0 15px;
  }
}
.cid-uHu8uRAEzV .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHu8uRAEzV .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHu8uRAEzV .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHu8uRAEzV .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHu8uRAEzV .content-wrap {
    display: block;
  }
}
.cid-uHu8uRAEzV .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8uRAEzV .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8uRAEzV .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8uRAEzV .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8uRAEzV .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHu8uRAEzV .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHu8uRAEzV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHu8uRAEzV .mbr-desc,
.cid-uHu8uRAEzV .desc-wrapper {
  color: #3f1819;
}
.cid-uHu8vP2Wev {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHu8vP2Wev .mbr-section-title {
  margin-bottom: 0;
}
.cid-uHu8vP2Wev .mbr-text {
  margin-top: 10px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-uHu8vP2Wev .card__block {
  margin-top: 45px;
  font-weight: 500;
}
.cid-uHu8vP2Wev .card__title {
  width: 100%;
}
.cid-uHu8vP2Wev .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu8vP2Wev .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu917faOc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHu917faOc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu917faOc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHudBrCic1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uHudBrCic1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHudBrCic1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uHudBrCic1 .container-fluid {
    padding: 0;
  }
}
.cid-uHudBrCic1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uHudBrCic1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uHudBrCic1 .embla__button--next,
.cid-uHudBrCic1 .embla__button--prev {
  display: flex;
}
.cid-uHudBrCic1 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uHudBrCic1 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uHudBrCic1 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uHudBrCic1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uHudBrCic1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHudBrCic1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHudBrCic1 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHudBrCic1 .embla {
  position: relative;
  width: 100%;
}
.cid-uHudBrCic1 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uHudBrCic1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uHudBrCic1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uHudBrCic1 .embla__slide a {
  cursor: grab;
}
.cid-uHudBrCic1 .embla__slide a:active {
  cursor: grabbing;
}
.cid-uHudBrCic1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uHudBrCic1 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uHudBrCic1 .mbr-section-title {
  color: #232323;
}
.cid-uHudBrCic1 .mbr-section-subtitle {
  color: #232323;
}
.cid-uHudBrCic1 .mbr-box {
  color: #ffffff;
}
.cid-uHudBrCic1 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uHudBrCic1 img,
.cid-uHudBrCic1 .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uHudBrCic1 .item-wrapper {
  position: relative;
}
.cid-uHudBrCic1 .content-head {
  max-width: 800px;
}
.cid-uNcCsiLjtC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCsiLjtC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCsiLjtC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCsiLjtC .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCsiLjtC .currentcost {
  color: #232323;
}
.cid-uNcCsiLjtC .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCsiLjtC .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCsiLjtC .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCsiLjtC .text-box {
    padding: 1rem;
  }
}
.cid-uNcCsiLjtC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHu8wy8sum {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHu8wy8sum .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu8wy8sum .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu8wy8sum .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHu8wy8sum .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHu8wy8sum .container {
    padding: 0 15px;
  }
}
.cid-uHu8wy8sum .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHu8wy8sum .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHu8wy8sum .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHu8wy8sum .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHu8wy8sum .content-wrap {
    display: block;
  }
}
.cid-uHu8wy8sum .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8wy8sum .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8wy8sum .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8wy8sum .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8wy8sum .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHu8wy8sum .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHu8wy8sum .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHu8wy8sum .mbr-desc,
.cid-uHu8wy8sum .desc-wrapper {
  color: #3f1819;
}
.cid-uHu8xgi7N5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHu8xgi7N5 .mbr-section-title {
  margin-bottom: 0;
}
.cid-uHu8xgi7N5 .mbr-text {
  margin-top: 10px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-uHu8xgi7N5 .card__block {
  margin-top: 45px;
  font-weight: 500;
}
.cid-uHu8xgi7N5 .card__title {
  width: 100%;
}
.cid-uHu8xgi7N5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu8xgi7N5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu9DPuRH0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHu9DPuRH0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu9DPuRH0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuampfCoj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHuampfCoj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uHuampfCoj .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uHuampfCoj .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uHuampfCoj .content-head {
  max-width: 800px;
}
.cid-uHuampfCoj .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uHuampfCoj .mbr-card-title {
  text-align: left;
  color: #000000;
}
.cid-uHuayQAYVP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHuayQAYVP .mbr-section-title {
  margin-bottom: 0;
}
.cid-uHuayQAYVP .mbr-text {
  margin-top: 10px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-uHuayQAYVP .card__block {
  margin-top: 45px;
  font-weight: 500;
}
.cid-uHuayQAYVP .card__title {
  width: 100%;
}
.cid-uHuayQAYVP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuayQAYVP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu8xWoXoz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHu8xWoXoz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHu8xWoXoz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHu8xWoXoz .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHu8xWoXoz .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHu8xWoXoz .container {
    padding: 0 15px;
  }
}
.cid-uHu8xWoXoz .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHu8xWoXoz .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHu8xWoXoz .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHu8xWoXoz .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHu8xWoXoz .content-wrap {
    display: block;
  }
}
.cid-uHu8xWoXoz .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8xWoXoz .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8xWoXoz .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHu8xWoXoz .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHu8xWoXoz .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHu8xWoXoz .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHu8xWoXoz .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHu8xWoXoz .mbr-desc,
.cid-uHu8xWoXoz .desc-wrapper {
  color: #3f1819;
}
.cid-uHubdHEvJq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  background-image: linear-gradient(125deg, #9fdbf8 45%, #ffffff 120%);
}
.cid-uHubdHEvJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHubdHEvJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHubdHEvJq .row {
  position: relative;
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 220px;
}
.cid-uHubdHEvJq .row .image-wrapper {
  position: absolute;
  height: 190px;
  width: 285px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHubdHEvJq .row .image-wrapper {
    position: static;
    margin-top: 16px;
    width: 100%;
    padding: 0 16px;
  }
  .cid-uHubdHEvJq .row .image-wrapper:first-child {
    margin-top: 22px;
  }
}
.cid-uHubdHEvJq .row .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-uHubdHEvJq .row .image_1 {
  top: 0;
  left: 0;
}
.cid-uHubdHEvJq .row .image_2 {
  top: 0;
  right: 0;
}
.cid-uHubdHEvJq .row .image_3 {
  bottom: 0;
  left: 0;
}
.cid-uHubdHEvJq .row .image_4 {
  bottom: 0;
  right: 0;
}
.cid-uHubdHEvJq .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #22a5e5, #353535 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uHubdHEvJq .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uHubdHEvJq .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uHubdHEvJq .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHubdHEvJq .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uHubdHEvJq .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uHubdHEvJq .mbr-label,
.cid-uHubdHEvJq .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uHubdHEvJq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHubdHEvJq .mbr-text,
.cid-uHubdHEvJq .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uHubdHEvJq .mbr-section-title,
.cid-uHubdHEvJq .mbr-section-btn {
  text-align: center;
}
.cid-uHueoqD8CB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHueoqD8CB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHueoqD8CB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHueoqD8CB .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uHueoqD8CB .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uHueoqD8CB .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uHueoqD8CB .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uHueoqD8CB .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHueoqD8CB .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uHueoqD8CB .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uHueoqD8CB .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uHueoqD8CB .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uHueoqD8CB .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uHueoqD8CB .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uHueoqD8CB .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uHueoqD8CB .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uHueoqD8CB .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHueoqD8CB .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHueoqD8CB .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-u2jS46lQ0Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-u2jS46lQ0Q .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-u2jS46lQ0Q .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-u2jS46lQ0Q .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-u2jS46lQ0Q .social_icons {
  text-align: center;
}
.cid-u2jS46lQ0Q .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-u2jS46lQ0Q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u2jS46lQ0Q .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-u2jS46lQ0Q .footer_timework {
    margin-top: 50px;
  }
  .cid-u2jS46lQ0Q .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweDXEWkm P {
  color: #1281fc;
}
.cid-uJweDXEWkm DIV {
  color: #ffffff;
}
.cid-uJweDXEWkm H10 {
  color: #034e75;
}
.cid-uJweDXEWkm .hidden {
  display: none;
}
.cid-uJweDXEWkm .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweDXEWkm .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweDXEWkm .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweDXEWkm .flag {
  background: transparent;
}
.cid-uJweDXEWkm .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweDXEWkm .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweDXEWkm #google_translate_element {
  display: none;
}
.cid-uJweDXEWkm .goog-te-banner {
  display: none;
}
.cid-uJweDXEWkm .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweDXEWkm .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweDXEWkm body {
  top: 0px !important;
}
.cid-uJweDXEWkm body body {
  top: 0 !important;
}
.cid-uJweDXEWkm body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweDXEWkm .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweDXEWkm .goog-tooltip {
  display: none !important;
}
.cid-uJweDXEWkm .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweDXEWkm .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweDXEWkm #goog-gt-tt,
.cid-uJweDXEWkm .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweDXEWkm #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweDXEWkm .goog-logo-link {
  display: none !important;
}
.cid-uJweDXEWkm .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweDXEWkm div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweDXEWkm div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uHuNLLMd0Y {
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/ewa-tereszczyk-20-2000x1343.jpg");
}
.cid-uHuNLLMd0Y .container {
  margin: 0 auto;
  padding: 0 25px;
}
.cid-uHuNLLMd0Y .wrap {
  padding: 0 25px;
}
.cid-uHuNLLMd0Y .wrap:before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  background-color: #9fdbf8;
  top: 0px;
  right: 0px;
}
.cid-uHuNLLMd0Y .title__block {
  padding: 90px 0;
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
}
.cid-uHuNLLMd0Y .mbr-text {
  margin-bottom: 20px;
}
.cid-uHuNLLMd0Y .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uHuNLLMd0Y .title__block {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-uHuNLLMd0Y .container,
  .cid-uHuNLLMd0Y .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uHuNLLMd0Y .title__block {
    padding: 50px 0;
  }
}
@media (max-width: 575px) {
  .cid-uHuNLLMd0Y a.close {
    right: 50px;
    top: 25px;
  }
  .cid-uHuNLLMd0Y .modalWindow .modalWindow-video {
    height: calc(90vw / 1.778);
    width: 90vw;
    margin: 0 auto;
  }
}
.cid-uHuNLLMd0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLLMd0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLLMd0Y .mbr-section-title,
.cid-uHuNLLMd0Y .mbr-figure {
  text-align: center;
}
.cid-uHuNLLMd0Y .mbr-text,
.cid-uHuNLLMd0Y .mbr-section-btn {
  text-align: center;
}
.cid-uHuNLMStsd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uHuNLMStsd .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #6ec7f2;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-uHuNLMStsd H2 {
  color: #36404c;
  text-align: center;
}
.cid-uHuNLMStsd H3 {
  color: #36404c;
  text-align: center;
}
.cid-uHuNLMStsd .mbr-text,
.cid-uHuNLMStsd .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uHuNLMStsd .md-pb {
    padding-bottom: 2rem;
  }
}
.cid-uHuNLMStsd img {
  filter: invert(0.5);
  width: auto;
}
.cid-uHuNLMStsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLMStsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLRyFpB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHuNLRyFpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLRyFpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLRyFpB .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLRyFpB .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHuNLRyFpB .container {
    padding: 0 15px;
  }
}
.cid-uHuNLRyFpB .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHuNLRyFpB .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHuNLRyFpB .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHuNLRyFpB .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHuNLRyFpB .content-wrap {
    display: block;
  }
}
.cid-uHuNLRyFpB .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLRyFpB .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHuNLRyFpB .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLRyFpB .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHuNLRyFpB .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHuNLRyFpB .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHuNLRyFpB .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHuNLRyFpB .mbr-desc,
.cid-uHuNLRyFpB .desc-wrapper {
  color: #3f1819;
}
.cid-uNcCvH29cE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCvH29cE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCvH29cE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCvH29cE .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCvH29cE .currentcost {
  color: #232323;
}
.cid-uNcCvH29cE .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCvH29cE .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCvH29cE .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCvH29cE .text-box {
    padding: 1rem;
  }
}
.cid-uNcCvH29cE .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHuOAYuR6T {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uHuOAYuR6T .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHuOAYuR6T .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uHuOAYuR6T .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uHuOAYuR6T .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uHuOAYuR6T .btn:hover {
  box-shadow: none;
}
.cid-uHuOAYuR6T .mbr-section-title,
.cid-uHuOAYuR6T .mbr-section-btn {
  text-align: center;
}
.cid-uHuNLNmjTV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuNLNmjTV .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuNLNmjTV .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuNLNmjTV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLNmjTV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLPECxl {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuNLPECxl .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuNLPECxl .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuNLPECxl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLPECxl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuPdVOFG4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uHuPdVOFG4 .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uHuPdVOFG4 .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uHuPdVOFG4 .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uHuPdVOFG4 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uHuPdVOFG4 .btn:hover {
  box-shadow: none;
}
.cid-uHuPdVOFG4 .mbr-section-title,
.cid-uHuPdVOFG4 .mbr-section-btn {
  text-align: center;
}
.cid-uHuNLOp8Yf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuNLOp8Yf .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuNLOp8Yf .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuNLOp8Yf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLOp8Yf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLQ0X22 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuNLQ0X22 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuNLQ0X22 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuNLQ0X22 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLQ0X22 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLQpA40 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuNLQpA40 .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuNLQpA40 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuNLQpA40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLQpA40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuPGnebuM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHuPGnebuM .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-uHuPGnebuM .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uHuPGnebuM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuPGnebuM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLQPn2u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uHuNLQPn2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLQPn2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uHuNLQPn2u .container-fluid {
    padding: 0;
  }
}
.cid-uHuNLQPn2u .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uHuNLQPn2u .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uHuNLQPn2u .embla__button--next,
.cid-uHuNLQPn2u .embla__button--prev {
  display: flex;
}
.cid-uHuNLQPn2u .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uHuNLQPn2u .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uHuNLQPn2u .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uHuNLQPn2u .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uHuNLQPn2u .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHuNLQPn2u .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHuNLQPn2u .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHuNLQPn2u .embla {
  position: relative;
  width: 100%;
}
.cid-uHuNLQPn2u .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uHuNLQPn2u .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uHuNLQPn2u .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uHuNLQPn2u .embla__slide a {
  cursor: grab;
}
.cid-uHuNLQPn2u .embla__slide a:active {
  cursor: grabbing;
}
.cid-uHuNLQPn2u .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uHuNLQPn2u .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uHuNLQPn2u .mbr-section-title {
  color: #232323;
}
.cid-uHuNLQPn2u .mbr-section-subtitle {
  color: #232323;
}
.cid-uHuNLQPn2u .mbr-box {
  color: #ffffff;
}
.cid-uHuNLQPn2u .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uHuNLQPn2u img,
.cid-uHuNLQPn2u .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uHuNLQPn2u .item-wrapper {
  position: relative;
}
.cid-uHuNLQPn2u .content-head {
  max-width: 800px;
}
.cid-uHuNLS2mjk {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHuNLS2mjk .mbr-section-title {
  margin-bottom: 0;
}
.cid-uHuNLS2mjk .mbr-text {
  margin-top: 10px;
  margin-bottom: 0;
  color: #919dab;
}
.cid-uHuNLS2mjk .card__block {
  margin-top: 45px;
  font-weight: 500;
}
.cid-uHuNLS2mjk .card__title {
  width: 100%;
}
.cid-uHuNLS2mjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLS2mjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLSCnph {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHuNLSCnph .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLSCnph .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLSCnph .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLSCnph .container-fluid {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .cid-uHuNLSCnph .container {
    padding: 0 15px;
  }
}
.cid-uHuNLSCnph .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uHuNLSCnph .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uHuNLSCnph .content-wrapper {
    padding-right: 0;
  }
}
.cid-uHuNLSCnph .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uHuNLSCnph .content-wrap {
    display: block;
  }
}
.cid-uHuNLSCnph .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLSCnph .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHuNLSCnph .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHuNLSCnph .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uHuNLSCnph .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #f6f6f6;
}
.cid-uHuNLSCnph .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #f6f6f6;
  transform: rotate(20deg);
}
.cid-uHuNLSCnph .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uHuNLSCnph .mbr-desc,
.cid-uHuNLSCnph .desc-wrapper {
  color: #3f1819;
}
.cid-uHuQzpyTEO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-uHuQzpyTEO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuQzpyTEO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuQzpyTEO .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uHuQzpyTEO .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uHuQzpyTEO .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uHuQzpyTEO .container {
    padding: 0 20px;
  }
}
.cid-uHuQzpyTEO .row {
  justify-content: center;
}
.cid-uHuQzpyTEO .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHuQzpyTEO .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uHuQzpyTEO .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-top: 40px;
  padding: 50px;
}
.cid-uHuQzpyTEO .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uHuQzpyTEO .panel-group .card {
    padding: 20px;
  }
}
.cid-uHuQzpyTEO .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHuQzpyTEO .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHuQzpyTEO .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHuQzpyTEO .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uHuQzpyTEO .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uHuQzpyTEO .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uHuQzpyTEO .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uHuQzpyTEO .mbr-desc {
  color: #ffffff;
}
.cid-uHuQzpyTEO .panel-title-edit {
  color: #0f1d07;
}
.cid-uHuQzpyTEO .panel-text {
  color: #0f1d07;
}
.cid-uHuQzpyTEO .mbr-desc,
.cid-uHuQzpyTEO .desc-wrapper {
  color: #22a5e5;
}
.cid-uHuNLU50r0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uHuNLU50r0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLU50r0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uHuNLU50r0 .container-fluid {
    padding: 0;
  }
}
.cid-uHuNLU50r0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uHuNLU50r0 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uHuNLU50r0 .embla__button--next,
.cid-uHuNLU50r0 .embla__button--prev {
  display: flex;
}
.cid-uHuNLU50r0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uHuNLU50r0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uHuNLU50r0 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uHuNLU50r0 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uHuNLU50r0 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uHuNLU50r0 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uHuNLU50r0 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uHuNLU50r0 .embla {
  position: relative;
  width: 100%;
}
.cid-uHuNLU50r0 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uHuNLU50r0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uHuNLU50r0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uHuNLU50r0 .embla__slide a {
  cursor: grab;
}
.cid-uHuNLU50r0 .embla__slide a:active {
  cursor: grabbing;
}
.cid-uHuNLU50r0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uHuNLU50r0 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uHuNLU50r0 .mbr-section-title {
  color: #232323;
}
.cid-uHuNLU50r0 .mbr-section-subtitle {
  color: #232323;
}
.cid-uHuNLU50r0 .mbr-box {
  color: #ffffff;
}
.cid-uHuNLU50r0 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uHuNLU50r0 img,
.cid-uHuNLU50r0 .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uHuNLU50r0 .item-wrapper {
  position: relative;
}
.cid-uHuNLU50r0 .content-head {
  max-width: 800px;
}
.cid-uNcCxTq90Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcCxTq90Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcCxTq90Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcCxTq90Q .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcCxTq90Q .currentcost {
  color: #232323;
}
.cid-uNcCxTq90Q .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcCxTq90Q .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcCxTq90Q .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcCxTq90Q .text-box {
    padding: 1rem;
  }
}
.cid-uNcCxTq90Q .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uHuNLXBvSg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  background-image: linear-gradient(125deg, #9fdbf8 45%, #ffffff 120%);
}
.cid-uHuNLXBvSg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLXBvSg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLXBvSg .row {
  position: relative;
  justify-content: center;
  padding-top: 220px;
  padding-bottom: 220px;
}
.cid-uHuNLXBvSg .row .image-wrapper {
  position: absolute;
  height: 190px;
  width: 285px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHuNLXBvSg .row .image-wrapper {
    position: static;
    margin-top: 16px;
    width: 100%;
    padding: 0 16px;
  }
  .cid-uHuNLXBvSg .row .image-wrapper:first-child {
    margin-top: 22px;
  }
}
.cid-uHuNLXBvSg .row .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.cid-uHuNLXBvSg .row .image_1 {
  top: 0;
  left: 0;
}
.cid-uHuNLXBvSg .row .image_2 {
  top: 0;
  right: 0;
}
.cid-uHuNLXBvSg .row .image_3 {
  bottom: 0;
  left: 0;
}
.cid-uHuNLXBvSg .row .image_4 {
  bottom: 0;
  right: 0;
}
.cid-uHuNLXBvSg .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  margin-bottom: 16px;
  background-image: linear-gradient(90deg, #22a5e5, #353535 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-uHuNLXBvSg .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uHuNLXBvSg .title-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uHuNLXBvSg .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHuNLXBvSg .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uHuNLXBvSg .title-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uHuNLXBvSg .mbr-label,
.cid-uHuNLXBvSg .label-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLXBvSg .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLXBvSg .mbr-text,
.cid-uHuNLXBvSg .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLXBvSg .mbr-section-title,
.cid-uHuNLXBvSg .mbr-section-btn {
  text-align: center;
}
.cid-uHuNLY8MJR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHuNLY8MJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHuNLY8MJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHuNLY8MJR .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uHuNLY8MJR .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uHuNLY8MJR .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uHuNLY8MJR .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uHuNLY8MJR .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHuNLY8MJR .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uHuNLY8MJR .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uHuNLY8MJR .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uHuNLY8MJR .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uHuNLY8MJR .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uHuNLY8MJR .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uHuNLY8MJR .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uHuNLY8MJR .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uHuNLY8MJR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLY8MJR .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLY8MJR .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uHuNLYDzrJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uHuNLYDzrJ .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uHuNLYDzrJ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uHuNLYDzrJ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uHuNLYDzrJ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uHuNLYDzrJ .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uHuNLYDzrJ .social_icons {
  text-align: center;
}
.cid-uHuNLYDzrJ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uHuNLYDzrJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uHuNLYDzrJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uHuNLYDzrJ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uHuNLYDzrJ .footer_timework {
    margin-top: 50px;
  }
  .cid-uHuNLYDzrJ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweFHla6W P {
  color: #1281fc;
}
.cid-uJweFHla6W DIV {
  color: #ffffff;
}
.cid-uJweFHla6W H10 {
  color: #034e75;
}
.cid-uJweFHla6W .hidden {
  display: none;
}
.cid-uJweFHla6W .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweFHla6W .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweFHla6W .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweFHla6W .flag {
  background: transparent;
}
.cid-uJweFHla6W .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweFHla6W .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweFHla6W #google_translate_element {
  display: none;
}
.cid-uJweFHla6W .goog-te-banner {
  display: none;
}
.cid-uJweFHla6W .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweFHla6W .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweFHla6W body {
  top: 0px !important;
}
.cid-uJweFHla6W body body {
  top: 0 !important;
}
.cid-uJweFHla6W body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweFHla6W .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweFHla6W .goog-tooltip {
  display: none !important;
}
.cid-uJweFHla6W .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweFHla6W .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweFHla6W #goog-gt-tt,
.cid-uJweFHla6W .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweFHla6W #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweFHla6W .goog-logo-link {
  display: none !important;
}
.cid-uJweFHla6W .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweFHla6W div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweFHla6W div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uqPZiGdn4m {
  padding-top: 8rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uqPZiGdn4m .title__block {
  padding-bottom: 40px;
}
.cid-uqPZiGdn4m .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uqPZiGdn4m .mbr-section-title b,
.cid-uqPZiGdn4m .mbr-section-title strong {
  font-weight: 500;
}
.cid-uqPZiGdn4m .mbr-section-subtitle {
  margin-bottom: 25px;
}
.cid-uqPZiGdn4m .mbr-text {
  margin-bottom: 43px;
}
.cid-uqPZiGdn4m .image__block {
  position: relative;
  z-index: 1;
  max-height: 620px;
}
.cid-uqPZiGdn4m .image__block:before {
  content: "";
  position: absolute;
  top: -28%;
  left: 120px;
  width: 100vw;
  height: calc(100% + 40px);
  background-color: #cce4f0;
}
.cid-uqPZiGdn4m .img__wrap {
  position: relative;
  max-height: 620px;
}
.cid-uqPZiGdn4m .img__wrap .image1 {
  display: block;
  position: relative;
  bottom: -52px;
  left: 0;
  transform: rotate(-11.7deg) translateX(24.6%);
  width: 41%;
}
.cid-uqPZiGdn4m .img__wrap .image1:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 138%;
}
.cid-uqPZiGdn4m .img__wrap .image1 img {
  max-width: 341px;
  max-height: 472px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.cid-uqPZiGdn4m .img__wrap .image2 {
  display: block;
  position: relative;
  bottom: 20px;
  left: 0;
  transform: rotate(9.96deg) translate(34%, -90%);
  width: 62%;
}
.cid-uqPZiGdn4m .img__wrap .image2:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 120%;
}
.cid-uqPZiGdn4m .img__wrap .image2 img {
  max-width: 520px;
  max-height: 625px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uqPZiGdn4m .row {
    text-align: center;
  }
  .cid-uqPZiGdn4m .title__block {
    padding-bottom: 0;
  }
  .cid-uqPZiGdn4m .mbr-section-title {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .cid-uqPZiGdn4m .figure:before {
    content: none;
  }
  .cid-uqPZiGdn4m .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uqPZiGdn4m .mbr-text {
    margin-bottom: 30px;
  }
  .cid-uqPZiGdn4m .image__block:before {
    top: 50px;
    left: 30px;
    height: calc(100% - 25px);
    min-height: 235px;
    max-height: 400px;
  }
  .cid-uqPZiGdn4m .img__wrap {
    max-height: 0;
    padding-bottom: 88%;
    margin-top: 22%;
  }
}
.cid-uqPZiGdn4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPZiGdn4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqPZiHSpqp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/aleksandra-mateusz-45-2000x1333.jpg");
}
.cid-uqPZiHSpqp .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uqPZiHSpqp .mbr-section-title b,
.cid-uqPZiHSpqp .mbr-section-title strong {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .cid-uqPZiHSpqp .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uqPZiHSpqp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPZiHSpqp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQgES1dgc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQgES1dgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQgES1dgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQgES1dgc .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQgES1dgc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQgES1dgc .container {
    padding: 0 24px;
  }
}
.cid-uqQgES1dgc .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .content-wrapper {
    display: block;
  }
}
.cid-uqQgES1dgc .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQgES1dgc .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQgES1dgc .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQgES1dgc .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQgES1dgc .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQgES1dgc .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQgES1dgc .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQgES1dgc .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQgES1dgc .mbr-section-title {
  color: #18212d;
}
.cid-uqQgES1dgc .mbr-desc {
  color: #18212d;
}
.cid-uqQgES1dgc .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQgES1dgc .mbr-section-title,
.cid-uqQgES1dgc .mbr-section-btn {
  text-align: center;
}
.cid-uqQ1nDAJls {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ1nDAJls .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ1nDAJls .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ1nDAJls .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1nDAJls .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ1nDAJls .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ1nDAJls .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ1nDAJls .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ1nDAJls .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-uqQ1nDAJls .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ1nDAJls .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ1nDAJls .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ1nDAJls .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1nDAJls .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ1nDAJls ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ1nDAJls .content-head {
  max-width: 800px;
}
.cid-uqQ1nDAJls .cardTitle {
  text-align: center;
}
.cid-uqQ1nDAJls .list,
.cid-uqQ1nDAJls .item-wrap {
  text-align: center;
}
.cid-uqQ1Nc50QA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ1Nc50QA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ1Nc50QA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ1Nc50QA .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1Nc50QA .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ1Nc50QA .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ1Nc50QA .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ1Nc50QA .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ1Nc50QA .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-uqQ1Nc50QA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ1Nc50QA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ1Nc50QA .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ1Nc50QA .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1Nc50QA .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ1Nc50QA ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ1Nc50QA .content-head {
  max-width: 800px;
}
.cid-uqQ1Nc50QA .cardTitle {
  text-align: center;
}
.cid-uqQ1Nc50QA .list,
.cid-uqQ1Nc50QA .item-wrap {
  text-align: center;
}
.cid-uqQ1NToGC7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ1NToGC7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ1NToGC7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ1NToGC7 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1NToGC7 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ1NToGC7 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ1NToGC7 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ1NToGC7 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ1NToGC7 .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-uqQ1NToGC7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ1NToGC7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ1NToGC7 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ1NToGC7 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1NToGC7 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ1NToGC7 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ1NToGC7 .content-head {
  max-width: 800px;
}
.cid-uqQ1NToGC7 .cardTitle {
  text-align: center;
}
.cid-uqQ1NToGC7 .list,
.cid-uqQ1NToGC7 .item-wrap {
  text-align: center;
}
.cid-uqQ1OCSq63 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ1OCSq63 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ1OCSq63 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ1OCSq63 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1OCSq63 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ1OCSq63 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ1OCSq63 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ1OCSq63 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ1OCSq63 .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-uqQ1OCSq63 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ1OCSq63 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ1OCSq63 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ1OCSq63 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1OCSq63 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ1OCSq63 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ1OCSq63 .content-head {
  max-width: 800px;
}
.cid-uqQ1OCSq63 .cardTitle {
  text-align: center;
}
.cid-uqQ1OCSq63 .list,
.cid-uqQ1OCSq63 .item-wrap {
  text-align: center;
}
.cid-uqQ1QfgDc3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ1QfgDc3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ1QfgDc3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ1QfgDc3 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1QfgDc3 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ1QfgDc3 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ1QfgDc3 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ1QfgDc3 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ1QfgDc3 .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-uqQ1QfgDc3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ1QfgDc3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ1QfgDc3 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ1QfgDc3 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ1QfgDc3 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ1QfgDc3 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ1QfgDc3 .content-head {
  max-width: 800px;
}
.cid-uqQ1QfgDc3 .cardTitle {
  text-align: center;
}
.cid-uqQ1QfgDc3 .list,
.cid-uqQ1QfgDc3 .item-wrap {
  text-align: center;
}
.cid-uqQlak1ztk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQlak1ztk .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQlak1ztk .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlak1ztk .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQlak1ztk .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQlak1ztk .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlak1ztk .mbr-text,
.cid-uqQlak1ztk .item .mbr-section-btn {
  text-align: center;
}
.cid-uNcD1JtQmL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcD1JtQmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcD1JtQmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcD1JtQmL .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcD1JtQmL .currentcost {
  color: #232323;
}
.cid-uNcD1JtQmL .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcD1JtQmL .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcD1JtQmL .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcD1JtQmL .text-box {
    padding: 1rem;
  }
}
.cid-uNcD1JtQmL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqQhGExIGO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQhGExIGO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQhGExIGO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQhGExIGO .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhGExIGO .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhGExIGO .container {
    padding: 0 24px;
  }
}
.cid-uqQhGExIGO .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .content-wrapper {
    display: block;
  }
}
.cid-uqQhGExIGO .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQhGExIGO .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQhGExIGO .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQhGExIGO .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQhGExIGO .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQhGExIGO .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQhGExIGO .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQhGExIGO .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQhGExIGO .mbr-section-title {
  color: #18212d;
}
.cid-uqQhGExIGO .mbr-desc {
  color: #18212d;
}
.cid-uqQhGExIGO .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQhGExIGO .mbr-section-title,
.cid-uqQhGExIGO .mbr-section-btn {
  text-align: center;
}
.cid-uqQ4kmb10I {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ4kmb10I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ4kmb10I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ4kmb10I .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4kmb10I .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ4kmb10I .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ4kmb10I .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ4kmb10I .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ4kmb10I .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-uqQ4kmb10I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ4kmb10I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ4kmb10I .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ4kmb10I .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4kmb10I .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ4kmb10I ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ4kmb10I .content-head {
  max-width: 800px;
}
.cid-uqQ4kmb10I .cardTitle {
  text-align: center;
}
.cid-uqQ4kmb10I .list,
.cid-uqQ4kmb10I .item-wrap {
  text-align: center;
}
.cid-uqQ4m9BaPe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ4m9BaPe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ4m9BaPe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ4m9BaPe .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4m9BaPe .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ4m9BaPe .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ4m9BaPe .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ4m9BaPe .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ4m9BaPe .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-uqQ4m9BaPe .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ4m9BaPe .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ4m9BaPe .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ4m9BaPe .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4m9BaPe .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ4m9BaPe ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ4m9BaPe .content-head {
  max-width: 800px;
}
.cid-uqQ4m9BaPe .cardTitle {
  text-align: center;
}
.cid-uqQ4m9BaPe .list,
.cid-uqQ4m9BaPe .item-wrap {
  text-align: center;
}
.cid-uqQ4n0tC5r {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ4n0tC5r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ4n0tC5r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ4n0tC5r .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4n0tC5r .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ4n0tC5r .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ4n0tC5r .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ4n0tC5r .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ4n0tC5r .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-uqQ4n0tC5r .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ4n0tC5r .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ4n0tC5r .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ4n0tC5r .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4n0tC5r .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ4n0tC5r ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ4n0tC5r .content-head {
  max-width: 800px;
}
.cid-uqQ4n0tC5r .cardTitle {
  text-align: center;
}
.cid-uqQ4n0tC5r .list,
.cid-uqQ4n0tC5r .item-wrap {
  text-align: center;
}
.cid-uqQ4nYMxPh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ4nYMxPh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ4nYMxPh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ4nYMxPh .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4nYMxPh .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ4nYMxPh .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ4nYMxPh .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ4nYMxPh .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ4nYMxPh .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-uqQ4nYMxPh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ4nYMxPh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ4nYMxPh .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ4nYMxPh .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4nYMxPh .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ4nYMxPh ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ4nYMxPh .content-head {
  max-width: 800px;
}
.cid-uqQ4nYMxPh .cardTitle {
  text-align: center;
}
.cid-uqQ4nYMxPh .list,
.cid-uqQ4nYMxPh .item-wrap {
  text-align: center;
}
.cid-uqQ4l7mMbl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ4l7mMbl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ4l7mMbl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ4l7mMbl .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4l7mMbl .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ4l7mMbl .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ4l7mMbl .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ4l7mMbl .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ4l7mMbl .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-uqQ4l7mMbl .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ4l7mMbl .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ4l7mMbl .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ4l7mMbl .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ4l7mMbl .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ4l7mMbl ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ4l7mMbl .content-head {
  max-width: 800px;
}
.cid-uqQ4l7mMbl .cardTitle {
  text-align: center;
}
.cid-uqQ4l7mMbl .list,
.cid-uqQ4l7mMbl .item-wrap {
  text-align: center;
}
.cid-uqQjWZTQte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQjWZTQte .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQjWZTQte .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQjWZTQte .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQjWZTQte .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQjWZTQte .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQjWZTQte .mbr-text,
.cid-uqQjWZTQte .item .mbr-section-btn {
  text-align: center;
}
.cid-uqQhIGiDZr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQhIGiDZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQhIGiDZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQhIGiDZr .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhIGiDZr .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhIGiDZr .container {
    padding: 0 24px;
  }
}
.cid-uqQhIGiDZr .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .content-wrapper {
    display: block;
  }
}
.cid-uqQhIGiDZr .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQhIGiDZr .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQhIGiDZr .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQhIGiDZr .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQhIGiDZr .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQhIGiDZr .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQhIGiDZr .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQhIGiDZr .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQhIGiDZr .mbr-section-title {
  color: #18212d;
}
.cid-uqQhIGiDZr .mbr-desc {
  color: #18212d;
}
.cid-uqQhIGiDZr .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQhIGiDZr .mbr-section-title,
.cid-uqQhIGiDZr .mbr-section-btn {
  text-align: center;
}
.cid-uqPZiXOqgj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqPZiXOqgj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPZiXOqgj img {
  border-radius: 1rem;
}
.cid-uqPZiXOqgj .row {
  padding: 0 1rem;
}
.cid-uqPZiXOqgj .btn {
  transition: all 0.3s;
}
.cid-uqPZiXOqgj .btn:hover,
.cid-uqPZiXOqgj .btn:focus {
  background: white !important;
  color: #22a5e5 !important;
  border: 2px dashed #22a5e5 !important;
}
.cid-uqPZiXOqgj .card {
  background: #22a5e5;
  padding: 3rem 15rem;
  border-radius: 1rem;
}
@media (max-width: 1600px) {
  .cid-uqPZiXOqgj .card {
    padding: 3rem 10rem;
  }
}
@media (max-width: 992px) {
  .cid-uqPZiXOqgj .card {
    padding: 3rem 2rem;
  }
}
.cid-uqPZiXOqgj .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-uqPZiXOqgj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uqPZiXOqgj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uqPZiXOqgj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqPZiXOqgj .mbr-section-subtitle,
.cid-uqPZiXOqgj .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-uqPZiXOqgj .mbr-text,
.cid-uqPZiXOqgj .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uqQ6h2jfrn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ6h2jfrn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ6h2jfrn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ6h2jfrn .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6h2jfrn .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ6h2jfrn .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ6h2jfrn .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ6h2jfrn .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ6h2jfrn .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-uqQ6h2jfrn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ6h2jfrn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ6h2jfrn .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ6h2jfrn .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6h2jfrn .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ6h2jfrn ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ6h2jfrn .content-head {
  max-width: 800px;
}
.cid-uqQ6h2jfrn .cardTitle {
  text-align: center;
}
.cid-uqQ6h2jfrn .list,
.cid-uqQ6h2jfrn .item-wrap {
  text-align: center;
}
.cid-uqQ6k49aYT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ6k49aYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ6k49aYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ6k49aYT .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6k49aYT .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ6k49aYT .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ6k49aYT .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ6k49aYT .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ6k49aYT .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-uqQ6k49aYT .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ6k49aYT .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ6k49aYT .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ6k49aYT .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6k49aYT .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ6k49aYT ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ6k49aYT .content-head {
  max-width: 800px;
}
.cid-uqQ6k49aYT .cardTitle {
  text-align: center;
}
.cid-uqQ6k49aYT .list,
.cid-uqQ6k49aYT .item-wrap {
  text-align: center;
}
.cid-uqQ6lg7N8K {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ6lg7N8K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ6lg7N8K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ6lg7N8K .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6lg7N8K .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ6lg7N8K .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ6lg7N8K .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ6lg7N8K .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ6lg7N8K .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-uqQ6lg7N8K .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ6lg7N8K .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ6lg7N8K .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ6lg7N8K .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6lg7N8K .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ6lg7N8K ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ6lg7N8K .content-head {
  max-width: 800px;
}
.cid-uqQ6lg7N8K .cardTitle {
  text-align: center;
}
.cid-uqQ6lg7N8K .list,
.cid-uqQ6lg7N8K .item-wrap {
  text-align: center;
}
.cid-uqQ6mcDwl3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ6mcDwl3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ6mcDwl3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ6mcDwl3 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6mcDwl3 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ6mcDwl3 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ6mcDwl3 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ6mcDwl3 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ6mcDwl3 .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-uqQ6mcDwl3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ6mcDwl3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ6mcDwl3 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ6mcDwl3 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6mcDwl3 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ6mcDwl3 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ6mcDwl3 .content-head {
  max-width: 800px;
}
.cid-uqQ6mcDwl3 .cardTitle {
  text-align: center;
}
.cid-uqQ6mcDwl3 .list,
.cid-uqQ6mcDwl3 .item-wrap {
  text-align: center;
}
.cid-uqQ6i02MSR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ6i02MSR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ6i02MSR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ6i02MSR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6i02MSR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ6i02MSR .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ6i02MSR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ6i02MSR .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ6i02MSR .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-uqQ6i02MSR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ6i02MSR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ6i02MSR .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ6i02MSR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ6i02MSR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ6i02MSR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ6i02MSR .content-head {
  max-width: 800px;
}
.cid-uqQ6i02MSR .cardTitle {
  text-align: center;
}
.cid-uqQ6i02MSR .list,
.cid-uqQ6i02MSR .item-wrap {
  text-align: center;
}
.cid-uqQlbNjtjg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQlbNjtjg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQlbNjtjg .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlbNjtjg .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQlbNjtjg .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQlbNjtjg .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlbNjtjg .mbr-text,
.cid-uqQlbNjtjg .item .mbr-section-btn {
  text-align: center;
}
.cid-uqQhKrVuSC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQhKrVuSC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQhKrVuSC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQhKrVuSC .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhKrVuSC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhKrVuSC .container {
    padding: 0 24px;
  }
}
.cid-uqQhKrVuSC .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .content-wrapper {
    display: block;
  }
}
.cid-uqQhKrVuSC .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQhKrVuSC .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQhKrVuSC .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQhKrVuSC .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQhKrVuSC .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQhKrVuSC .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQhKrVuSC .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQhKrVuSC .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQhKrVuSC .mbr-section-title {
  color: #18212d;
}
.cid-uqQhKrVuSC .mbr-desc {
  color: #18212d;
}
.cid-uqQhKrVuSC .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQhKrVuSC .mbr-section-title,
.cid-uqQhKrVuSC .mbr-section-btn {
  text-align: center;
}
.cid-uqQ9q7bFTm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ9q7bFTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ9q7bFTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ9q7bFTm .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9q7bFTm .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ9q7bFTm .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ9q7bFTm .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ9q7bFTm .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ9q7bFTm .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-uqQ9q7bFTm .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ9q7bFTm .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ9q7bFTm .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ9q7bFTm .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9q7bFTm .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ9q7bFTm ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ9q7bFTm .content-head {
  max-width: 800px;
}
.cid-uqQ9q7bFTm .cardTitle {
  text-align: center;
}
.cid-uqQ9q7bFTm .list,
.cid-uqQ9q7bFTm .item-wrap {
  text-align: center;
}
.cid-uqQ9syvv03 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ9syvv03 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ9syvv03 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ9syvv03 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9syvv03 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ9syvv03 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ9syvv03 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ9syvv03 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ9syvv03 .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-uqQ9syvv03 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ9syvv03 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ9syvv03 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ9syvv03 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9syvv03 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ9syvv03 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ9syvv03 .content-head {
  max-width: 800px;
}
.cid-uqQ9syvv03 .cardTitle {
  text-align: center;
}
.cid-uqQ9syvv03 .list,
.cid-uqQ9syvv03 .item-wrap {
  text-align: center;
}
.cid-uqQ9ueweI7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ9ueweI7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ9ueweI7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ9ueweI7 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9ueweI7 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ9ueweI7 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ9ueweI7 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ9ueweI7 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ9ueweI7 .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-uqQ9ueweI7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ9ueweI7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ9ueweI7 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ9ueweI7 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9ueweI7 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ9ueweI7 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ9ueweI7 .content-head {
  max-width: 800px;
}
.cid-uqQ9ueweI7 .cardTitle {
  text-align: center;
}
.cid-uqQ9ueweI7 .list,
.cid-uqQ9ueweI7 .item-wrap {
  text-align: center;
}
.cid-uqQ9vp1ySR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ9vp1ySR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ9vp1ySR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ9vp1ySR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9vp1ySR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ9vp1ySR .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ9vp1ySR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ9vp1ySR .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ9vp1ySR .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-uqQ9vp1ySR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ9vp1ySR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ9vp1ySR .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ9vp1ySR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9vp1ySR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ9vp1ySR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ9vp1ySR .content-head {
  max-width: 800px;
}
.cid-uqQ9vp1ySR .cardTitle {
  text-align: center;
}
.cid-uqQ9vp1ySR .list,
.cid-uqQ9vp1ySR .item-wrap {
  text-align: center;
}
.cid-uqQ9rihi07 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQ9rihi07 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQ9rihi07 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQ9rihi07 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9rihi07 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQ9rihi07 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQ9rihi07 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQ9rihi07 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQ9rihi07 .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-uqQ9rihi07 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQ9rihi07 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQ9rihi07 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQ9rihi07 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQ9rihi07 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQ9rihi07 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQ9rihi07 .content-head {
  max-width: 800px;
}
.cid-uqQ9rihi07 .cardTitle {
  text-align: center;
}
.cid-uqQ9rihi07 .list,
.cid-uqQ9rihi07 .item-wrap {
  text-align: center;
}
.cid-uqQlcPEW2b {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQlcPEW2b .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQlcPEW2b .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlcPEW2b .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQlcPEW2b .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQlcPEW2b .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQlcPEW2b .mbr-text,
.cid-uqQlcPEW2b .item .mbr-section-btn {
  text-align: center;
}
.cid-uNcD7zZTkn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcD7zZTkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcD7zZTkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcD7zZTkn .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcD7zZTkn .currentcost {
  color: #232323;
}
.cid-uNcD7zZTkn .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcD7zZTkn .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcD7zZTkn .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcD7zZTkn .text-box {
    padding: 1rem;
  }
}
.cid-uNcD7zZTkn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqQhMv22vC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQhMv22vC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQhMv22vC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQhMv22vC .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhMv22vC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhMv22vC .container {
    padding: 0 24px;
  }
}
.cid-uqQhMv22vC .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .content-wrapper {
    display: block;
  }
}
.cid-uqQhMv22vC .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQhMv22vC .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQhMv22vC .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQhMv22vC .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQhMv22vC .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQhMv22vC .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQhMv22vC .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQhMv22vC .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQhMv22vC .mbr-section-title {
  color: #18212d;
}
.cid-uqQhMv22vC .mbr-desc {
  color: #18212d;
}
.cid-uqQhMv22vC .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQhMv22vC .mbr-section-title,
.cid-uqQhMv22vC .mbr-section-btn {
  text-align: center;
}
.cid-uqQaWwpPHK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQaWwpPHK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQaWwpPHK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQaWwpPHK .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaWwpPHK .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQaWwpPHK .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQaWwpPHK .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQaWwpPHK .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQaWwpPHK .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-uqQaWwpPHK .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQaWwpPHK .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQaWwpPHK .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQaWwpPHK .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaWwpPHK .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQaWwpPHK ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQaWwpPHK .content-head {
  max-width: 800px;
}
.cid-uqQaWwpPHK .cardTitle {
  text-align: center;
}
.cid-uqQaWwpPHK .list,
.cid-uqQaWwpPHK .item-wrap {
  text-align: center;
}
.cid-uqQaXrtyS8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQaXrtyS8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQaXrtyS8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQaXrtyS8 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaXrtyS8 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQaXrtyS8 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQaXrtyS8 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQaXrtyS8 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQaXrtyS8 .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-uqQaXrtyS8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQaXrtyS8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQaXrtyS8 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQaXrtyS8 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaXrtyS8 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQaXrtyS8 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQaXrtyS8 .content-head {
  max-width: 800px;
}
.cid-uqQaXrtyS8 .cardTitle {
  text-align: center;
}
.cid-uqQaXrtyS8 .list,
.cid-uqQaXrtyS8 .item-wrap {
  text-align: center;
}
.cid-uqQaYiCJV0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQaYiCJV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQaYiCJV0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQaYiCJV0 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaYiCJV0 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQaYiCJV0 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQaYiCJV0 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQaYiCJV0 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQaYiCJV0 .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-uqQaYiCJV0 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQaYiCJV0 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQaYiCJV0 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQaYiCJV0 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaYiCJV0 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQaYiCJV0 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQaYiCJV0 .content-head {
  max-width: 800px;
}
.cid-uqQaYiCJV0 .cardTitle {
  text-align: center;
}
.cid-uqQaYiCJV0 .list,
.cid-uqQaYiCJV0 .item-wrap {
  text-align: center;
}
.cid-uqQb05BM1J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQb05BM1J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQb05BM1J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQb05BM1J .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQb05BM1J .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQb05BM1J .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQb05BM1J .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQb05BM1J .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQb05BM1J .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-uqQb05BM1J .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQb05BM1J .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQb05BM1J .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQb05BM1J .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQb05BM1J .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQb05BM1J ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQb05BM1J .content-head {
  max-width: 800px;
}
.cid-uqQb05BM1J .cardTitle {
  text-align: center;
}
.cid-uqQb05BM1J .list,
.cid-uqQb05BM1J .item-wrap {
  text-align: center;
}
.cid-uqQaVOHM72 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQaVOHM72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQaVOHM72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQaVOHM72 .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaVOHM72 .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQaVOHM72 .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQaVOHM72 .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQaVOHM72 .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQaVOHM72 .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-uqQaVOHM72 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQaVOHM72 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQaVOHM72 .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQaVOHM72 .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQaVOHM72 .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQaVOHM72 ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQaVOHM72 .content-head {
  max-width: 800px;
}
.cid-uqQaVOHM72 .cardTitle {
  text-align: center;
}
.cid-uqQaVOHM72 .list,
.cid-uqQaVOHM72 .item-wrap {
  text-align: center;
}
.cid-uqQldKLSuE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQldKLSuE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQldKLSuE .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQldKLSuE .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQldKLSuE .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQldKLSuE .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQldKLSuE .mbr-text,
.cid-uqQldKLSuE .item .mbr-section-btn {
  text-align: center;
}
.cid-uqQhOZCmrL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqQhOZCmrL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQhOZCmrL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQhOZCmrL .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhOZCmrL .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uqQhOZCmrL .container {
    padding: 0 24px;
  }
}
.cid-uqQhOZCmrL .content-wrapper {
  display: flex;
  border-radius: 2rem !important;
  border: 1px solid #edeceb;
  background-color: #fbfaf9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .content-wrapper {
    display: block;
  }
}
.cid-uqQhOZCmrL .content-wrapper .content-wrap {
  width: 50%;
  padding: 150px 64px;
}
@media (max-width: 1440px) {
  .cid-uqQhOZCmrL .content-wrapper .content-wrap {
    padding: 150px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .content-wrapper .content-wrap {
    width: 100%;
    padding: 24px 24px 32px;
  }
}
.cid-uqQhOZCmrL .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uqQhOZCmrL .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uqQhOZCmrL .content-wrapper .content-wrap .mbr-text {
  opacity: .5;
  margin-bottom: 22px;
}
.cid-uqQhOZCmrL .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uqQhOZCmrL .content-wrapper .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uqQhOZCmrL .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uqQhOZCmrL .mbr-section-title {
  color: #18212d;
}
.cid-uqQhOZCmrL .mbr-desc {
  color: #18212d;
}
.cid-uqQhOZCmrL .mbr-text {
  color: #18212d;
  text-align: center;
}
.cid-uqQhOZCmrL .mbr-section-title,
.cid-uqQhOZCmrL .mbr-section-btn {
  text-align: center;
}
.cid-uqQdhIIZol {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQdhIIZol .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQdhIIZol .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQdhIIZol .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdhIIZol .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQdhIIZol .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQdhIIZol .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQdhIIZol .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQdhIIZol .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-uqQdhIIZol .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQdhIIZol .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQdhIIZol .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQdhIIZol .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdhIIZol .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQdhIIZol ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQdhIIZol .content-head {
  max-width: 800px;
}
.cid-uqQdhIIZol .cardTitle {
  text-align: center;
}
.cid-uqQdhIIZol .list,
.cid-uqQdhIIZol .item-wrap {
  text-align: center;
}
.cid-uqQdjitgmy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQdjitgmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQdjitgmy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQdjitgmy .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdjitgmy .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQdjitgmy .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQdjitgmy .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQdjitgmy .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQdjitgmy .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-uqQdjitgmy .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQdjitgmy .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQdjitgmy .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQdjitgmy .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdjitgmy .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQdjitgmy ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQdjitgmy .content-head {
  max-width: 800px;
}
.cid-uqQdjitgmy .cardTitle {
  text-align: center;
}
.cid-uqQdjitgmy .list,
.cid-uqQdjitgmy .item-wrap {
  text-align: center;
}
.cid-uqQdh9ImSO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQdh9ImSO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQdh9ImSO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQdh9ImSO .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdh9ImSO .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQdh9ImSO .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQdh9ImSO .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQdh9ImSO .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQdh9ImSO .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-uqQdh9ImSO .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQdh9ImSO .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQdh9ImSO .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQdh9ImSO .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdh9ImSO .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQdh9ImSO ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQdh9ImSO .content-head {
  max-width: 800px;
}
.cid-uqQdh9ImSO .cardTitle {
  text-align: center;
}
.cid-uqQdh9ImSO .list,
.cid-uqQdh9ImSO .item-wrap {
  text-align: center;
}
.cid-uqQdk2vhuv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQdk2vhuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQdk2vhuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQdk2vhuv .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdk2vhuv .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQdk2vhuv .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQdk2vhuv .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQdk2vhuv .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQdk2vhuv .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-uqQdk2vhuv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQdk2vhuv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQdk2vhuv .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQdk2vhuv .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdk2vhuv .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQdk2vhuv ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQdk2vhuv .content-head {
  max-width: 800px;
}
.cid-uqQdk2vhuv .cardTitle {
  text-align: center;
}
.cid-uqQdk2vhuv .list,
.cid-uqQdk2vhuv .item-wrap {
  text-align: center;
}
.cid-uqQdipbpuJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: #ffffff;
}
.cid-uqQdipbpuJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQdipbpuJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqQdipbpuJ .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdipbpuJ .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-uqQdipbpuJ .google-map {
  height: 100%;
  position: relative;
}
.cid-uqQdipbpuJ .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uqQdipbpuJ .google-map iframe {
    min-height: 350px;
  }
}
.cid-uqQdipbpuJ .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-uqQdipbpuJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uqQdipbpuJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uqQdipbpuJ .card-wrapper {
  padding: 2.25rem;
  background: #9fdbf8;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uqQdipbpuJ .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqQdipbpuJ .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-uqQdipbpuJ ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uqQdipbpuJ .content-head {
  max-width: 800px;
}
.cid-uqQdipbpuJ .cardTitle {
  text-align: center;
}
.cid-uqQdipbpuJ .list,
.cid-uqQdipbpuJ .item-wrap {
  text-align: center;
}
.cid-uqQleQ8Chm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqQleQ8Chm .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uqQleQ8Chm .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQleQ8Chm .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-uqQleQ8Chm .mbr-card-title {
  color: #000000;
  text-align: left;
}
.cid-uqQleQ8Chm .mbr-card-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uqQleQ8Chm .mbr-text,
.cid-uqQleQ8Chm .item .mbr-section-btn {
  text-align: center;
}
.cid-uqPZj5WTq8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/karolina-kolarczyk-6-2048x1365.jpeg");
}
.cid-uqPZj5WTq8 .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uqPZj5WTq8 .mbr-section-title b,
.cid-uqPZj5WTq8 .mbr-section-title strong {
  font-weight: 500;
}
.cid-uqPZj5WTq8 .figure {
  display: block;
  position: relative;
  z-index: 1;
}
.cid-uqPZj5WTq8 .figure:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 119px;
  height: 119px;
  top: -100px;
  left: -50px;
  background-image: url("../../../assets/images/cyprus-logo-1000x1054.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .cid-uqPZj5WTq8 .figure:before {
    width: 89px;
    height: 89px;
    top: -55px;
    left: -18px;
  }
}
.cid-uqPZj5WTq8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqPZj5WTq8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
#custom-html-vp .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-vp .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-vp .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-vp .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uqQmKzG7hq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #22a5e5;
}
.cid-uqQmKzG7hq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQmKzG7hq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQmKzG7hq .mbr-text,
.cid-uqQmKzG7hq .mbr-section-btn {
  color: #232323;
}
.cid-uqQmKzG7hq .card-title,
.cid-uqQmKzG7hq .card-box {
  color: #ffffff;
}
.cid-uqQmKzG7hq .mbr-text,
.cid-uqQmKzG7hq .link-wrap {
  color: #ffffff;
}
.cid-uqQnovi4br {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqQnovi4br .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uqQnovi4br form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uqQnovi4br form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uqQnovi4br form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNcD4FJi4E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcD4FJi4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcD4FJi4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcD4FJi4E .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcD4FJi4E .currentcost {
  color: #232323;
}
.cid-uNcD4FJi4E .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcD4FJi4E .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcD4FJi4E .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcD4FJi4E .text-box {
    padding: 1rem;
  }
}
.cid-uNcD4FJi4E .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uqQmyyZFGs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uqQmyyZFGs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqQmyyZFGs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqQmyyZFGs .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uqQmyyZFGs .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uqQmyyZFGs .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uqQmyyZFGs .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uqQmyyZFGs .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uqQmyyZFGs .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uqQmyyZFGs .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uqQmyyZFGs .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uqQmyyZFGs .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uqQmyyZFGs .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uqQmyyZFGs .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uqQmyyZFGs .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uqQmyyZFGs .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uqQmyyZFGs .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqQmyyZFGs .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uqQmyyZFGs .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uqPZj6EJ1W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uqPZj6EJ1W .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uqPZj6EJ1W .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uqPZj6EJ1W .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uqPZj6EJ1W .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uqPZj6EJ1W .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uqPZj6EJ1W .social_icons {
  text-align: center;
}
.cid-uqPZj6EJ1W .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uqPZj6EJ1W .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uqPZj6EJ1W .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqPZj6EJ1W .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uqPZj6EJ1W .footer_timework {
    margin-top: 50px;
  }
  .cid-uqPZj6EJ1W .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweM24VEQ P {
  color: #1281fc;
}
.cid-uJweM24VEQ DIV {
  color: #ffffff;
}
.cid-uJweM24VEQ H10 {
  color: #034e75;
}
.cid-uJweM24VEQ .hidden {
  display: none;
}
.cid-uJweM24VEQ .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweM24VEQ .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweM24VEQ .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweM24VEQ .flag {
  background: transparent;
}
.cid-uJweM24VEQ .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweM24VEQ .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweM24VEQ #google_translate_element {
  display: none;
}
.cid-uJweM24VEQ .goog-te-banner {
  display: none;
}
.cid-uJweM24VEQ .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweM24VEQ .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweM24VEQ body {
  top: 0px !important;
}
.cid-uJweM24VEQ body body {
  top: 0 !important;
}
.cid-uJweM24VEQ body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweM24VEQ .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweM24VEQ .goog-tooltip {
  display: none !important;
}
.cid-uJweM24VEQ .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweM24VEQ .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweM24VEQ #goog-gt-tt,
.cid-uJweM24VEQ .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweM24VEQ #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweM24VEQ .goog-logo-link {
  display: none !important;
}
.cid-uJweM24VEQ .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweM24VEQ div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweM24VEQ div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uHZAtm5Ewd {
  background-image: url("../../../assets/images/sara-mosalam-slusarczyk-web-66-1200x960.jpg");
}
.cid-uHZAtm5Ewd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHZAtm5Ewd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHZAtm5Ewd .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uHZAtm5Ewd .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uHZAtm5Ewd .container {
    padding: 0 25px;
  }
}
.cid-uHZAtm5Ewd .title-wrapper {
  padding: 0 15%;
}
@media (max-width: 992px) {
  .cid-uHZAtm5Ewd .title-wrapper {
    padding: 0;
  }
}
.cid-uHZAtm5Ewd .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uHZAtm5Ewd .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
.cid-uHZAtm5Ewd .mbr-section-title {
  color: #ffffff;
}
.cid-uHZAtm5Ewd .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uHZAtm5Ewd .mbr-section-title,
.cid-uHZAtm5Ewd .mbr-section-btn {
  text-align: center;
}
.cid-uHZPgnAQ1Q {
  padding-top: 1rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background-color: #22a5e5;
}
.cid-uHZPgnAQ1Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHZPgnAQ1Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHZPgnAQ1Q .bg-frame {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 2;
  opacity: 0.6;
  width: 15vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #f6f6f6;
  box-shadow: 0 0 40px #f6f6f6;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-uHZPgnAQ1Q .bg-frame {
    width: 30vw;
  }
}
.cid-uHZPgnAQ1Q .bg-frame-2 {
  top: 70%;
  left: auto;
  right: -5%;
  width: 30vw;
}
.cid-uHZPgnAQ1Q .row {
  position: relative;
  z-index: 3;
}
.cid-uHZPgnAQ1Q .mbr-section-head {
  margin-bottom: 100px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uHZPgnAQ1Q .mbr-section-head {
    margin-bottom: 50px;
  }
}
.cid-uHZPgnAQ1Q .mbr-section-title {
  color: #FFFFFF;
}
.cid-uHZPgnAQ1Q .mbr-section-title a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uHZPgnAQ1Q .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 1rem;
}
.cid-uHZPgnAQ1Q .card-row {
  align-items: stretch;
}
.cid-uHZPgnAQ1Q .item {
  margin-bottom: 2rem;
}
.cid-uHZPgnAQ1Q .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  height: 100%;
  width: 100%;
  transition: 0.5s all;
  will-change: transform;
}
.cid-uHZPgnAQ1Q .item-wrapper:hover {
  transform: translateY(-12.5%);
}
@media (max-width: 991px) {
  .cid-uHZPgnAQ1Q .item-wrapper:hover {
    transform: translateY(-2rem);
  }
}
.cid-uHZPgnAQ1Q .item-wrapper:hover .item-img img {
  transform: scale(1);
}
.cid-uHZPgnAQ1Q .item-wrapper:hover .card-price {
  color: #9fdbf8;
}
.cid-uHZPgnAQ1Q .item-wrapper:hover .card-title {
  color: #9fdbf8;
}
.cid-uHZPgnAQ1Q .item-wrapper:hover .card-subtitle {
  color: #9fdbf8;
}
.cid-uHZPgnAQ1Q .item-img {
  position: relative;
  width: 100%;
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 1.49885057;
  transition: 0.5s all;
}
.cid-uHZPgnAQ1Q .item-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: 0.5s all;
  will-change: transform;
}
.cid-uHZPgnAQ1Q .img-bg-color {
  position: absolute;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  width: 80%;
  aspect-ratio: 1;
  opacity: 0.3;
  filter: blur(100px);
}
.cid-uHZPgnAQ1Q .img-bg-color-1 {
  left: 0;
  background: #79F429;
  transform: translate(-50%, 50%);
  opacity: 0.2;
}
.cid-uHZPgnAQ1Q .img-bg-color-2 {
  right: 0;
  background: #0E0E0E;
  transform: translate(50%, 50%);
}
.cid-uHZPgnAQ1Q .card-box {
  position: relative;
  z-index: 3;
  padding-top: 50px;
  opacity: 1;
}
.cid-uHZPgnAQ1Q .card-price {
  color: #FFFFFF;
  margin-bottom: 0;
  transition: 0.5s all;
}
.cid-uHZPgnAQ1Q .card-title {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 1rem;
  transition: 0.5s all;
}
.cid-uHZPgnAQ1Q .card-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 1rem;
  transition: 0.5s all;
}
.cid-uHZPgnAQ1Q .mbr-section-btn {
  margin-top: 1rem;
}
.cid-upNT0CGneJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-upNT0CGneJ .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-upNT0CGneJ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-upNT0CGneJ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-upNT0CGneJ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .social_icons {
  text-align: center;
}
.cid-upNT0CGneJ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-upNT0CGneJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upNT0CGneJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upNT0CGneJ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-upNT0CGneJ .footer_timework {
    margin-top: 50px;
  }
  .cid-upNT0CGneJ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwedrsUJi P {
  color: #1281fc;
}
.cid-uJwedrsUJi DIV {
  color: #ffffff;
}
.cid-uJwedrsUJi H10 {
  color: #034e75;
}
.cid-uJwedrsUJi .hidden {
  display: none;
}
.cid-uJwedrsUJi .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwedrsUJi .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwedrsUJi .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwedrsUJi .flag {
  background: transparent;
}
.cid-uJwedrsUJi .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwedrsUJi .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwedrsUJi #google_translate_element {
  display: none;
}
.cid-uJwedrsUJi .goog-te-banner {
  display: none;
}
.cid-uJwedrsUJi .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwedrsUJi .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwedrsUJi body {
  top: 0px !important;
}
.cid-uJwedrsUJi body body {
  top: 0 !important;
}
.cid-uJwedrsUJi body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwedrsUJi .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwedrsUJi .goog-tooltip {
  display: none !important;
}
.cid-uJwedrsUJi .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwedrsUJi .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwedrsUJi #goog-gt-tt,
.cid-uJwedrsUJi .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwedrsUJi #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwedrsUJi .goog-logo-link {
  display: none !important;
}
.cid-uJwedrsUJi .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwedrsUJi div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwedrsUJi div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uI0bCPfmGv {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/magdalena-dziobak-web-13.jpg-2000x1600.jpg");
}
.cid-uI0bCPfmGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI0bCPfmGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI0bCPfmGv .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uI0bCPfmGv .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uI0bCPfmGv .container-fluid {
    padding: 0 20px;
  }
}
.cid-uI0bCPfmGv .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uI0bCPfmGv .container {
    padding: 0 20px;
  }
}
.cid-uI0bCPfmGv .row {
  height: 100%;
}
.cid-uI0bCPfmGv .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uI0bCPfmGv .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uI0bCPfmGv .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uI0bCPfmGv .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uI0bCPfmGv .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uI0bCPfmGv .mbr-section-title {
  color: #ffffff;
}
.cid-uI0bCPfmGv .mbr-desc {
  color: #ffffff;
}
.cid-uI0bCPfmGv .mbr-section-title,
.cid-uI0bCPfmGv .mbr-section-btn {
  text-align: center;
}
.cid-uI43B7pXly {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI43B7pXly .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI43B7pXly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHZXQOPLvT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHZXQOPLvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHZXQOPLvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHZXQOPLvT .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6ec7f2;
  margin-left: 1rem;
}
.cid-uHZXQOPLvT .panel-group {
  border: none;
}
.cid-uHZXQOPLvT .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uHZXQOPLvT .panel-body,
.cid-uHZXQOPLvT .card-header {
  padding: 1rem 0;
}
.cid-uHZXQOPLvT .panel-title-edit {
  color: #000000;
  text-align: left;
}
.cid-uHZXQOPLvT .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uHZXQOPLvT .panel-text {
  text-align: center;
}
.cid-uI3vuPghj7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uI3vuPghj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3vuPghj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uI3vuPghj7 .container-fluid {
    padding: 0;
  }
}
.cid-uI3vuPghj7 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uI3vuPghj7 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uI3vuPghj7 .embla__button--next,
.cid-uI3vuPghj7 .embla__button--prev {
  display: flex;
}
.cid-uI3vuPghj7 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uI3vuPghj7 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uI3vuPghj7 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-uI3vuPghj7 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uI3vuPghj7 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uI3vuPghj7 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uI3vuPghj7 .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uI3vuPghj7 .embla {
  position: relative;
  width: 100%;
}
.cid-uI3vuPghj7 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uI3vuPghj7 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uI3vuPghj7 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uI3vuPghj7 .embla__slide a {
  cursor: grab;
}
.cid-uI3vuPghj7 .embla__slide a:active {
  cursor: grabbing;
}
.cid-uI3vuPghj7 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uI3vuPghj7 .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uI3vuPghj7 .mbr-section-title {
  color: #232323;
}
.cid-uI3vuPghj7 .mbr-section-subtitle {
  color: #232323;
}
.cid-uI3vuPghj7 .mbr-box {
  color: #ffffff;
}
.cid-uI3vuPghj7 .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uI3vuPghj7 img,
.cid-uI3vuPghj7 .item-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uI3vuPghj7 .item-wrapper {
  position: relative;
}
.cid-uI3vuPghj7 .content-head {
  max-width: 800px;
}
.cid-uI3MrXj2TG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI3MrXj2TG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3MrXj2TG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3MrXj2TG .card-wrapper {
  background: #47b5ed;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uI3MrXj2TG .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uI3MrXj2TG .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uI3MrXj2TG .card-wrapper {
    padding: 4rem;
  }
}
.cid-uI3MrXj2TG .mbr-text,
.cid-uI3MrXj2TG .mbr-section-btn {
  color: #ffffff;
}
.cid-uI3MrXj2TG .card-title,
.cid-uI3MrXj2TG .card-box {
  text-align: center;
}
.cid-uNgZAMq8cm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNgZAMq8cm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNgZAMq8cm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNgZAMq8cm .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6ec7f2;
  margin-bottom: 2rem;
}
.cid-uNgZAMq8cm .card-wrapper {
  padding: 3rem;
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .cid-uNgZAMq8cm .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNgZAMq8cm .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uI0gDJkBXi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uI0gDJkBXi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI0gDJkBXi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI0gDJkBXi .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uI0gDJkBXi .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uI0gDJkBXi .container {
    padding: 0 24px;
  }
}
.cid-uI0gDJkBXi .form-wrapper {
  display: flex;
  padding: 110px 115px;
  background-color: #ffffff;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uI0gDJkBXi .form-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-uI0gDJkBXi .form-wrapper .title-wrapper {
  width: 50%;
  padding-right: 90px;
}
@media (max-width: 992px) {
  .cid-uI0gDJkBXi .form-wrapper .title-wrapper {
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
  }
}
.cid-uI0gDJkBXi .form-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uI0gDJkBXi .form-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uI0gDJkBXi .form-wrapper .form-wrap {
    width: 100%;
  }
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  border-bottom: 1px solid #e3e3e3 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #6ec7f2;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group textarea {
  min-height: 120px;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #e3e3e3;
  border-color: #e3e3e3;
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn:hover,
.cid-uI0gDJkBXi .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uI0gDJkBXi .mbr-section-title {
  color: #141414;
}
.cid-uI0gDJkBXi .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uI0gDJkBXi label {
  color: #141414;
}
.cid-uI0gDJkBXi .mbr-section-title,
.cid-uI0gDJkBXi .mbr-section-btn {
  text-align: center;
}
.cid-uI44eSOXRY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #22a5e5;
}
.cid-uI44eSOXRY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI44eSOXRY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI44eSOXRY .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #9fdbf8;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uI44eSOXRY .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uI44eSOXRY .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9fdbf8;
  opacity: .5;
}
.cid-uI44eSOXRY .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uI44eSOXRY .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uI44eSOXRY .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uI44eSOXRY .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uI44eSOXRY .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uI44eSOXRY .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #bcfe1e;
}
@media (max-width: 992px) {
  .cid-uI44eSOXRY .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uI44eSOXRY .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uI44eSOXRY .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uI44eSOXRY .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uI44eSOXRY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uI44eSOXRY .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uI44eSOXRY .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-upNT0CGneJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-upNT0CGneJ .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-upNT0CGneJ .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-upNT0CGneJ .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-upNT0CGneJ .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-upNT0CGneJ .social_icons {
  text-align: center;
}
.cid-upNT0CGneJ .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-upNT0CGneJ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-upNT0CGneJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-upNT0CGneJ .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-upNT0CGneJ .footer_timework {
    margin-top: 50px;
  }
  .cid-upNT0CGneJ .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJweionvcp P {
  color: #1281fc;
}
.cid-uJweionvcp DIV {
  color: #ffffff;
}
.cid-uJweionvcp H10 {
  color: #034e75;
}
.cid-uJweionvcp .hidden {
  display: none;
}
.cid-uJweionvcp .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJweionvcp .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJweionvcp .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJweionvcp .flag {
  background: transparent;
}
.cid-uJweionvcp .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJweionvcp .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJweionvcp #google_translate_element {
  display: none;
}
.cid-uJweionvcp .goog-te-banner {
  display: none;
}
.cid-uJweionvcp .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJweionvcp .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJweionvcp body {
  top: 0px !important;
}
.cid-uJweionvcp body body {
  top: 0 !important;
}
.cid-uJweionvcp body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJweionvcp .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJweionvcp .goog-tooltip {
  display: none !important;
}
.cid-uJweionvcp .goog-tooltip:hover {
  display: none !important;
}
.cid-uJweionvcp .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJweionvcp #goog-gt-tt,
.cid-uJweionvcp .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJweionvcp #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJweionvcp .goog-logo-link {
  display: none !important;
}
.cid-uJweionvcp .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJweionvcp div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJweionvcp div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uIntN5cbTR {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uIntN5cbTR .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uIntN5cbTR .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uIntN5cbTR .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uIntN5cbTR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uIntN5cbTR .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uIntN5cbTR .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uIntN5cbTR .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uIntN5cbTR .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uIntN5cbTR .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uIntN5cbTR .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uIntN5cbTR .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uIntN5cbTR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uIntN5cbTR .nav-item:focus,
.cid-uIntN5cbTR .nav-link:focus {
  outline: none;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uIntN5cbTR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uIntN5cbTR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uIntN5cbTR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uIntN5cbTR .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uIntN5cbTR .navbar.opened {
  transition: all 0.3s;
}
.cid-uIntN5cbTR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uIntN5cbTR .navbar .navbar-logo img {
  width: auto;
}
.cid-uIntN5cbTR .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uIntN5cbTR .navbar.collapsed {
  justify-content: center;
}
.cid-uIntN5cbTR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uIntN5cbTR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uIntN5cbTR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uIntN5cbTR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uIntN5cbTR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uIntN5cbTR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uIntN5cbTR .navbar {
    min-height: 72px;
  }
  .cid-uIntN5cbTR .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uIntN5cbTR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uIntN5cbTR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uIntN5cbTR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uIntN5cbTR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uIntN5cbTR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uIntN5cbTR .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uIntN5cbTR .dropdown-item.active,
.cid-uIntN5cbTR .dropdown-item:active {
  background-color: transparent;
}
.cid-uIntN5cbTR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uIntN5cbTR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uIntN5cbTR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uIntN5cbTR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uIntN5cbTR .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .navbar-buttons {
    text-align: left;
  }
}
.cid-uIntN5cbTR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uIntN5cbTR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uIntN5cbTR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uIntN5cbTR .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uIntN5cbTR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIntN5cbTR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uIntN5cbTR .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uIntN5cbTR .navbar {
    height: 70px;
  }
  .cid-uIntN5cbTR .navbar.opened {
    height: auto;
  }
  .cid-uIntN5cbTR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uIntN5cbTR .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uIntN5cbTR .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uIntN5cbTR .navbar-brand {
    margin-right: auto;
  }
  .cid-uIntN5cbTR .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uIntN5cbTR .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uIntN5cbTR .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uIntN5cbTR .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uIntN5cbTR .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uIntN5cbTR .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uI3vQDqzjS {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/dorota-filipczuk-day-2-web-3-2000x1600.jpg");
}
.cid-uI3vQDqzjS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3vQDqzjS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3vQDqzjS .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uI3vQDqzjS .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uI3vQDqzjS .container-fluid {
    padding: 0 20px;
  }
}
.cid-uI3vQDqzjS .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uI3vQDqzjS .container {
    padding: 0 20px;
  }
}
.cid-uI3vQDqzjS .row {
  height: 100%;
}
.cid-uI3vQDqzjS .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uI3vQDqzjS .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uI3vQDqzjS .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uI3vQDqzjS .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uI3vQDqzjS .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uI3vQDqzjS .mbr-section-title {
  color: #ffffff;
}
.cid-uI3vQDqzjS .mbr-desc {
  color: #ffffff;
}
.cid-uI3vQDqzjS .mbr-section-title,
.cid-uI3vQDqzjS .mbr-section-btn {
  text-align: center;
}
.cid-uI4ZFx9ogN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI4ZFx9ogN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI4ZFx9ogN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI4ZFx9ogN .text-wrapper {
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-uI4ZFx9ogN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uI4ZFx9ogN .row {
  flex-direction: row-reverse;
}
.cid-uI4ZFx9ogN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uI4ZFx9ogN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uI4ZFx9ogN .mbr-text {
  text-align: center;
}
.cid-uI4ZFx9ogN .mbr-section-title {
  text-align: center;
}
.cid-uI3wSZK9j3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffcd9f;
  background: linear-gradient(90deg, #ffcd9f, #4f87fb);
}
.cid-uI3wSZK9j3 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-uI3wSZK9j3 .media-container-row {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.cid-uI3wSZK9j3 .list-group-item {
  padding: .75rem 0rem;
}
.cid-uI3wSZK9j3 .plan-subtitle {
  color: #cccccc;
}
.cid-uI3wSZK9j3 .mbr-text {
  margin: 10px 0 0 0;
  color: #ffe161;
}
.cid-uI3wSZK9j3 .nav-tabs {
  border: none !important;
}
.cid-uI3wSZK9j3 .nav-tabs .btn {
  background: transparent !important;
  position: relative;
}
.cid-uI3wSZK9j3 .nav-tabs .btn:not(:focus):not(:hover):not(.active) {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.cid-uI3wSZK9j3 .nav-tabs .btn.active,
.cid-uI3wSZK9j3 .nav-tabs .btn:hover {
  background: #47b5ed !important;
  color: #ffffff !important;
  border-color: #47b5ed !important;
}
.cid-uI3wSZK9j3 .nav-tabs .btn.active:after {
  animation: none;
}
.cid-uI3wSZK9j3 .nav-tabs .btn:after {
  content: '';
  border: 0px solid;
  border-color: inherit;
  border-radius: inherit;
  transition: border-radius 0.3s;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
.cid-uI3wSZK9j3 .nav-tabs .btn:hover:after {
  border-width: 1px;
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-uI3wSZK9j3 .price-term .term {
  display: inline-block;
  background: #9fdbf8;
  padding: 5px 10px;
  border-radius: 100px;
}
.cid-uI3wSZK9j3 .plan {
  padding: 1.875rem;
  background: none;
  position: relative;
}
.cid-uI3wSZK9j3 .plan .mbr-overlay {
  background: #47b5ed;
  opacity: 0.8;
}
.cid-uI3wSZK9j3 .plan .plan-price {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #ffffff;
}
.cid-uI3wSZK9j3 .plan .plan-price .price-term {
  margin-top: 10px;
}
.cid-uI3wSZK9j3 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
  background: none;
}
.cid-uI3wSZK9j3 .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #ffffff;
}
.cid-uI3wSZK9j3 .plan .mbr-section-btn a {
  margin-bottom: 0;
}
.cid-uI3wSZK9j3 .plan .plan-body {
  position: relative;
  border-top: 1px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uI3wSZK9j3 .plan {
    margin-bottom: 30px;
  }
}
.cid-uI3wSZK9j3 .plan-header {
  position: relative;
}
@media (max-width: 550px) {
  .cid-uI3wSZK9j3 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-uI3wSZK9j3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3wSZK9j3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3BIoFaBC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uI3BIoFaBC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uI3BIoFaBC .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uI3BIoFaBC .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #47b5ed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uI3BIoFaBC .mbr-section-title {
  text-align: center;
}
.cid-uI3BIoFaBC .mbr-text UL {
  text-align: left;
}
.cid-uI3DpzSJ8r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uI3DpzSJ8r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3DpzSJ8r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3DpzSJ8r .card-wrapper {
  background: #47b5ed;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uI3DpzSJ8r .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uI3DpzSJ8r .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uI3DpzSJ8r .card-wrapper {
    padding: 4rem;
  }
}
.cid-uI3DpzSJ8r .mbr-text,
.cid-uI3DpzSJ8r .mbr-section-btn {
  color: #ffffff;
}
.cid-uI3DpzSJ8r .card-title,
.cid-uI3DpzSJ8r .card-box {
  text-align: center;
}
.cid-uI3vQFoSnM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uI3vQFoSnM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI3vQFoSnM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI3vQFoSnM .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uI3vQFoSnM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uI3vQFoSnM .container {
    padding: 0 24px;
  }
}
.cid-uI3vQFoSnM .form-wrapper {
  display: flex;
  padding: 110px 115px;
  background-color: #ffffff;
  border-radius: .75rem;
}
@media (max-width: 992px) {
  .cid-uI3vQFoSnM .form-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-uI3vQFoSnM .form-wrapper .title-wrapper {
  width: 50%;
  padding-right: 90px;
}
@media (max-width: 992px) {
  .cid-uI3vQFoSnM .form-wrapper .title-wrapper {
    margin-bottom: 32px;
    padding: 0;
    width: 100%;
  }
}
.cid-uI3vQFoSnM .form-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uI3vQFoSnM .form-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uI3vQFoSnM .form-wrapper .form-wrap {
    width: 100%;
  }
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .mbr-section-title {
  margin-bottom: 16px !important;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .mbr-text {
  margin-bottom: 16px;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group {
  margin-bottom: 16px !important;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-control {
  padding: 16px 0;
  border: none !important;
  border-bottom: 1px solid #e3e3e3 !important;
  box-shadow: none;
  border-radius: 0 !important;
  background-color: transparent;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #6ec7f2;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group textarea {
  min-height: 120px;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 1.7em;
  margin-bottom: 10px;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #e3e3e3;
  border-color: #e3e3e3;
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn:hover,
.cid-uI3vQFoSnM .form-wrapper .form-wrap .dragArea.row .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uI3vQFoSnM .mbr-section-title {
  color: #141414;
}
.cid-uI3vQFoSnM .mbr-desc {
  color: #141414;
  text-align: center;
}
.cid-uI3vQFoSnM label {
  color: #141414;
}
.cid-uI3vQFoSnM .mbr-section-title,
.cid-uI3vQFoSnM .mbr-section-btn {
  text-align: center;
}
.cid-uI40xk7Tme {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #22a5e5;
}
.cid-uI40xk7Tme .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI40xk7Tme .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI40xk7Tme .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #9fdbf8;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uI40xk7Tme .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uI40xk7Tme .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9fdbf8;
  opacity: .5;
}
.cid-uI40xk7Tme .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uI40xk7Tme .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uI40xk7Tme .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uI40xk7Tme .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uI40xk7Tme .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uI40xk7Tme .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #bcfe1e;
}
@media (max-width: 992px) {
  .cid-uI40xk7Tme .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uI40xk7Tme .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uI40xk7Tme .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uI40xk7Tme .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uI40xk7Tme .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uI40xk7Tme .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uI40xk7Tme .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uI3vQG5NuR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uI3vQG5NuR .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uI3vQG5NuR .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uI3vQG5NuR .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uI3vQG5NuR .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uI3vQG5NuR .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uI3vQG5NuR .social_icons {
  text-align: center;
}
.cid-uI3vQG5NuR .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uI3vQG5NuR .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uI3vQG5NuR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uI3vQG5NuR .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uI3vQG5NuR .footer_timework {
    margin-top: 50px;
  }
  .cid-uI3vQG5NuR .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uJwejMQ5ia P {
  color: #1281fc;
}
.cid-uJwejMQ5ia DIV {
  color: #ffffff;
}
.cid-uJwejMQ5ia H10 {
  color: #034e75;
}
.cid-uJwejMQ5ia .hidden {
  display: none;
}
.cid-uJwejMQ5ia .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uJwejMQ5ia .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uJwejMQ5ia .icon-bar a:hover {
  background-color: #000000;
}
.cid-uJwejMQ5ia .flag {
  background: transparent;
}
.cid-uJwejMQ5ia .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uJwejMQ5ia .nav-right {
  float: left !important;
  position: relative;
}
.cid-uJwejMQ5ia #google_translate_element {
  display: none;
}
.cid-uJwejMQ5ia .goog-te-banner {
  display: none;
}
.cid-uJwejMQ5ia .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uJwejMQ5ia .goog-te-spinner-pos {
  display: none !important;
}
.cid-uJwejMQ5ia body {
  top: 0px !important;
}
.cid-uJwejMQ5ia body body {
  top: 0 !important;
}
.cid-uJwejMQ5ia body .goog-te-banner-frame {
  display: none !important;
}
.cid-uJwejMQ5ia .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uJwejMQ5ia .goog-tooltip {
  display: none !important;
}
.cid-uJwejMQ5ia .goog-tooltip:hover {
  display: none !important;
}
.cid-uJwejMQ5ia .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uJwejMQ5ia #goog-gt-tt,
.cid-uJwejMQ5ia .goog-te-balloon-frame {
  display: none !important;
}
.cid-uJwejMQ5ia #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uJwejMQ5ia .goog-logo-link {
  display: none !important;
}
.cid-uJwejMQ5ia .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uJwejMQ5ia div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uJwejMQ5ia div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uKwszGL9h4 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uKwszGL9h4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uKwszGL9h4 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uKwszGL9h4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uKwszGL9h4 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uKwszGL9h4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uKwszGL9h4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKwszGL9h4 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uKwszGL9h4 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uKwszGL9h4 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uKwszGL9h4 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uKwszGL9h4 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uKwszGL9h4 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uKwszGL9h4 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uKwszGL9h4 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uKwszGL9h4 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uKwszGL9h4 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uKwszGL9h4 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uKwszGL9h4 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uKwszGL9h4 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uKwszGL9h4 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uKwszGL9h4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uKwszGL9h4 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uKwszGL9h4 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKwszGL9h4 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uKwszGL9h4 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uKwszGL9h4 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uKwszGL9h4 .nav-item:focus,
.cid-uKwszGL9h4 .nav-link:focus {
  outline: none;
}
.cid-uKwszGL9h4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKwszGL9h4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKwszGL9h4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKwszGL9h4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKwszGL9h4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKwszGL9h4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKwszGL9h4 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uKwszGL9h4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uKwszGL9h4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uKwszGL9h4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uKwszGL9h4 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uKwszGL9h4 .navbar.collapsed {
  justify-content: center;
}
.cid-uKwszGL9h4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKwszGL9h4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uKwszGL9h4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uKwszGL9h4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKwszGL9h4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKwszGL9h4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uKwszGL9h4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKwszGL9h4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uKwszGL9h4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uKwszGL9h4 .navbar {
    min-height: 72px;
  }
  .cid-uKwszGL9h4 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uKwszGL9h4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKwszGL9h4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKwszGL9h4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKwszGL9h4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uKwszGL9h4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uKwszGL9h4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uKwszGL9h4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uKwszGL9h4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKwszGL9h4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uKwszGL9h4 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uKwszGL9h4 .dropdown-item.active,
.cid-uKwszGL9h4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKwszGL9h4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKwszGL9h4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKwszGL9h4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKwszGL9h4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uKwszGL9h4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uKwszGL9h4 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uKwszGL9h4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uKwszGL9h4 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uKwszGL9h4 .navbar-buttons {
    text-align: left;
  }
}
.cid-uKwszGL9h4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uKwszGL9h4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uKwszGL9h4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKwszGL9h4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKwszGL9h4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKwszGL9h4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKwszGL9h4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKwszGL9h4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKwszGL9h4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKwszGL9h4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKwszGL9h4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uKwszGL9h4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uKwszGL9h4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uKwszGL9h4 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uKwszGL9h4 .navbar {
    height: 70px;
  }
  .cid-uKwszGL9h4 .navbar.opened {
    height: auto;
  }
  .cid-uKwszGL9h4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uKwszGL9h4 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uKwszGL9h4 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uKwszGL9h4 .navbar-brand {
    margin-right: auto;
  }
  .cid-uKwszGL9h4 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uKwszGL9h4 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uKwszGL9h4 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uKwszGL9h4 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uKwszGL9h4 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uKwszGL9h4 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uKwszHFxFO {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKwszHFxFO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwszHFxFO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwszHFxFO .mbr-section-title,
.cid-uKwszHFxFO .mbr-text,
.cid-uKwszHFxFO .mbr-section-btn {
  text-align: center;
}
.cid-uKwszHFxFO .video-wrapper {
  margin: auto;
}
.cid-uKwszHFxFO .video-wrapper iframe {
  width: 100%;
}
.cid-uKwszHFxFO .mbr-section-title {
  color: #22a5e5;
}
.cid-uKwszI9M4p {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/ewelina-suchecka-web-01.jpg-2000x1600.jpg");
}
.cid-uKwszI9M4p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwszI9M4p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwsOYT3DD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uKwsOYT3DD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwsOYT3DD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwsOYT3DD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uKwsOYT3DD .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uKwsOYT3DD .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uKwsOYT3DD .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uKwsOYT3DD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uKwsOYT3DD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uKwsOYT3DD .carousel-control,
.cid-uKwsOYT3DD .close {
  background: #1b1b1b;
}
.cid-uKwsOYT3DD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uKwsOYT3DD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uKwsOYT3DD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uKwsOYT3DD .carousel-control-next span {
  margin-left: 5px;
}
.cid-uKwsOYT3DD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uKwsOYT3DD .close::before {
  content: '\e91a';
}
.cid-uKwsOYT3DD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uKwsOYT3DD .carousel-control {
  display: flex;
  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-uKwsOYT3DD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKwsOYT3DD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uKwsOYT3DD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uKwsOYT3DD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uKwsOYT3DD .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-uKwsOYT3DD .carousel-indicators li.active,
.cid-uKwsOYT3DD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uKwsOYT3DD .carousel-indicators li::after,
.cid-uKwsOYT3DD .carousel-indicators li::before {
  content: none;
}
.cid-uKwsOYT3DD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uKwsOYT3DD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uKwsOYT3DD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uKwsOYT3DD .carousel-indicators {
    display: none;
  }
}
.cid-uKwsOYT3DD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uKwsOYT3DD .carousel-inner > .active {
  display: block;
}
.cid-uKwsOYT3DD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uKwsOYT3DD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uKwsOYT3DD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uKwsOYT3DD .carousel-control,
  .cid-uKwsOYT3DD .carousel-indicators,
  .cid-uKwsOYT3DD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uKwsOYT3DD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uKwsOYT3DD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uKwsOYT3DD .carousel-indicators .active,
.cid-uKwsOYT3DD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uKwsOYT3DD .carousel-indicators .active {
  background: #fff;
}
.cid-uKwsOYT3DD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uKwsOYT3DD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uKwsOYT3DD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uKwsOYT3DD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uKwsOYT3DD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uKwsOYT3DD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uKwsOYT3DD .carousel {
  width: 100%;
}
.cid-uKwsOYT3DD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uKwsOYT3DD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uKwsOYT3DD .modal.fade .modal-dialog,
.cid-uKwsOYT3DD .modal.in .modal-dialog {
  transform: none;
}
.cid-uKwsOYT3DD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uKwsOYT3DD H6 {
  text-align: center;
}
.cid-uKwszLaZrt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKwszLaZrt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKwszLaZrt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKwszLaZrt .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uKwszLaZrt .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uKwszLaZrt .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uKwszLaZrt .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uKwszLaZrt .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uKwszLaZrt .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uKwszLaZrt .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uKwszLaZrt .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uKwszLaZrt .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uKwszLaZrt .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uKwszLaZrt .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uKwszLaZrt .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uKwszLaZrt .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uKwszLaZrt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uKwszLaZrt .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uKwszLaZrt .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKwszMbTUE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uKwszMbTUE .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uKwszMbTUE .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uKwszMbTUE .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uKwszMbTUE .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uKwszMbTUE .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uKwszMbTUE .social_icons {
  text-align: center;
}
.cid-uKwszMbTUE .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uKwszMbTUE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uKwszMbTUE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKwszMbTUE .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uKwszMbTUE .footer_timework {
    margin-top: 50px;
  }
  .cid-uKwszMbTUE .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uL1bFhN7Ds {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uL1bFhN7Ds .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uL1bFhN7Ds .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uL1bFhN7Ds .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uL1bFhN7Ds .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uL1bFhN7Ds .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL1bFhN7Ds .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL1bFhN7Ds .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uL1bFhN7Ds .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uL1bFhN7Ds .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uL1bFhN7Ds .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uL1bFhN7Ds .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uL1bFhN7Ds .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uL1bFhN7Ds .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uL1bFhN7Ds .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uL1bFhN7Ds .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uL1bFhN7Ds .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uL1bFhN7Ds .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uL1bFhN7Ds .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uL1bFhN7Ds .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uL1bFhN7Ds .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uL1bFhN7Ds .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uL1bFhN7Ds .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uL1bFhN7Ds .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uL1bFhN7Ds .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uL1bFhN7Ds .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL1bFhN7Ds .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uL1bFhN7Ds .nav-item:focus,
.cid-uL1bFhN7Ds .nav-link:focus {
  outline: none;
}
.cid-uL1bFhN7Ds .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL1bFhN7Ds .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL1bFhN7Ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL1bFhN7Ds .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL1bFhN7Ds .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL1bFhN7Ds .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL1bFhN7Ds .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uL1bFhN7Ds .navbar.opened {
  transition: all 0.3s;
}
.cid-uL1bFhN7Ds .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL1bFhN7Ds .navbar .navbar-logo img {
  width: auto;
}
.cid-uL1bFhN7Ds .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uL1bFhN7Ds .navbar.collapsed {
  justify-content: center;
}
.cid-uL1bFhN7Ds .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL1bFhN7Ds .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL1bFhN7Ds .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL1bFhN7Ds .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL1bFhN7Ds .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL1bFhN7Ds .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uL1bFhN7Ds .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL1bFhN7Ds .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL1bFhN7Ds .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uL1bFhN7Ds .navbar {
    min-height: 72px;
  }
  .cid-uL1bFhN7Ds .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uL1bFhN7Ds .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL1bFhN7Ds .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL1bFhN7Ds .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uL1bFhN7Ds .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL1bFhN7Ds .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL1bFhN7Ds .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uL1bFhN7Ds .dropdown-item.active,
.cid-uL1bFhN7Ds .dropdown-item:active {
  background-color: transparent;
}
.cid-uL1bFhN7Ds .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL1bFhN7Ds .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL1bFhN7Ds .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL1bFhN7Ds .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uL1bFhN7Ds .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uL1bFhN7Ds .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uL1bFhN7Ds ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL1bFhN7Ds .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uL1bFhN7Ds .navbar-buttons {
    text-align: left;
  }
}
.cid-uL1bFhN7Ds button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL1bFhN7Ds button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uL1bFhN7Ds button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL1bFhN7Ds button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL1bFhN7Ds button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL1bFhN7Ds button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL1bFhN7Ds nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL1bFhN7Ds nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL1bFhN7Ds nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL1bFhN7Ds nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL1bFhN7Ds .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL1bFhN7Ds a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL1bFhN7Ds .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uL1bFhN7Ds .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uL1bFhN7Ds .navbar {
    height: 70px;
  }
  .cid-uL1bFhN7Ds .navbar.opened {
    height: auto;
  }
  .cid-uL1bFhN7Ds .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uL1bFhN7Ds .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uL1bFhN7Ds .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uL1bFhN7Ds .navbar-brand {
    margin-right: auto;
  }
  .cid-uL1bFhN7Ds .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uL1bFhN7Ds .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uL1bFhN7Ds .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uL1bFhN7Ds .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uL1bFhN7Ds .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uL1bFhN7Ds .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uL1bFjZBkD {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL1bFjZBkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL1bFjZBkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL1bFjZBkD .mbr-section-title,
.cid-uL1bFjZBkD .mbr-text,
.cid-uL1bFjZBkD .mbr-section-btn {
  text-align: center;
}
.cid-uL1bFjZBkD .video-wrapper {
  margin: auto;
}
.cid-uL1bFjZBkD .video-wrapper iframe {
  width: 100%;
}
.cid-uL1bFjZBkD .mbr-section-title {
  color: #22a5e5;
}
.cid-uL1bFkEzvm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/marcin-nawrot-web-68-2000x1600.jpg");
}
.cid-uL1bFkEzvm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL1bFkEzvm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL1bPfkfPX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL1bPfkfPX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL1bPfkfPX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL1bPfkfPX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uL1bPfkfPX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uL1bPfkfPX .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uL1bPfkfPX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uL1bPfkfPX .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uL1bPfkfPX .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uL1bPfkfPX .carousel-control,
.cid-uL1bPfkfPX .close {
  background: #1b1b1b;
}
.cid-uL1bPfkfPX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uL1bPfkfPX .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uL1bPfkfPX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uL1bPfkfPX .carousel-control-next span {
  margin-left: 5px;
}
.cid-uL1bPfkfPX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uL1bPfkfPX .close::before {
  content: '\e91a';
}
.cid-uL1bPfkfPX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uL1bPfkfPX .carousel-control {
  display: flex;
  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-uL1bPfkfPX .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uL1bPfkfPX .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uL1bPfkfPX .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uL1bPfkfPX .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uL1bPfkfPX .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-uL1bPfkfPX .carousel-indicators li.active,
.cid-uL1bPfkfPX .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uL1bPfkfPX .carousel-indicators li::after,
.cid-uL1bPfkfPX .carousel-indicators li::before {
  content: none;
}
.cid-uL1bPfkfPX .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uL1bPfkfPX .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uL1bPfkfPX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uL1bPfkfPX .carousel-indicators {
    display: none;
  }
}
.cid-uL1bPfkfPX .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uL1bPfkfPX .carousel-inner > .active {
  display: block;
}
.cid-uL1bPfkfPX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uL1bPfkfPX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uL1bPfkfPX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uL1bPfkfPX .carousel-control,
  .cid-uL1bPfkfPX .carousel-indicators,
  .cid-uL1bPfkfPX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uL1bPfkfPX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uL1bPfkfPX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uL1bPfkfPX .carousel-indicators .active,
.cid-uL1bPfkfPX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uL1bPfkfPX .carousel-indicators .active {
  background: #fff;
}
.cid-uL1bPfkfPX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uL1bPfkfPX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uL1bPfkfPX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uL1bPfkfPX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uL1bPfkfPX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uL1bPfkfPX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uL1bPfkfPX .carousel {
  width: 100%;
}
.cid-uL1bPfkfPX .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uL1bPfkfPX .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uL1bPfkfPX .modal.fade .modal-dialog,
.cid-uL1bPfkfPX .modal.in .modal-dialog {
  transform: none;
}
.cid-uL1bPfkfPX .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uL1bPfkfPX H6 {
  text-align: center;
}
.cid-uL1bFsBott {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL1bFsBott .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL1bFsBott .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL1bFsBott .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uL1bFsBott .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uL1bFsBott .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uL1bFsBott .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uL1bFsBott .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uL1bFsBott .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uL1bFsBott .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uL1bFsBott .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uL1bFsBott .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uL1bFsBott .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uL1bFsBott .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uL1bFsBott .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uL1bFsBott .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uL1bFsBott .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL1bFsBott .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL1bFsBott .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uL1bFtoRvS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uL1bFtoRvS .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uL1bFtoRvS .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uL1bFtoRvS .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uL1bFtoRvS .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uL1bFtoRvS .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uL1bFtoRvS .social_icons {
  text-align: center;
}
.cid-uL1bFtoRvS .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uL1bFtoRvS .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uL1bFtoRvS .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL1bFtoRvS .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uL1bFtoRvS .footer_timework {
    margin-top: 50px;
  }
  .cid-uL1bFtoRvS .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uL72OFmCju {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uL72OFmCju .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uL72OFmCju .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uL72OFmCju .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uL72OFmCju .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uL72OFmCju .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uL72OFmCju .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL72OFmCju .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uL72OFmCju .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uL72OFmCju .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uL72OFmCju .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uL72OFmCju .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uL72OFmCju .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uL72OFmCju .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uL72OFmCju .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uL72OFmCju .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uL72OFmCju .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uL72OFmCju .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uL72OFmCju .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uL72OFmCju .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uL72OFmCju .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uL72OFmCju .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uL72OFmCju .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uL72OFmCju .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uL72OFmCju .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uL72OFmCju .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uL72OFmCju .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uL72OFmCju .nav-item:focus,
.cid-uL72OFmCju .nav-link:focus {
  outline: none;
}
.cid-uL72OFmCju .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL72OFmCju .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL72OFmCju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL72OFmCju .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL72OFmCju .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL72OFmCju .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL72OFmCju .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uL72OFmCju .navbar.opened {
  transition: all 0.3s;
}
.cid-uL72OFmCju .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uL72OFmCju .navbar .navbar-logo img {
  width: auto;
}
.cid-uL72OFmCju .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uL72OFmCju .navbar.collapsed {
  justify-content: center;
}
.cid-uL72OFmCju .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL72OFmCju .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uL72OFmCju .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uL72OFmCju .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL72OFmCju .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL72OFmCju .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uL72OFmCju .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL72OFmCju .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uL72OFmCju .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uL72OFmCju .navbar {
    min-height: 72px;
  }
  .cid-uL72OFmCju .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uL72OFmCju .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL72OFmCju .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL72OFmCju .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL72OFmCju .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uL72OFmCju .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uL72OFmCju .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uL72OFmCju .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uL72OFmCju .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL72OFmCju .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uL72OFmCju .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uL72OFmCju .dropdown-item.active,
.cid-uL72OFmCju .dropdown-item:active {
  background-color: transparent;
}
.cid-uL72OFmCju .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL72OFmCju .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL72OFmCju .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL72OFmCju .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uL72OFmCju .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uL72OFmCju .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uL72OFmCju ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uL72OFmCju .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uL72OFmCju .navbar-buttons {
    text-align: left;
  }
}
.cid-uL72OFmCju button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uL72OFmCju button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uL72OFmCju button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL72OFmCju button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL72OFmCju button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL72OFmCju button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL72OFmCju nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL72OFmCju nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL72OFmCju nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL72OFmCju nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL72OFmCju .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uL72OFmCju a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL72OFmCju .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uL72OFmCju .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uL72OFmCju .navbar {
    height: 70px;
  }
  .cid-uL72OFmCju .navbar.opened {
    height: auto;
  }
  .cid-uL72OFmCju .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL72OFmCju .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uL72OFmCju .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uL72OFmCju .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uL72OFmCju .navbar-brand {
    margin-right: auto;
  }
  .cid-uL72OFmCju .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uL72OFmCju .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uL72OFmCju .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uL72OFmCju .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uL72OFmCju .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uL72OFmCju .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uL72OHHXoX {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL72OHHXoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL72OHHXoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL72OHHXoX .mbr-section-title,
.cid-uL72OHHXoX .mbr-text,
.cid-uL72OHHXoX .mbr-section-btn {
  text-align: center;
}
.cid-uL72OHHXoX .video-wrapper {
  margin: auto;
}
.cid-uL72OHHXoX .video-wrapper iframe {
  width: 100%;
}
.cid-uL72OHHXoX .mbr-section-title {
  color: #22a5e5;
}
.cid-uL72OIwMBu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/monika-miek-web-1-2000x1600.jpg");
}
.cid-uL72OIwMBu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL72OIwMBu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL78CNok9o {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL78CNok9o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL78CNok9o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL78CNok9o .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uL78CNok9o .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uL78CNok9o .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uL78CNok9o .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uL78CNok9o .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uL78CNok9o .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uL78CNok9o .carousel-control,
.cid-uL78CNok9o .close {
  background: #1b1b1b;
}
.cid-uL78CNok9o .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uL78CNok9o .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uL78CNok9o .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uL78CNok9o .carousel-control-next span {
  margin-left: 5px;
}
.cid-uL78CNok9o .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uL78CNok9o .close::before {
  content: '\e91a';
}
.cid-uL78CNok9o .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uL78CNok9o .carousel-control {
  display: flex;
  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-uL78CNok9o .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uL78CNok9o .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uL78CNok9o .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uL78CNok9o .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uL78CNok9o .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-uL78CNok9o .carousel-indicators li.active,
.cid-uL78CNok9o .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uL78CNok9o .carousel-indicators li::after,
.cid-uL78CNok9o .carousel-indicators li::before {
  content: none;
}
.cid-uL78CNok9o .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uL78CNok9o .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uL78CNok9o .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uL78CNok9o .carousel-indicators {
    display: none;
  }
}
.cid-uL78CNok9o .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uL78CNok9o .carousel-inner > .active {
  display: block;
}
.cid-uL78CNok9o .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uL78CNok9o .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uL78CNok9o .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uL78CNok9o .carousel-control,
  .cid-uL78CNok9o .carousel-indicators,
  .cid-uL78CNok9o .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uL78CNok9o .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uL78CNok9o .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uL78CNok9o .carousel-indicators .active,
.cid-uL78CNok9o .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uL78CNok9o .carousel-indicators .active {
  background: #fff;
}
.cid-uL78CNok9o .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uL78CNok9o .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uL78CNok9o .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uL78CNok9o .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uL78CNok9o .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uL78CNok9o .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uL78CNok9o .carousel {
  width: 100%;
}
.cid-uL78CNok9o .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uL78CNok9o .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uL78CNok9o .modal.fade .modal-dialog,
.cid-uL78CNok9o .modal.in .modal-dialog {
  transform: none;
}
.cid-uL78CNok9o .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uL78CNok9o H6 {
  text-align: center;
}
.cid-uL72OMp1KF {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uL72OMp1KF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL72OMp1KF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL72OMp1KF .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uL72OMp1KF .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uL72OMp1KF .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uL72OMp1KF .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uL72OMp1KF .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uL72OMp1KF .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uL72OMp1KF .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uL72OMp1KF .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uL72OMp1KF .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uL72OMp1KF .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uL72OMp1KF .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uL72OMp1KF .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uL72OMp1KF .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uL72OMp1KF .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL72OMp1KF .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL72OMp1KF .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uL72OMY0MX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uL72OMY0MX .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uL72OMY0MX .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uL72OMY0MX .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uL72OMY0MX .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uL72OMY0MX .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uL72OMY0MX .social_icons {
  text-align: center;
}
.cid-uL72OMY0MX .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uL72OMY0MX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uL72OMY0MX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL72OMY0MX .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uL72OMY0MX .footer_timework {
    margin-top: 50px;
  }
  .cid-uL72OMY0MX .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uLp1tWQY1d {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uLp1tWQY1d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uLp1tWQY1d .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uLp1tWQY1d .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLp1tWQY1d .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uLp1tWQY1d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLp1tWQY1d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLp1tWQY1d .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uLp1tWQY1d .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uLp1tWQY1d .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uLp1tWQY1d .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uLp1tWQY1d .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uLp1tWQY1d .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uLp1tWQY1d .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uLp1tWQY1d .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uLp1tWQY1d .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uLp1tWQY1d .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uLp1tWQY1d .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uLp1tWQY1d .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uLp1tWQY1d .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uLp1tWQY1d .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uLp1tWQY1d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uLp1tWQY1d .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uLp1tWQY1d .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uLp1tWQY1d .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uLp1tWQY1d .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLp1tWQY1d .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uLp1tWQY1d .nav-item:focus,
.cid-uLp1tWQY1d .nav-link:focus {
  outline: none;
}
.cid-uLp1tWQY1d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLp1tWQY1d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLp1tWQY1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLp1tWQY1d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLp1tWQY1d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLp1tWQY1d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLp1tWQY1d .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uLp1tWQY1d .navbar.opened {
  transition: all 0.3s;
}
.cid-uLp1tWQY1d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLp1tWQY1d .navbar .navbar-logo img {
  width: auto;
}
.cid-uLp1tWQY1d .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uLp1tWQY1d .navbar.collapsed {
  justify-content: center;
}
.cid-uLp1tWQY1d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLp1tWQY1d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLp1tWQY1d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uLp1tWQY1d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLp1tWQY1d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLp1tWQY1d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uLp1tWQY1d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLp1tWQY1d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLp1tWQY1d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uLp1tWQY1d .navbar {
    min-height: 72px;
  }
  .cid-uLp1tWQY1d .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uLp1tWQY1d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLp1tWQY1d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLp1tWQY1d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLp1tWQY1d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLp1tWQY1d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uLp1tWQY1d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLp1tWQY1d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uLp1tWQY1d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLp1tWQY1d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLp1tWQY1d .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uLp1tWQY1d .dropdown-item.active,
.cid-uLp1tWQY1d .dropdown-item:active {
  background-color: transparent;
}
.cid-uLp1tWQY1d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLp1tWQY1d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLp1tWQY1d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLp1tWQY1d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uLp1tWQY1d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uLp1tWQY1d .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uLp1tWQY1d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLp1tWQY1d .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uLp1tWQY1d .navbar-buttons {
    text-align: left;
  }
}
.cid-uLp1tWQY1d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLp1tWQY1d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLp1tWQY1d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLp1tWQY1d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLp1tWQY1d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLp1tWQY1d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLp1tWQY1d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLp1tWQY1d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLp1tWQY1d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLp1tWQY1d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLp1tWQY1d .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLp1tWQY1d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLp1tWQY1d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLp1tWQY1d .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLp1tWQY1d .navbar {
    height: 70px;
  }
  .cid-uLp1tWQY1d .navbar.opened {
    height: auto;
  }
  .cid-uLp1tWQY1d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uLp1tWQY1d .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uLp1tWQY1d .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uLp1tWQY1d .navbar-brand {
    margin-right: auto;
  }
  .cid-uLp1tWQY1d .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uLp1tWQY1d .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uLp1tWQY1d .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uLp1tWQY1d .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLp1tWQY1d .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uLp1tWQY1d .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLp1tYMGXJ {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLp1tYMGXJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp1tYMGXJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLp1tYMGXJ .mbr-section-title,
.cid-uLp1tYMGXJ .mbr-text,
.cid-uLp1tYMGXJ .mbr-section-btn {
  text-align: center;
}
.cid-uLp1tYMGXJ .video-wrapper {
  margin: auto;
}
.cid-uLp1tYMGXJ .video-wrapper iframe {
  width: 100%;
}
.cid-uLp1tYMGXJ .mbr-section-title {
  color: #22a5e5;
}
.cid-uLp1tZhNh4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/julia-wierzbicka-2-2000x1600.jpg");
}
.cid-uLp1tZhNh4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp1tZhNh4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLp1u3soRI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uLp1u3soRI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLp1u3soRI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLp1u3soRI .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uLp1u3soRI .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uLp1u3soRI .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uLp1u3soRI .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLp1u3soRI .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLp1u3soRI .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uLp1u3soRI .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uLp1u3soRI .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uLp1u3soRI .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uLp1u3soRI .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uLp1u3soRI .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uLp1u3soRI .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uLp1u3soRI .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uLp1u3soRI .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLp1u3soRI .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLp1u3soRI .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLp1u48B33 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uLp1u48B33 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uLp1u48B33 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uLp1u48B33 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uLp1u48B33 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uLp1u48B33 .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uLp1u48B33 .social_icons {
  text-align: center;
}
.cid-uLp1u48B33 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uLp1u48B33 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uLp1u48B33 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLp1u48B33 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uLp1u48B33 .footer_timework {
    margin-top: 50px;
  }
  .cid-uLp1u48B33 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uLAnX5cw57 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uLAnX5cw57 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uLAnX5cw57 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uLAnX5cw57 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uLAnX5cw57 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uLAnX5cw57 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uLAnX5cw57 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLAnX5cw57 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uLAnX5cw57 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uLAnX5cw57 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uLAnX5cw57 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uLAnX5cw57 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uLAnX5cw57 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uLAnX5cw57 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uLAnX5cw57 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uLAnX5cw57 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uLAnX5cw57 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uLAnX5cw57 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uLAnX5cw57 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uLAnX5cw57 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uLAnX5cw57 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uLAnX5cw57 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uLAnX5cw57 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uLAnX5cw57 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uLAnX5cw57 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uLAnX5cw57 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uLAnX5cw57 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uLAnX5cw57 .nav-item:focus,
.cid-uLAnX5cw57 .nav-link:focus {
  outline: none;
}
.cid-uLAnX5cw57 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLAnX5cw57 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLAnX5cw57 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLAnX5cw57 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLAnX5cw57 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLAnX5cw57 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLAnX5cw57 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uLAnX5cw57 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLAnX5cw57 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uLAnX5cw57 .navbar .navbar-logo img {
  width: auto;
}
.cid-uLAnX5cw57 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uLAnX5cw57 .navbar.collapsed {
  justify-content: center;
}
.cid-uLAnX5cw57 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLAnX5cw57 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uLAnX5cw57 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uLAnX5cw57 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLAnX5cw57 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLAnX5cw57 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uLAnX5cw57 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLAnX5cw57 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uLAnX5cw57 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uLAnX5cw57 .navbar {
    min-height: 72px;
  }
  .cid-uLAnX5cw57 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uLAnX5cw57 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLAnX5cw57 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLAnX5cw57 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLAnX5cw57 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uLAnX5cw57 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uLAnX5cw57 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uLAnX5cw57 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uLAnX5cw57 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLAnX5cw57 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uLAnX5cw57 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uLAnX5cw57 .dropdown-item.active,
.cid-uLAnX5cw57 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLAnX5cw57 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLAnX5cw57 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLAnX5cw57 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLAnX5cw57 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uLAnX5cw57 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uLAnX5cw57 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uLAnX5cw57 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uLAnX5cw57 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uLAnX5cw57 .navbar-buttons {
    text-align: left;
  }
}
.cid-uLAnX5cw57 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uLAnX5cw57 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uLAnX5cw57 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLAnX5cw57 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLAnX5cw57 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLAnX5cw57 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLAnX5cw57 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLAnX5cw57 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLAnX5cw57 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLAnX5cw57 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLAnX5cw57 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uLAnX5cw57 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uLAnX5cw57 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uLAnX5cw57 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLAnX5cw57 .navbar {
    height: 70px;
  }
  .cid-uLAnX5cw57 .navbar.opened {
    height: auto;
  }
  .cid-uLAnX5cw57 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uLAnX5cw57 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uLAnX5cw57 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uLAnX5cw57 .navbar-brand {
    margin-right: auto;
  }
  .cid-uLAnX5cw57 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uLAnX5cw57 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uLAnX5cw57 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uLAnX5cw57 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uLAnX5cw57 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uLAnX5cw57 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uLAnX6Krtq {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/boat1.jpg-1600x900.jpg");
}
.cid-uLAnX6Krtq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLAnX6Krtq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLAnX6Krtq .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1440px) {
  .cid-uLAnX6Krtq .container-fluid {
    padding: 0 48px;
  }
}
@media (max-width: 992px) {
  .cid-uLAnX6Krtq .container-fluid {
    padding: 0 20px;
  }
}
.cid-uLAnX6Krtq .container {
  height: 90vh;
}
@media (max-width: 992px) {
  .cid-uLAnX6Krtq .container {
    padding: 0 20px;
  }
}
.cid-uLAnX6Krtq .row {
  height: 100%;
}
.cid-uLAnX6Krtq .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uLAnX6Krtq .content-wrapper .title-wrapper {
  margin-bottom: 40px;
}
.cid-uLAnX6Krtq .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 56px;
}
@media (max-width: 1440px) {
  .cid-uLAnX6Krtq .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uLAnX6Krtq .content-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uLAnX6Krtq .mbr-section-title {
  color: #ffffff;
}
.cid-uLAnX6Krtq .mbr-desc {
  color: #ffffff;
}
.cid-uLAnX6Krtq .mbr-section-title,
.cid-uLAnX6Krtq .mbr-section-btn {
  text-align: center;
}
.cid-uLAnX7uvZD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLAnX7uvZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLAnX7uvZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcJhr4QyU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f2f1f3;
}
.cid-uNcJhr4QyU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcJhr4QyU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcJhr4QyU .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uNcJhr4QyU .label-wrapper .mbr-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #ffffff;
  margin-bottom: 0;
}
.cid-uNcJhr4QyU .mbr-section-title {
  margin-bottom: 80px;
  color: #19171c;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uNcJhr4QyU .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-uNcJhr4QyU .items-wrapper .item {
  padding: 0 10px;
}
.cid-uNcJhr4QyU .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item {
    margin-bottom: 20px;
  }
}
.cid-uNcJhr4QyU .item .item-wrapper {
  padding: 60px 40px;
  background-color: #ffffff;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item .item-wrapper {
    padding: 20px 20px 40px;
  }
}
.cid-uNcJhr4QyU .item .item-wrapper .item-img {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item .item-wrapper .item-img {
    margin-bottom: 40px;
  }
}
.cid-uNcJhr4QyU .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  box-shadow: 5px 30px 50px 0 #eeeeee;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item .item-wrapper .item-img img {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item .item-wrapper .item-img img {
    box-shadow: none;
  }
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .item-title_1,
.cid-uNcJhr4QyU .item .item-wrapper .item-content .item-title_2,
.cid-uNcJhr4QyU .item .item-wrapper .item-content .item-title_3 {
  margin-bottom: 20px;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .item-price {
  margin-bottom: 20px;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .mbr-section-btn {
  width: 100%;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .mbr-section-btn .btn {
  width: 100%;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list {
  padding: 0;
  margin: 40px 0 0 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uNcJhr4QyU .item .item-wrapper .item-content .list {
    margin: 20px 0 0 0;
  }
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list .item-wrap {
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  padding-left: 36px;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  width: 20px;
  height: 20px;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list_1 .item-wrap::before {
  color: #6e6e73;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list_2 .item-wrap::before {
  color: #47b5ed;
}
.cid-uNcJhr4QyU .item .item-wrapper .item-content .list_3 .item-wrap::before {
  color: #47b5ed;
}
.cid-uNcJhr4QyU .mbr-label,
.cid-uNcJhr4QyU .label-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-uNcJhr4QyU .item-title_1 {
  color: #47b5ed;
  text-align: center;
}
.cid-uNcJhr4QyU .item-title_2 {
  color: #47b5ed;
  text-align: center;
}
.cid-uNcJhr4QyU .item-title_3 {
  color: #47b5ed;
  text-align: center;
}
.cid-uNcJhr4QyU .item-price {
  color: #19171c;
}
.cid-uNcJhr4QyU .list {
  color: #19171c;
}
.cid-uNcJhr4QyU .item-price,
.cid-uNcJhr4QyU .mbr-section-btn {
  text-align: center;
}
.cid-uLAnX8lsQu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #edefeb;
}
.cid-uLAnX8lsQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLAnX8lsQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uLAnX8lsQu .container-fluid {
    padding: 0;
  }
}
.cid-uLAnX8lsQu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 490px;
  max-width: 490px;
}
@media (max-width: 768px) {
  .cid-uLAnX8lsQu .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uLAnX8lsQu .embla__button--next,
.cid-uLAnX8lsQu .embla__button--prev {
  display: flex;
}
.cid-uLAnX8lsQu .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uLAnX8lsQu .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uLAnX8lsQu .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLAnX8lsQu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uLAnX8lsQu .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLAnX8lsQu .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLAnX8lsQu .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLAnX8lsQu .embla {
  position: relative;
  width: 100%;
}
.cid-uLAnX8lsQu .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uLAnX8lsQu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uLAnX8lsQu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uLAnX8lsQu .embla__slide a {
  cursor: grab;
}
.cid-uLAnX8lsQu .embla__slide a:active {
  cursor: grabbing;
}
.cid-uLAnX8lsQu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uLAnX8lsQu .item-menu-overlay {
  border-radius: 2rem;
}
.cid-uLAnX8lsQu .mbr-section-title {
  color: #232323;
}
.cid-uLAnX8lsQu .mbr-section-subtitle {
  color: #232323;
}
.cid-uLAnX8lsQu .mbr-box {
  color: #ffffff;
}
.cid-uLAnX8lsQu .slide-content {
  position: relative;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uLAnX8lsQu img,
.cid-uLAnX8lsQu .item-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uLAnX8lsQu .item-wrapper {
  position: relative;
}
.cid-uLAnX8lsQu .content-head {
  max-width: 800px;
}
.cid-uLAnX8WNpl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uLAnX8WNpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLAnX8WNpl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLAnX8WNpl .card-wrapper {
  background: #47b5ed;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uLAnX8WNpl .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uLAnX8WNpl .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uLAnX8WNpl .card-wrapper {
    padding: 4rem;
  }
}
.cid-uLAnX8WNpl .mbr-text,
.cid-uLAnX8WNpl .mbr-section-btn {
  color: #ffffff;
}
.cid-uLAnX8WNpl .card-title,
.cid-uLAnX8WNpl .card-box {
  text-align: center;
}
.cid-uNcGn1HgGg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uNcGn1HgGg .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uNcGn1HgGg H4 {
  text-align: center;
}
.cid-uNcGkCVZcy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uNcGkCVZcy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNcGkCVZcy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNcGkCVZcy .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
}
.cid-uNcGkCVZcy .currentcost {
  color: #232323;
}
.cid-uNcGkCVZcy .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uNcGkCVZcy .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uNcGkCVZcy .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNcGkCVZcy .text-box {
    padding: 1rem;
  }
}
.cid-uNcGkCVZcy .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uLAnX9Rpkh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #22a5e5;
}
.cid-uLAnX9Rpkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLAnX9Rpkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLAnX9Rpkh .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #9fdbf8;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uLAnX9Rpkh .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uLAnX9Rpkh .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9fdbf8;
  opacity: .5;
}
.cid-uLAnX9Rpkh .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uLAnX9Rpkh .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uLAnX9Rpkh .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uLAnX9Rpkh .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uLAnX9Rpkh .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uLAnX9Rpkh .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #bcfe1e;
}
@media (max-width: 992px) {
  .cid-uLAnX9Rpkh .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uLAnX9Rpkh .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uLAnX9Rpkh .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uLAnX9Rpkh .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uLAnX9Rpkh .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLAnX9Rpkh .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLAnX9Rpkh .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLAnXalaWm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uLAnXalaWm .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uLAnXalaWm .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uLAnXalaWm .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uLAnXalaWm .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uLAnXalaWm .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uLAnXalaWm .social_icons {
  text-align: center;
}
.cid-uLAnXalaWm .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uLAnXalaWm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uLAnXalaWm .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLAnXalaWm .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uLAnXalaWm .footer_timework {
    margin-top: 50px;
  }
  .cid-uLAnXalaWm .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uLAnXaVh4L P {
  color: #1281fc;
}
.cid-uLAnXaVh4L DIV {
  color: #ffffff;
}
.cid-uLAnXaVh4L H10 {
  color: #034e75;
}
.cid-uLAnXaVh4L .hidden {
  display: none;
}
.cid-uLAnXaVh4L .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uLAnXaVh4L .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uLAnXaVh4L .icon-bar a:hover {
  background-color: #000000;
}
.cid-uLAnXaVh4L .flag {
  background: transparent;
}
.cid-uLAnXaVh4L .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uLAnXaVh4L .nav-right {
  float: left !important;
  position: relative;
}
.cid-uLAnXaVh4L #google_translate_element {
  display: none;
}
.cid-uLAnXaVh4L .goog-te-banner {
  display: none;
}
.cid-uLAnXaVh4L .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uLAnXaVh4L .goog-te-spinner-pos {
  display: none !important;
}
.cid-uLAnXaVh4L body {
  top: 0px !important;
}
.cid-uLAnXaVh4L body body {
  top: 0 !important;
}
.cid-uLAnXaVh4L body .goog-te-banner-frame {
  display: none !important;
}
.cid-uLAnXaVh4L .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uLAnXaVh4L .goog-tooltip {
  display: none !important;
}
.cid-uLAnXaVh4L .goog-tooltip:hover {
  display: none !important;
}
.cid-uLAnXaVh4L .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uLAnXaVh4L #goog-gt-tt,
.cid-uLAnXaVh4L .goog-te-balloon-frame {
  display: none !important;
}
.cid-uLAnXaVh4L #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uLAnXaVh4L .goog-logo-link {
  display: none !important;
}
.cid-uLAnXaVh4L .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uLAnXaVh4L div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uLAnXaVh4L div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uMJ6g8lnH6 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uMJ6g8lnH6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uMJ6g8lnH6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMJ6g8lnH6 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uMJ6g8lnH6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMJ6g8lnH6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMJ6g8lnH6 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uMJ6g8lnH6 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uMJ6g8lnH6 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uMJ6g8lnH6 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uMJ6g8lnH6 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uMJ6g8lnH6 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uMJ6g8lnH6 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uMJ6g8lnH6 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMJ6g8lnH6 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uMJ6g8lnH6 .nav-item:focus,
.cid-uMJ6g8lnH6 .nav-link:focus {
  outline: none;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMJ6g8lnH6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMJ6g8lnH6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMJ6g8lnH6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMJ6g8lnH6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMJ6g8lnH6 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uMJ6g8lnH6 .navbar.collapsed {
  justify-content: center;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMJ6g8lnH6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMJ6g8lnH6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar {
    min-height: 72px;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMJ6g8lnH6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMJ6g8lnH6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMJ6g8lnH6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ6g8lnH6 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uMJ6g8lnH6 .dropdown-item.active,
.cid-uMJ6g8lnH6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMJ6g8lnH6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMJ6g8lnH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uMJ6g8lnH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uMJ6g8lnH6 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uMJ6g8lnH6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMJ6g8lnH6 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-buttons {
    text-align: left;
  }
}
.cid-uMJ6g8lnH6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMJ6g8lnH6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMJ6g8lnH6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMJ6g8lnH6 .navbar {
    height: 70px;
  }
  .cid-uMJ6g8lnH6 .navbar.opened {
    height: auto;
  }
  .cid-uMJ6g8lnH6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uMJ6g8lnH6 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uMJ6g8lnH6 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uMJ6g8lnH6 .navbar-brand {
    margin-right: auto;
  }
  .cid-uMJ6g8lnH6 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uMJ6g8lnH6 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uMJ6g8lnH6 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uMJ6g9EgCF {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMJ6g9EgCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ6g9EgCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ6g9EgCF .mbr-section-title,
.cid-uMJ6g9EgCF .mbr-text,
.cid-uMJ6g9EgCF .mbr-section-btn {
  text-align: center;
}
.cid-uMJ6g9EgCF .video-wrapper {
  margin: auto;
}
.cid-uMJ6g9EgCF .video-wrapper iframe {
  width: 100%;
}
.cid-uMJ6g9EgCF .mbr-section-title {
  color: #22a5e5;
}
.cid-uMJ6gabCVX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/roman-fila-web-1-2000x1600.jpeg");
}
.cid-uMJ6gabCVX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ6gabCVX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ6jfbvfj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMJ6jfbvfj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ6jfbvfj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ6jfbvfj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMJ6jfbvfj .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMJ6jfbvfj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMJ6jfbvfj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMJ6jfbvfj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMJ6jfbvfj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMJ6jfbvfj .carousel-control,
.cid-uMJ6jfbvfj .close {
  background: #1b1b1b;
}
.cid-uMJ6jfbvfj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMJ6jfbvfj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMJ6jfbvfj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMJ6jfbvfj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMJ6jfbvfj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMJ6jfbvfj .close::before {
  content: '\e91a';
}
.cid-uMJ6jfbvfj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMJ6jfbvfj .carousel-control {
  display: flex;
  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-uMJ6jfbvfj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMJ6jfbvfj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMJ6jfbvfj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMJ6jfbvfj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMJ6jfbvfj .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-uMJ6jfbvfj .carousel-indicators li.active,
.cid-uMJ6jfbvfj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMJ6jfbvfj .carousel-indicators li::after,
.cid-uMJ6jfbvfj .carousel-indicators li::before {
  content: none;
}
.cid-uMJ6jfbvfj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMJ6jfbvfj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMJ6jfbvfj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMJ6jfbvfj .carousel-indicators {
    display: none;
  }
}
.cid-uMJ6jfbvfj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMJ6jfbvfj .carousel-inner > .active {
  display: block;
}
.cid-uMJ6jfbvfj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMJ6jfbvfj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMJ6jfbvfj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMJ6jfbvfj .carousel-control,
  .cid-uMJ6jfbvfj .carousel-indicators,
  .cid-uMJ6jfbvfj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMJ6jfbvfj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMJ6jfbvfj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMJ6jfbvfj .carousel-indicators .active,
.cid-uMJ6jfbvfj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMJ6jfbvfj .carousel-indicators .active {
  background: #fff;
}
.cid-uMJ6jfbvfj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMJ6jfbvfj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMJ6jfbvfj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMJ6jfbvfj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMJ6jfbvfj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMJ6jfbvfj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMJ6jfbvfj .carousel {
  width: 100%;
}
.cid-uMJ6jfbvfj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMJ6jfbvfj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMJ6jfbvfj .modal.fade .modal-dialog,
.cid-uMJ6jfbvfj .modal.in .modal-dialog {
  transform: none;
}
.cid-uMJ6jfbvfj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMJ6jfbvfj H6 {
  text-align: center;
}
.cid-uMJ6gavYQ5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMJ6gavYQ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ6gavYQ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ6gavYQ5 .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uMJ6gavYQ5 .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uMJ6gavYQ5 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uMJ6gavYQ5 .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMJ6gavYQ5 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMJ6gavYQ5 .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uMJ6gavYQ5 .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uMJ6gavYQ5 .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uMJ6gavYQ5 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ6gavYQ5 .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ6gavYQ5 .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ6gaYpwU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uMJ6gaYpwU .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uMJ6gaYpwU .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uMJ6gaYpwU .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uMJ6gaYpwU .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ6gaYpwU .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ6gaYpwU .social_icons {
  text-align: center;
}
.cid-uMJ6gaYpwU .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uMJ6gaYpwU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMJ6gaYpwU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMJ6gaYpwU .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uMJ6gaYpwU .footer_timework {
    margin-top: 50px;
  }
  .cid-uMJ6gaYpwU .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uMJ7FrNqyY {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uMJ7FrNqyY .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uMJ7FrNqyY .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uMJ7FrNqyY .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMJ7FrNqyY .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uMJ7FrNqyY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMJ7FrNqyY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMJ7FrNqyY .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uMJ7FrNqyY .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uMJ7FrNqyY .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uMJ7FrNqyY .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uMJ7FrNqyY .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uMJ7FrNqyY .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uMJ7FrNqyY .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uMJ7FrNqyY .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uMJ7FrNqyY .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uMJ7FrNqyY .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uMJ7FrNqyY .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uMJ7FrNqyY .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uMJ7FrNqyY .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uMJ7FrNqyY .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ7FrNqyY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uMJ7FrNqyY .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uMJ7FrNqyY .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMJ7FrNqyY .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uMJ7FrNqyY .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMJ7FrNqyY .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uMJ7FrNqyY .nav-item:focus,
.cid-uMJ7FrNqyY .nav-link:focus {
  outline: none;
}
.cid-uMJ7FrNqyY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMJ7FrNqyY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMJ7FrNqyY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMJ7FrNqyY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMJ7FrNqyY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMJ7FrNqyY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMJ7FrNqyY .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uMJ7FrNqyY .navbar.opened {
  transition: all 0.3s;
}
.cid-uMJ7FrNqyY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMJ7FrNqyY .navbar .navbar-logo img {
  width: auto;
}
.cid-uMJ7FrNqyY .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uMJ7FrNqyY .navbar.collapsed {
  justify-content: center;
}
.cid-uMJ7FrNqyY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMJ7FrNqyY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMJ7FrNqyY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMJ7FrNqyY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMJ7FrNqyY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMJ7FrNqyY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMJ7FrNqyY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMJ7FrNqyY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMJ7FrNqyY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uMJ7FrNqyY .navbar {
    min-height: 72px;
  }
  .cid-uMJ7FrNqyY .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMJ7FrNqyY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMJ7FrNqyY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMJ7FrNqyY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uMJ7FrNqyY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMJ7FrNqyY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ7FrNqyY .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uMJ7FrNqyY .dropdown-item.active,
.cid-uMJ7FrNqyY .dropdown-item:active {
  background-color: transparent;
}
.cid-uMJ7FrNqyY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMJ7FrNqyY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMJ7FrNqyY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMJ7FrNqyY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uMJ7FrNqyY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uMJ7FrNqyY .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uMJ7FrNqyY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMJ7FrNqyY .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uMJ7FrNqyY .navbar-buttons {
    text-align: left;
  }
}
.cid-uMJ7FrNqyY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMJ7FrNqyY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMJ7FrNqyY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMJ7FrNqyY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ7FrNqyY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ7FrNqyY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMJ7FrNqyY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ7FrNqyY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMJ7FrNqyY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMJ7FrNqyY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ7FrNqyY .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMJ7FrNqyY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMJ7FrNqyY .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uMJ7FrNqyY .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMJ7FrNqyY .navbar {
    height: 70px;
  }
  .cid-uMJ7FrNqyY .navbar.opened {
    height: auto;
  }
  .cid-uMJ7FrNqyY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uMJ7FrNqyY .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uMJ7FrNqyY .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uMJ7FrNqyY .navbar-brand {
    margin-right: auto;
  }
  .cid-uMJ7FrNqyY .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uMJ7FrNqyY .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uMJ7FrNqyY .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uMJ7FrNqyY .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ7FrNqyY .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uMJ7FrNqyY .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uMJ7FtvXCf {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMJ7FtvXCf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ7FtvXCf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ7FtvXCf .mbr-section-title,
.cid-uMJ7FtvXCf .mbr-text,
.cid-uMJ7FtvXCf .mbr-section-btn {
  text-align: center;
}
.cid-uMJ7FtvXCf .video-wrapper {
  margin: auto;
}
.cid-uMJ7FtvXCf .video-wrapper iframe {
  width: 100%;
}
.cid-uMJ7FtvXCf .mbr-section-title {
  color: #22a5e5;
}
.cid-uMJ7Fu22KA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/katarzyna-biaka-web-62-2000x1600.jpeg");
}
.cid-uMJ7Fu22KA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ7Fu22KA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ7MZXmxO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMJ7MZXmxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ7MZXmxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ7MZXmxO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMJ7MZXmxO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMJ7MZXmxO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMJ7MZXmxO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMJ7MZXmxO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMJ7MZXmxO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMJ7MZXmxO .carousel-control,
.cid-uMJ7MZXmxO .close {
  background: #1b1b1b;
}
.cid-uMJ7MZXmxO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMJ7MZXmxO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMJ7MZXmxO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMJ7MZXmxO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMJ7MZXmxO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMJ7MZXmxO .close::before {
  content: '\e91a';
}
.cid-uMJ7MZXmxO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMJ7MZXmxO .carousel-control {
  display: flex;
  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-uMJ7MZXmxO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMJ7MZXmxO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMJ7MZXmxO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMJ7MZXmxO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMJ7MZXmxO .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-uMJ7MZXmxO .carousel-indicators li.active,
.cid-uMJ7MZXmxO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMJ7MZXmxO .carousel-indicators li::after,
.cid-uMJ7MZXmxO .carousel-indicators li::before {
  content: none;
}
.cid-uMJ7MZXmxO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMJ7MZXmxO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMJ7MZXmxO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMJ7MZXmxO .carousel-indicators {
    display: none;
  }
}
.cid-uMJ7MZXmxO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMJ7MZXmxO .carousel-inner > .active {
  display: block;
}
.cid-uMJ7MZXmxO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMJ7MZXmxO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMJ7MZXmxO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMJ7MZXmxO .carousel-control,
  .cid-uMJ7MZXmxO .carousel-indicators,
  .cid-uMJ7MZXmxO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMJ7MZXmxO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMJ7MZXmxO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMJ7MZXmxO .carousel-indicators .active,
.cid-uMJ7MZXmxO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMJ7MZXmxO .carousel-indicators .active {
  background: #fff;
}
.cid-uMJ7MZXmxO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMJ7MZXmxO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMJ7MZXmxO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMJ7MZXmxO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMJ7MZXmxO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMJ7MZXmxO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMJ7MZXmxO .carousel {
  width: 100%;
}
.cid-uMJ7MZXmxO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMJ7MZXmxO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMJ7MZXmxO .modal.fade .modal-dialog,
.cid-uMJ7MZXmxO .modal.in .modal-dialog {
  transform: none;
}
.cid-uMJ7MZXmxO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMJ7MZXmxO H6 {
  text-align: center;
}
.cid-uMJ7FDbukK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMJ7FDbukK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMJ7FDbukK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMJ7FDbukK .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uMJ7FDbukK .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uMJ7FDbukK .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uMJ7FDbukK .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMJ7FDbukK .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMJ7FDbukK .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uMJ7FDbukK .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uMJ7FDbukK .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uMJ7FDbukK .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uMJ7FDbukK .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uMJ7FDbukK .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uMJ7FDbukK .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uMJ7FDbukK .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uMJ7FDbukK .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ7FDbukK .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ7FDbukK .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ7FDWTm9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uMJ7FDWTm9 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uMJ7FDWTm9 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uMJ7FDWTm9 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uMJ7FDWTm9 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ7FDWTm9 .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ7FDWTm9 .social_icons {
  text-align: center;
}
.cid-uMJ7FDWTm9 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uMJ7FDWTm9 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMJ7FDWTm9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMJ7FDWTm9 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uMJ7FDWTm9 .footer_timework {
    margin-top: 50px;
  }
  .cid-uMJ7FDWTm9 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uMNBk7IVJL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uMNBk7IVJL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uMNBk7IVJL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uMNBk7IVJL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMNBk7IVJL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uMNBk7IVJL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMNBk7IVJL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMNBk7IVJL .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uMNBk7IVJL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uMNBk7IVJL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uMNBk7IVJL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uMNBk7IVJL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uMNBk7IVJL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uMNBk7IVJL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uMNBk7IVJL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uMNBk7IVJL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uMNBk7IVJL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uMNBk7IVJL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uMNBk7IVJL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uMNBk7IVJL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uMNBk7IVJL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uMNBk7IVJL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uMNBk7IVJL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uMNBk7IVJL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNBk7IVJL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uMNBk7IVJL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMNBk7IVJL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uMNBk7IVJL .nav-item:focus,
.cid-uMNBk7IVJL .nav-link:focus {
  outline: none;
}
.cid-uMNBk7IVJL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMNBk7IVJL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMNBk7IVJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMNBk7IVJL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMNBk7IVJL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMNBk7IVJL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMNBk7IVJL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uMNBk7IVJL .navbar.opened {
  transition: all 0.3s;
}
.cid-uMNBk7IVJL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMNBk7IVJL .navbar .navbar-logo img {
  width: auto;
}
.cid-uMNBk7IVJL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uMNBk7IVJL .navbar.collapsed {
  justify-content: center;
}
.cid-uMNBk7IVJL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMNBk7IVJL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMNBk7IVJL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMNBk7IVJL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMNBk7IVJL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMNBk7IVJL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMNBk7IVJL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMNBk7IVJL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMNBk7IVJL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uMNBk7IVJL .navbar {
    min-height: 72px;
  }
  .cid-uMNBk7IVJL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNBk7IVJL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMNBk7IVJL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMNBk7IVJL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMNBk7IVJL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMNBk7IVJL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMNBk7IVJL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMNBk7IVJL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uMNBk7IVJL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMNBk7IVJL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMNBk7IVJL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uMNBk7IVJL .dropdown-item.active,
.cid-uMNBk7IVJL .dropdown-item:active {
  background-color: transparent;
}
.cid-uMNBk7IVJL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMNBk7IVJL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMNBk7IVJL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMNBk7IVJL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uMNBk7IVJL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uMNBk7IVJL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uMNBk7IVJL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMNBk7IVJL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uMNBk7IVJL .navbar-buttons {
    text-align: left;
  }
}
.cid-uMNBk7IVJL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMNBk7IVJL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMNBk7IVJL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMNBk7IVJL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNBk7IVJL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMNBk7IVJL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMNBk7IVJL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNBk7IVJL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMNBk7IVJL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMNBk7IVJL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMNBk7IVJL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMNBk7IVJL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMNBk7IVJL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uMNBk7IVJL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMNBk7IVJL .navbar {
    height: 70px;
  }
  .cid-uMNBk7IVJL .navbar.opened {
    height: auto;
  }
  .cid-uMNBk7IVJL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uMNBk7IVJL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uMNBk7IVJL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uMNBk7IVJL .navbar-brand {
    margin-right: auto;
  }
  .cid-uMNBk7IVJL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uMNBk7IVJL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uMNBk7IVJL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uMNBk7IVJL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMNBk7IVJL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uMNBk7IVJL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uMNBkapQcU {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMNBkapQcU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNBkapQcU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNBkapQcU .mbr-section-title,
.cid-uMNBkapQcU .mbr-text,
.cid-uMNBkapQcU .mbr-section-btn {
  text-align: center;
}
.cid-uMNBkapQcU .video-wrapper {
  margin: auto;
}
.cid-uMNBkapQcU .video-wrapper iframe {
  width: 100%;
}
.cid-uMNBkapQcU .mbr-section-title {
  color: #22a5e5;
}
.cid-uMNBkbelU8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/paulina-ciepa-web-58-2000x1600.jpeg");
}
.cid-uMNBkbelU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNBkbelU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNBM4sfKk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMNBM4sfKk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNBM4sfKk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNBM4sfKk .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uMNBM4sfKk .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uMNBM4sfKk .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uMNBM4sfKk .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uMNBM4sfKk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uMNBM4sfKk .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uMNBM4sfKk .carousel-control,
.cid-uMNBM4sfKk .close {
  background: #1b1b1b;
}
.cid-uMNBM4sfKk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uMNBM4sfKk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uMNBM4sfKk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uMNBM4sfKk .carousel-control-next span {
  margin-left: 5px;
}
.cid-uMNBM4sfKk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uMNBM4sfKk .close::before {
  content: '\e91a';
}
.cid-uMNBM4sfKk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uMNBM4sfKk .carousel-control {
  display: flex;
  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-uMNBM4sfKk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNBM4sfKk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMNBM4sfKk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uMNBM4sfKk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uMNBM4sfKk .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-uMNBM4sfKk .carousel-indicators li.active,
.cid-uMNBM4sfKk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uMNBM4sfKk .carousel-indicators li::after,
.cid-uMNBM4sfKk .carousel-indicators li::before {
  content: none;
}
.cid-uMNBM4sfKk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uMNBM4sfKk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uMNBM4sfKk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uMNBM4sfKk .carousel-indicators {
    display: none;
  }
}
.cid-uMNBM4sfKk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uMNBM4sfKk .carousel-inner > .active {
  display: block;
}
.cid-uMNBM4sfKk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uMNBM4sfKk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uMNBM4sfKk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uMNBM4sfKk .carousel-control,
  .cid-uMNBM4sfKk .carousel-indicators,
  .cid-uMNBM4sfKk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uMNBM4sfKk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uMNBM4sfKk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uMNBM4sfKk .carousel-indicators .active,
.cid-uMNBM4sfKk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uMNBM4sfKk .carousel-indicators .active {
  background: #fff;
}
.cid-uMNBM4sfKk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uMNBM4sfKk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uMNBM4sfKk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uMNBM4sfKk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uMNBM4sfKk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uMNBM4sfKk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uMNBM4sfKk .carousel {
  width: 100%;
}
.cid-uMNBM4sfKk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uMNBM4sfKk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uMNBM4sfKk .modal.fade .modal-dialog,
.cid-uMNBM4sfKk .modal.in .modal-dialog {
  transform: none;
}
.cid-uMNBM4sfKk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uMNBM4sfKk H6 {
  text-align: center;
}
.cid-uMNBkf29sC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uMNBkf29sC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMNBkf29sC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMNBkf29sC .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uMNBkf29sC .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uMNBkf29sC .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uMNBkf29sC .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uMNBkf29sC .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uMNBkf29sC .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uMNBkf29sC .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uMNBkf29sC .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uMNBkf29sC .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uMNBkf29sC .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uMNBkf29sC .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uMNBkf29sC .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uMNBkf29sC .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uMNBkf29sC .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNBkf29sC .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uMNBkf29sC .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMNBkfzXPX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uMNBkfzXPX .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uMNBkfzXPX .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uMNBkfzXPX .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uMNBkfzXPX .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uMNBkfzXPX .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uMNBkfzXPX .social_icons {
  text-align: center;
}
.cid-uMNBkfzXPX .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uMNBkfzXPX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMNBkfzXPX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMNBkfzXPX .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uMNBkfzXPX .footer_timework {
    margin-top: 50px;
  }
  .cid-uMNBkfzXPX .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uMJ6g8lnH6 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uMJ6g8lnH6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uMJ6g8lnH6 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMJ6g8lnH6 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uMJ6g8lnH6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMJ6g8lnH6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMJ6g8lnH6 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uMJ6g8lnH6 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uMJ6g8lnH6 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uMJ6g8lnH6 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uMJ6g8lnH6 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uMJ6g8lnH6 .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uMJ6g8lnH6 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uMJ6g8lnH6 .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uMJ6g8lnH6 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uMJ6g8lnH6 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uMJ6g8lnH6 .nav-item:focus,
.cid-uMJ6g8lnH6 .nav-link:focus {
  outline: none;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMJ6g8lnH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMJ6g8lnH6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMJ6g8lnH6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMJ6g8lnH6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uMJ6g8lnH6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uMJ6g8lnH6 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uMJ6g8lnH6 .navbar.collapsed {
  justify-content: center;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMJ6g8lnH6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uMJ6g8lnH6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uMJ6g8lnH6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uMJ6g8lnH6 .navbar {
    min-height: 72px;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uMJ6g8lnH6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMJ6g8lnH6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uMJ6g8lnH6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMJ6g8lnH6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uMJ6g8lnH6 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uMJ6g8lnH6 .dropdown-item.active,
.cid-uMJ6g8lnH6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMJ6g8lnH6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMJ6g8lnH6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMJ6g8lnH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uMJ6g8lnH6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uMJ6g8lnH6 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uMJ6g8lnH6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uMJ6g8lnH6 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .navbar-buttons {
    text-align: left;
  }
}
.cid-uMJ6g8lnH6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMJ6g8lnH6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMJ6g8lnH6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMJ6g8lnH6 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uMJ6g8lnH6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uMJ6g8lnH6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uMJ6g8lnH6 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMJ6g8lnH6 .navbar {
    height: 70px;
  }
  .cid-uMJ6g8lnH6 .navbar.opened {
    height: auto;
  }
  .cid-uMJ6g8lnH6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uMJ6g8lnH6 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uMJ6g8lnH6 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uMJ6g8lnH6 .navbar-brand {
    margin-right: auto;
  }
  .cid-uMJ6g8lnH6 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uMJ6g8lnH6 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uMJ6g8lnH6 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uMJ6g8lnH6 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uMJ6g8lnH6 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uMOkq05RqJ {
  background-image: url("../../../assets/images/background8.jpg");
}
.cid-uMOkq05RqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMOkq05RqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMOkq05RqJ .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uMOkq05RqJ .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uMOkq05RqJ .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uMOkq05RqJ .mbr-text {
  color: #ffffff;
}
.cid-uMOkq05RqJ .card {
  padding-bottom: 1.5rem;
}
.cid-uMOkq05RqJ .item-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uMOkq05RqJ .item-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uMOkq05RqJ .item-wrapper .card-title {
  color: #ffffff;
}
.cid-uMSm9tWrD3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMSm9tWrD3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMSm9tWrD3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMSm9tWrD3 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uMSm9tWrD3 .mbr-section-title,
.cid-uMSm9tWrD3 .mbr-section-subtitle {
  text-align: center;
}
.cid-uMSm9tWrD3 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uMSm9tWrD3 .item-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uMSm9tWrD3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uMSm9tWrD3 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uMSm9tWrD3 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uMSm9tWrD3 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uMSm9tWrD3 .card-title {
  text-align: left;
}
.cid-uMSm9tWrD3 .mbr-text {
  text-align: center;
}
.cid-uMSm9tWrD3 .cost {
  text-align: left;
}
.cid-uMOnISTgof {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uMOnISTgof .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMOnISTgof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMOnISTgof .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uMOnISTgof .item {
    margin-bottom: 4rem;
  }
}
.cid-uMOnISTgof .item:last-child .icon-box:before {
  display: none;
}
.cid-uMOnISTgof .item.last .icon-box:before {
  display: none;
}
.cid-uMOnISTgof .icon-box {
  background: #6592e6;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uMOnISTgof .icon-box {
    margin-right: 1rem;
  }
}
.cid-uMOnISTgof .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: 50%;
  top: 120%;
  color: #6592e6;
  transform: translate(-50%, 0);
}
.cid-uMOnISTgof span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMOnISTgof .card {
    margin-bottom: 2rem;
  }
  .cid-uMOnISTgof .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uMOnISTgof .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uMOnISTgof .icon-box::before {
    top: 114%;
  }
}
.cid-uMOnISTgof .icon-text {
  text-align: center;
}
.cid-uMOnISTgof .icon-title {
  text-align: center;
}
.cid-uMOqWPzTOP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uMOqWPzTOP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMOqWPzTOP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMOqWPzTOP .oldcost {
  text-decoration: line-through;
  color: #e43f3f;
  text-align: center;
}
.cid-uMOqWPzTOP .currentcost {
  color: #232323;
  text-align: center;
}
.cid-uMOqWPzTOP .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMOqWPzTOP .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uMOqWPzTOP .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMOqWPzTOP .text-box {
    padding: 1rem;
  }
}
.cid-uMOqWPzTOP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMOqWPzTOP .mbr-text,
.cid-uMOqWPzTOP .cost,
.cid-uMOqWPzTOP .mbr-section-btn {
  text-align: center;
}
.cid-uMOqWPzTOP H5 {
  text-align: center;
}
.cid-uNbGIFXUPv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNbGIFXUPv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNbGIFXUPv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNbGIFXUPv ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uNbGIFXUPv li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uNbGIFXUPv ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6ec7f2;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uNbGIFXUPv H3 {
  text-align: center;
}
.cid-uNbGIFXUPv .list {
  text-align: left;
}
.cid-uNbHN6iOpl {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uNbHN6iOpl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uNbHN6iOpl form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uNbHN6iOpl form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-uNbHN6iOpl form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uNbIxquWow {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNbIxquWow .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNbIxquWow .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNbIxquWow .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #ffffff;
  background-color: #22a5e5;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNbIxquWow .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uNbIxquWow .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22a5e5;
  opacity: .5;
}
.cid-uNbIxquWow .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uNbIxquWow .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNbIxquWow .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uNbIxquWow .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uNbIxquWow .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uNbIxquWow .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #ffffff;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uNbIxquWow .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uNbIxquWow .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #ffffff;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uNbIxquWow .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uNbIxquWow .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uNbIxquWow .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNbIxquWow .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNbIxquWow .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMJ6gaYpwU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uMJ6gaYpwU .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uMJ6gaYpwU .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uMJ6gaYpwU .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uMJ6gaYpwU .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ6gaYpwU .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uMJ6gaYpwU .social_icons {
  text-align: center;
}
.cid-uMJ6gaYpwU .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uMJ6gaYpwU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uMJ6gaYpwU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMJ6gaYpwU .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uMJ6gaYpwU .footer_timework {
    margin-top: 50px;
  }
  .cid-uMJ6gaYpwU .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uNa1aiEhZo P {
  color: #1281fc;
}
.cid-uNa1aiEhZo DIV {
  color: #ffffff;
}
.cid-uNa1aiEhZo H10 {
  color: #034e75;
}
.cid-uNa1aiEhZo .hidden {
  display: none;
}
.cid-uNa1aiEhZo .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uNa1aiEhZo .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uNa1aiEhZo .icon-bar a:hover {
  background-color: #000000;
}
.cid-uNa1aiEhZo .flag {
  background: transparent;
}
.cid-uNa1aiEhZo .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uNa1aiEhZo .nav-right {
  float: left !important;
  position: relative;
}
.cid-uNa1aiEhZo #google_translate_element {
  display: none;
}
.cid-uNa1aiEhZo .goog-te-banner {
  display: none;
}
.cid-uNa1aiEhZo .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uNa1aiEhZo .goog-te-spinner-pos {
  display: none !important;
}
.cid-uNa1aiEhZo body {
  top: 0px !important;
}
.cid-uNa1aiEhZo body body {
  top: 0 !important;
}
.cid-uNa1aiEhZo body .goog-te-banner-frame {
  display: none !important;
}
.cid-uNa1aiEhZo .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uNa1aiEhZo .goog-tooltip {
  display: none !important;
}
.cid-uNa1aiEhZo .goog-tooltip:hover {
  display: none !important;
}
.cid-uNa1aiEhZo .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uNa1aiEhZo #goog-gt-tt,
.cid-uNa1aiEhZo .goog-te-balloon-frame {
  display: none !important;
}
.cid-uNa1aiEhZo #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uNa1aiEhZo .goog-logo-link {
  display: none !important;
}
.cid-uNa1aiEhZo .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uNa1aiEhZo div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uNa1aiEhZo div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uNWbKaGPSt {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uNWbKaGPSt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uNWbKaGPSt .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uNWbKaGPSt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uNWbKaGPSt .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uNWbKaGPSt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uNWbKaGPSt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uNWbKaGPSt .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uNWbKaGPSt .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uNWbKaGPSt .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uNWbKaGPSt .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uNWbKaGPSt .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uNWbKaGPSt .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uNWbKaGPSt .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uNWbKaGPSt .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uNWbKaGPSt .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uNWbKaGPSt .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uNWbKaGPSt .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uNWbKaGPSt .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uNWbKaGPSt .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uNWbKaGPSt .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uNWbKaGPSt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uNWbKaGPSt .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uNWbKaGPSt .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uNWbKaGPSt .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uNWbKaGPSt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uNWbKaGPSt .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uNWbKaGPSt .nav-item:focus,
.cid-uNWbKaGPSt .nav-link:focus {
  outline: none;
}
.cid-uNWbKaGPSt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uNWbKaGPSt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uNWbKaGPSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uNWbKaGPSt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uNWbKaGPSt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uNWbKaGPSt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uNWbKaGPSt .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uNWbKaGPSt .navbar.opened {
  transition: all 0.3s;
}
.cid-uNWbKaGPSt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uNWbKaGPSt .navbar .navbar-logo img {
  width: auto;
}
.cid-uNWbKaGPSt .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uNWbKaGPSt .navbar.collapsed {
  justify-content: center;
}
.cid-uNWbKaGPSt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uNWbKaGPSt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uNWbKaGPSt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uNWbKaGPSt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uNWbKaGPSt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uNWbKaGPSt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uNWbKaGPSt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uNWbKaGPSt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uNWbKaGPSt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uNWbKaGPSt .navbar {
    min-height: 72px;
  }
  .cid-uNWbKaGPSt .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uNWbKaGPSt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uNWbKaGPSt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uNWbKaGPSt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uNWbKaGPSt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uNWbKaGPSt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uNWbKaGPSt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uNWbKaGPSt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uNWbKaGPSt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uNWbKaGPSt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uNWbKaGPSt .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uNWbKaGPSt .dropdown-item.active,
.cid-uNWbKaGPSt .dropdown-item:active {
  background-color: transparent;
}
.cid-uNWbKaGPSt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uNWbKaGPSt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uNWbKaGPSt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uNWbKaGPSt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uNWbKaGPSt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uNWbKaGPSt .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uNWbKaGPSt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uNWbKaGPSt .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uNWbKaGPSt .navbar-buttons {
    text-align: left;
  }
}
.cid-uNWbKaGPSt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uNWbKaGPSt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uNWbKaGPSt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uNWbKaGPSt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNWbKaGPSt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uNWbKaGPSt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uNWbKaGPSt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNWbKaGPSt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uNWbKaGPSt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uNWbKaGPSt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uNWbKaGPSt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uNWbKaGPSt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uNWbKaGPSt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uNWbKaGPSt .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uNWbKaGPSt .navbar {
    height: 70px;
  }
  .cid-uNWbKaGPSt .navbar.opened {
    height: auto;
  }
  .cid-uNWbKaGPSt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uNWbKaGPSt .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uNWbKaGPSt .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uNWbKaGPSt .navbar-brand {
    margin-right: auto;
  }
  .cid-uNWbKaGPSt .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uNWbKaGPSt .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uNWbKaGPSt .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uNWbKaGPSt .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uNWbKaGPSt .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uNWbKaGPSt .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uNWbKcocqd {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.cid-uNWbKcocqd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKcocqd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background13.jpg");
}
.cid-uNWbKcocqd .video-wrapper iframe {
  width: 100%;
}
.cid-uNWbKcocqd .mbr-section-title,
.cid-uNWbKcocqd .mbr-section-subtitle,
.cid-uNWbKcocqd .mbr-text {
  text-align: center;
}
.cid-uNWbKdbmbe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKdbmbe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKdbmbe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKdbmbe .text-wrap {
  width: 100%;
}
.cid-uNWbKdbmbe .mbr-section-title {
  color: #22a5e5;
  margin-bottom: 70px;
}
.cid-uNWbKdbmbe .mbr-text {
  color: #353535;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .mbr-text {
    margin-top: 30px;
  }
}
.cid-uNWbKdbmbe .item-row {
  row-gap: 50px;
}
@media (max-width: 1199px) {
  .cid-uNWbKdbmbe .item-row {
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row {
    row-gap: 22px;
  }
}
@media (max-width: 991px) {
  .cid-uNWbKdbmbe .item-row {
    justify-content: flex-start;
  }
}
.cid-uNWbKdbmbe .item-row .item {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row .item {
    justify-content: flex-start;
  }
}
.cid-uNWbKdbmbe .item-row .item:nth-child(1) .item-wrap {
  background-color: #40b0bf;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(2) {
    justify-content: flex-end;
  }
}
.cid-uNWbKdbmbe .item-row .item:nth-child(2) .item-wrap {
  background-color: #47b5ed;
  border-radius: 0 20px 20px 20px;
}
.cid-uNWbKdbmbe .item-row .item:nth-child(3) .item-wrap {
  background-color: #6ec7f2;
  border-radius: 0 20px 20px 20px;
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(4) {
    justify-content: flex-end;
  }
}
.cid-uNWbKdbmbe .item-row .item:nth-child(4) .item-wrap {
  background-color: #9fdbf8;
  border-radius: 20px 20px 0 20px;
}
.cid-uNWbKdbmbe .item-row .item:nth-child(5) .item-wrap {
  background-color: #98dee8;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 991px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(6) {
    order: 7;
  }
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(6) {
    order: 6;
    justify-content: center;
  }
}
.cid-uNWbKdbmbe .item-row .item:nth-child(6) .item-wrap {
  background-color: #a9bbab;
  border-radius: 20px 20px 0 20px;
}
.cid-uNWbKdbmbe .item-row .item:nth-child(7) {
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(7) {
    order: 6;
  }
}
@media (max-width: 767px) {
  .cid-uNWbKdbmbe .item-row .item:nth-child(7) {
    order: 7;
    justify-content: center;
  }
}
.cid-uNWbKdbmbe .item-row .item:nth-child(7) .item-wrap {
  background-color: #d0c4b7;
  border-radius: 20px 20px 20px 0;
}
.cid-uNWbKdbmbe .item-row .item-wrap {
  padding: 14px 26px;
  opacity: 0.95;
  max-width: 100%;
  width: fit-content;
}
.cid-uNWbKdbmbe .item-text {
  color: #000000;
  text-align: center;
}
.cid-uNWbKdbmbe .mbr-text,
.cid-uNWbKdbmbe .mbr-section-btn {
  color: #000000;
}
.cid-uNWbKdDTmL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKdDTmL .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-uNWbKdDTmL .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNWbKdDTmL .column__one,
.cid-uNWbKdDTmL .column__two,
.cid-uNWbKdDTmL .column__three,
.cid-uNWbKdDTmL .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNWbKdDTmL .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-uNWbKdDTmL .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKdDTmL .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKdDTmL .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKdDTmL .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKdDTmL .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNWbKdDTmL .column__three {
  border-bottom-left-radius: 0;
}
.cid-uNWbKdDTmL .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNWbKdDTmL .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNWbKdDTmL .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNWbKdDTmL .pricing {
  padding: 0 20px;
}
.cid-uNWbKdDTmL .currency {
  vertical-align: top;
}
.cid-uNWbKdDTmL .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNWbKdDTmL .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNWbKdDTmL .item__wrapper {
  margin-top: 40px;
}
.cid-uNWbKdDTmL .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uNWbKdDTmL .column__one,
  .cid-uNWbKdDTmL .column__two,
  .cid-uNWbKdDTmL .column__three,
  .cid-uNWbKdDTmL .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNWbKdDTmL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKdDTmL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKek7hA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKek7hA img,
.cid-uNWbKek7hA .item-img {
  width: 100%;
}
.cid-uNWbKek7hA .item:focus,
.cid-uNWbKek7hA span:focus {
  outline: none;
}
.cid-uNWbKek7hA .item-wrapper {
  position: relative;
}
.cid-uNWbKek7hA .slide-content {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNWbKek7hA .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNWbKek7hA .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uNWbKek7hA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNWbKek7hA .mbr-section-title {
  color: #232323;
}
.cid-uNWbKek7hA .mbr-text,
.cid-uNWbKek7hA .mbr-section-btn {
  text-align: left;
}
.cid-uNWbKek7hA .item-title {
  text-align: left;
}
.cid-uNWbKek7hA .item-subtitle {
  text-align: left;
}
.cid-uNWbKek7hA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uNWbKek7hA .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uNWbKek7hA .embla__button--next,
.cid-uNWbKek7hA .embla__button--prev {
  display: flex;
}
.cid-uNWbKek7hA .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uNWbKek7hA .embla__button {
    display: none;
  }
}
.cid-uNWbKek7hA .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNWbKek7hA .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uNWbKek7hA .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uNWbKek7hA .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uNWbKek7hA .embla__button {
    top: auto;
  }
}
.cid-uNWbKek7hA .embla {
  position: relative;
  width: 100%;
}
.cid-uNWbKek7hA .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uNWbKek7hA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNWbKek7hA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNWbKek7hA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNWbKfuR7q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKfuR7q .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-uNWbKfuR7q .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNWbKfuR7q .column__one,
.cid-uNWbKfuR7q .column__two,
.cid-uNWbKfuR7q .column__three,
.cid-uNWbKfuR7q .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNWbKfuR7q .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-uNWbKfuR7q .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKfuR7q .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKfuR7q .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKfuR7q .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKfuR7q .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKfuR7q .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-uNWbKfuR7q .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNWbKfuR7q .column__three {
  border-bottom-left-radius: 0;
}
.cid-uNWbKfuR7q .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNWbKfuR7q .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNWbKfuR7q .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNWbKfuR7q .pricing {
  padding: 0 20px;
}
.cid-uNWbKfuR7q .currency {
  vertical-align: top;
}
.cid-uNWbKfuR7q .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNWbKfuR7q .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNWbKfuR7q .item__wrapper {
  margin-top: 40px;
}
.cid-uNWbKfuR7q .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uNWbKfuR7q .column__one,
  .cid-uNWbKfuR7q .column__two,
  .cid-uNWbKfuR7q .column__three,
  .cid-uNWbKfuR7q .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNWbKfuR7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKfuR7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKgltBw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKgltBw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKgltBw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKgltBw .video-wrapper iframe {
  width: 100%;
}
.cid-uNWbKgltBw .mbr-section-title,
.cid-uNWbKgltBw .mbr-section-subtitle,
.cid-uNWbKgltBw .mbr-text {
  text-align: center;
}
.cid-uNWbKgTuJN {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNWbKgTuJN .mbr-section-title {
  margin-bottom: 0;
  margin-bottom: 60px;
}
.cid-uNWbKgTuJN .mbr-text {
  margin: 15px 0 60px;
  color: #919dab;
}
.cid-uNWbKgTuJN .column__one,
.cid-uNWbKgTuJN .column__two,
.cid-uNWbKgTuJN .column__three,
.cid-uNWbKgTuJN .column__four {
  padding-top: 45px;
  border: 2px solid #6ec7f2;
  border-bottom-left-radius: 10px;
  background-color: #ffffff;
  background-color: transparent;
}
.cid-uNWbKgTuJN .column__one {
  border: 2px solid #6ec7f2;
  border-radius: 10px;
}
.cid-uNWbKgTuJN .column__one {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKgTuJN .column__two {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKgTuJN .column__two {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKgTuJN .column__three {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cid-uNWbKgTuJN .column__three {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-uNWbKgTuJN .column__four {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cid-uNWbKgTuJN .column__two {
  border-bottom-left-radius: 0;
}
.cid-uNWbKgTuJN .column__four {
  border-bottom-left-radius: 0;
}
.cid-uNWbKgTuJN .title__table {
  margin-bottom: 0;
  padding: 0 20px;
}
.cid-uNWbKgTuJN .subtitle__table {
  color: #919dab;
  margin: 10px 0 35px;
  padding: 0 20px;
}
.cid-uNWbKgTuJN .pricing {
  padding: 0 20px;
}
.cid-uNWbKgTuJN .currency {
  vertical-align: top;
}
.cid-uNWbKgTuJN .mbr-section-btn {
  padding: 0 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.cid-uNWbKgTuJN .mbr-section-btn .btn {
  font-weight: 500;
}
.cid-uNWbKgTuJN .item__wrapper {
  margin-top: 40px;
}
.cid-uNWbKgTuJN .item__table {
  padding: 16px 20px 14px;
  border-top: 2px solid #6ec7f2;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-uNWbKgTuJN .column__one,
  .cid-uNWbKgTuJN .column__two,
  .cid-uNWbKgTuJN .column__three,
  .cid-uNWbKgTuJN .column__four {
    border-right: 2px solid #6ec7f2;
    margin: 0 auto 50px auto;
    max-width: 300px;
    border-radius: 10px;
  }
}
.cid-uNWbKgTuJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKgTuJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKhFUw4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNWbKhFUw4 .row {
  position: relative;
}
.cid-uNWbKhFUw4 .row .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #6ec7f2 50%, #ffffff);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uNWbKhFUw4 .row .blur-circle {
    display: none;
  }
}
.cid-uNWbKhFUw4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKhFUw4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKhFUw4 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uNWbKhFUw4 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uNWbKhFUw4 .row {
    padding: 0 24px;
  }
}
.cid-uNWbKhFUw4 .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uNWbKhFUw4 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uNWbKhFUw4 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uNWbKhFUw4 .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uNWbKhFUw4 .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #6ec7f2;
  z-index: -1;
}
.cid-uNWbKhFUw4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNWbKhFUw4 .nav.nav-tabs {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 10px;
  border: 2px solid #6ec7f2;
  border-radius: 8px;
  margin-bottom: 64px;
  justify-content: center;
}
.cid-uNWbKhFUw4 .nav.nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border-radius: 4px;
  padding: 16px 25px 6px;
  color: #111111;
  border: none;
}
.cid-uNWbKhFUw4 .nav.nav-tabs .nav-item .nav-link.active {
  background-color: #6ec7f2;
  color: #ffffff;
  border: none;
}
.cid-uNWbKhFUw4 .tab-content {
  position: relative;
  z-index: 1;
}
.cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .list-text {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dashed #6ec7f2;
}
.cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .list-text .mbr-time {
  margin: 0;
}
.cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .list-text .mbr-desc {
  margin: 0;
}
.cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .list {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
  list-style-position: inside;
}
@media (max-width: 768px) {
  .cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .list {
    padding-left: 0;
  }
}
.cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
  padding: 18px 0 18px 40px;
  margin: 0;
  border-bottom: 1px dashed #6ec7f2;
}
@media (max-width: 768px) {
  .cid-uNWbKhFUw4 .tab-content .tab-pane .text-wrapper .mbr-tabs-text {
    padding-left: 0;
  }
}
.cid-uNWbKhFUw4 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uNWbKhFUw4 .mbr-text {
  color: #111111;
  text-align: center;
}
.cid-uNWbKhFUw4 .mbr-time {
  color: #111111;
}
.cid-uNWbKhFUw4 .mbr-desc {
  color: #111111;
}
.cid-uNWbKhFUw4 .list {
  color: #111111;
}
.cid-uNWbKhFUw4 .mbr-tabs-text {
  color: #111111;
}
.cid-uNWbKiptkC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-image: url("../../../assets/images/aleksandra-mateusz-28-1000x667.jpeg");
}
.cid-uNWbKiptkC::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #ffffff 50%);
  z-index: 1;
}
.cid-uNWbKiptkC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKiptkC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKiptkC .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uNWbKiptkC .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uNWbKiptkC .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uNWbKiptkC .container {
    padding: 0 22px;
  }
}
.cid-uNWbKiptkC .row {
  justify-content: center;
}
.cid-uNWbKiptkC .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-uNWbKiptkC .content-wrapper {
    padding: 0;
  }
}
.cid-uNWbKiptkC .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uNWbKiptkC .content-wrapper .mbr-desc {
  margin-bottom: 10px;
}
.cid-uNWbKiptkC .mbr-section-title {
  color: #ffffff;
}
.cid-uNWbKiptkC .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uNWbKiptkC .mbr-section-title,
.cid-uNWbKiptkC .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uNWbKiWYOI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNWbKiWYOI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKiWYOI .item-wrapper {
  display: flex;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uNWbKiWYOI .item-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNWbKiWYOI .item-wrapper:hover .iconfont-wrapper:after {
  width: 70px;
  height: 70px;
}
.cid-uNWbKiWYOI a {
  font-weight: 600;
}
.cid-uNWbKiWYOI a:hover {
  background: none !important;
}
@media (min-width: 1400px) {
  .cid-uNWbKiWYOI .col-lg-3,
  .cid-uNWbKiWYOI .col-xl-3 {
    max-width: 20%;
  }
}
@media (max-width: 1200px) {
  .cid-uNWbKiWYOI .col-lg-12 {
    min-width: 100% !important;
  }
}
.cid-uNWbKiWYOI .card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uNWbKiWYOI h5 {
  margin: 0;
}
.cid-uNWbKiWYOI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKiWYOI .iconfont-wrapper {
  position: relative;
}
.cid-uNWbKiWYOI .mbr-iconfont {
  display: flex;
  padding-right: 1rem;
  font-size: 2rem;
  color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 2;
  position: relative;
}
.cid-uNWbKiWYOI .socicon {
  font-size: 1rem;
  width: 30px;
  height: 30px;
}
.cid-uNWbKiWYOI .sociconfont-wrapper {
  display: flex;
}
.cid-uNWbKiWYOI .card-title,
.cid-uNWbKiWYOI .iconfont-wrapper {
  color: #a1a1a1;
  text-align: left;
}
.cid-uNWbKiWYOI .card-text {
  color: #000000;
}
.cid-uNWbKiWYOI .mbr-section-title {
  color: #000000;
}
.cid-uNWbKiWYOI .main-title,
.cid-uNWbKiWYOI .iconfont-wrapper {
  text-align: center;
}
.cid-uNWbKkEfrX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKkEfrX .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uNWbKkEfrX .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uNWbKkEfrX .container {
    padding: 0 25px;
  }
}
.cid-uNWbKkEfrX .title-wrapper {
  padding: 0 45px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uNWbKkEfrX .title-wrapper {
    padding: 0 25px;
  }
}
.cid-uNWbKkEfrX .title-wrapper .mbr-section-title {
  margin-bottom: 25px;
}
.cid-uNWbKkEfrX .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uNWbKkEfrX .title-wrapper .mbr-section-btn {
  margin-top: 35px;
}
.cid-uNWbKkEfrX .item:focus,
.cid-uNWbKkEfrX span:focus {
  outline: none;
}
.cid-uNWbKkEfrX .item-wrapper {
  position: relative;
}
.cid-uNWbKkEfrX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 460px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .cid-uNWbKkEfrX .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uNWbKkEfrX .embla__slide .slide-content {
  width: 100%;
  border-radius: 0 !important;
}
.cid-uNWbKkEfrX .embla__slide .slide-content .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
.cid-uNWbKkEfrX .embla__button--next,
.cid-uNWbKkEfrX .embla__button--prev {
  display: flex;
}
.cid-uNWbKkEfrX .embla__button {
  bottom: 0;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: #f0f0f0 !important;
  color: #000000 !important;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uNWbKkEfrX .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uNWbKkEfrX .embla__button.embla__button--prev {
  left: 45%;
}
@media (max-width: 768px) {
  .cid-uNWbKkEfrX .embla__button.embla__button--prev {
    left: 25px;
  }
}
.cid-uNWbKkEfrX .embla__button.embla__button--prev:hover {
  box-shadow: inset -40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uNWbKkEfrX .embla__button.embla__button--next {
  right: 45%;
}
@media (max-width: 768px) {
  .cid-uNWbKkEfrX .embla__button.embla__button--next {
    right: 25px;
  }
}
.cid-uNWbKkEfrX .embla__button.embla__button--next:hover {
  box-shadow: inset 40px 0 0 0 #000000 !important;
  color: #f0f0f0 !important;
}
.cid-uNWbKkEfrX .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uNWbKkEfrX .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uNWbKkEfrX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uNWbKkEfrX .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uNWbKkEfrX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uNWbKkEfrX .mbr-section-title {
  color: #000000;
}
.cid-uNWbKkEfrX .mbr-text {
  color: #000000;
}
.cid-uNWbKkEfrX .mbr-section-title,
.cid-uNWbKkEfrX .mbr-section-btn {
  text-align: center;
}
#custom-html-17d .share-button {
  text-align: center;
  margin: 40px 0;
}
#custom-html-17d .facebook-share {
  background-color: #1877f2;
  color: #fff;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#custom-html-17d .facebook-share:hover {
  background-color: #145dbf;
}
#custom-html-17d .facebook-icon {
  width: 20px;
  height: 20px;
  fill: white;
}
.cid-uNWbKlNmXP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNWbKlNmXP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNWbKlNmXP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNWbKlNmXP .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uNWbKlNmXP .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uNWbKlNmXP .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uNWbKlNmXP .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uNWbKlNmXP .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uNWbKlNmXP .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uNWbKlNmXP .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uNWbKlNmXP .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uNWbKlNmXP .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uNWbKlNmXP .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uNWbKlNmXP .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uNWbKlNmXP .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uNWbKlNmXP .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uNWbKlNmXP .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNWbKlNmXP .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uNWbKlNmXP .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uNWbKmz4Fa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uNWbKmz4Fa .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uNWbKmz4Fa .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uNWbKmz4Fa .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uNWbKmz4Fa .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uNWbKmz4Fa .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uNWbKmz4Fa .social_icons {
  text-align: center;
}
.cid-uNWbKmz4Fa .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uNWbKmz4Fa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uNWbKmz4Fa .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uNWbKmz4Fa .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uNWbKmz4Fa .footer_timework {
    margin-top: 50px;
  }
  .cid-uNWbKmz4Fa .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uNWbKnlttz P {
  color: #1281fc;
}
.cid-uNWbKnlttz DIV {
  color: #ffffff;
}
.cid-uNWbKnlttz H10 {
  color: #034e75;
}
.cid-uNWbKnlttz .hidden {
  display: none;
}
.cid-uNWbKnlttz .icon-bar {
  z-index: 100002;
  position: fixed;
  top: 83%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 1px;
}
.cid-uNWbKnlttz .icon-bar a {
  display: block;
  text-align: center;
  padding: 6px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  padding-left: 1px;
}
.cid-uNWbKnlttz .icon-bar a:hover {
  background-color: #000000;
}
.cid-uNWbKnlttz .flag {
  background: transparent;
}
.cid-uNWbKnlttz .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-uNWbKnlttz .nav-right {
  float: left !important;
  position: relative;
}
.cid-uNWbKnlttz #google_translate_element {
  display: none;
}
.cid-uNWbKnlttz .goog-te-banner {
  display: none;
}
.cid-uNWbKnlttz .skiptranslate {
  display: none;
  bottom: 0px;
  position: relative;
}
.cid-uNWbKnlttz .goog-te-spinner-pos {
  display: none !important;
}
.cid-uNWbKnlttz body {
  top: 0px !important;
}
.cid-uNWbKnlttz body body {
  top: 0 !important;
}
.cid-uNWbKnlttz body .goog-te-banner-frame {
  display: none !important;
}
.cid-uNWbKnlttz .goog-te-banner-frame.skiptranslate {
  display: none !important;
}
.cid-uNWbKnlttz .goog-tooltip {
  display: none !important;
}
.cid-uNWbKnlttz .goog-tooltip:hover {
  display: none !important;
}
.cid-uNWbKnlttz .goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: none !important;
  Background-color: transparent;
}
.cid-uNWbKnlttz #goog-gt-tt,
.cid-uNWbKnlttz .goog-te-balloon-frame {
  display: none !important;
}
.cid-uNWbKnlttz #goog-gt-tt {
  visibility: hidden;
  display: none !important;
}
.cid-uNWbKnlttz .goog-logo-link {
  display: none !important;
}
.cid-uNWbKnlttz .goog-te-gadget {
  height: 28px !important;
  overflow: hidden;
}
.cid-uNWbKnlttz div.imgtest {
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  content: url(https://www.unsitepourtous.be/logoscript/logo-zen.png);
}
.cid-uNWbKnlttz div.imgtest2 {
  margin-left: auto;
  margin-right: auto;
  width: 250px;
  content: url(https://www.unsitepourtous.be/logoscript/flags145.png);
}
.cid-uR8eqaPQLt {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uR8eqaPQLt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uR8eqaPQLt .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uR8eqaPQLt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uR8eqaPQLt .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uR8eqaPQLt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR8eqaPQLt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR8eqaPQLt .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uR8eqaPQLt .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uR8eqaPQLt .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uR8eqaPQLt .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uR8eqaPQLt .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uR8eqaPQLt .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uR8eqaPQLt .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uR8eqaPQLt .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uR8eqaPQLt .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uR8eqaPQLt .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uR8eqaPQLt .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uR8eqaPQLt .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uR8eqaPQLt .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uR8eqaPQLt .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uR8eqaPQLt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uR8eqaPQLt .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uR8eqaPQLt .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR8eqaPQLt .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uR8eqaPQLt .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR8eqaPQLt .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uR8eqaPQLt .nav-item:focus,
.cid-uR8eqaPQLt .nav-link:focus {
  outline: none;
}
.cid-uR8eqaPQLt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR8eqaPQLt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR8eqaPQLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR8eqaPQLt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR8eqaPQLt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR8eqaPQLt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR8eqaPQLt .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uR8eqaPQLt .navbar.opened {
  transition: all 0.3s;
}
.cid-uR8eqaPQLt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR8eqaPQLt .navbar .navbar-logo img {
  width: auto;
}
.cid-uR8eqaPQLt .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uR8eqaPQLt .navbar.collapsed {
  justify-content: center;
}
.cid-uR8eqaPQLt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR8eqaPQLt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR8eqaPQLt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uR8eqaPQLt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR8eqaPQLt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR8eqaPQLt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uR8eqaPQLt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR8eqaPQLt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR8eqaPQLt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uR8eqaPQLt .navbar {
    min-height: 72px;
  }
  .cid-uR8eqaPQLt .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uR8eqaPQLt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR8eqaPQLt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR8eqaPQLt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR8eqaPQLt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR8eqaPQLt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uR8eqaPQLt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR8eqaPQLt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uR8eqaPQLt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR8eqaPQLt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR8eqaPQLt .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uR8eqaPQLt .dropdown-item.active,
.cid-uR8eqaPQLt .dropdown-item:active {
  background-color: transparent;
}
.cid-uR8eqaPQLt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR8eqaPQLt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR8eqaPQLt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR8eqaPQLt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uR8eqaPQLt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uR8eqaPQLt .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uR8eqaPQLt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR8eqaPQLt .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uR8eqaPQLt .navbar-buttons {
    text-align: left;
  }
}
.cid-uR8eqaPQLt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR8eqaPQLt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uR8eqaPQLt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR8eqaPQLt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR8eqaPQLt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR8eqaPQLt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR8eqaPQLt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8eqaPQLt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR8eqaPQLt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR8eqaPQLt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8eqaPQLt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR8eqaPQLt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR8eqaPQLt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uR8eqaPQLt .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR8eqaPQLt .navbar {
    height: 70px;
  }
  .cid-uR8eqaPQLt .navbar.opened {
    height: auto;
  }
  .cid-uR8eqaPQLt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uR8eqaPQLt .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uR8eqaPQLt .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uR8eqaPQLt .navbar-brand {
    margin-right: auto;
  }
  .cid-uR8eqaPQLt .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uR8eqaPQLt .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uR8eqaPQLt .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uR8eqaPQLt .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uR8eqaPQLt .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uR8eqaPQLt .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uR8eqbULh8 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8eqbULh8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8eqbULh8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8eqbULh8 .mbr-section-title,
.cid-uR8eqbULh8 .mbr-text,
.cid-uR8eqbULh8 .mbr-section-btn {
  text-align: center;
}
.cid-uR8eqbULh8 .video-wrapper {
  margin: auto;
}
.cid-uR8eqbULh8 .video-wrapper iframe {
  width: 100%;
}
.cid-uR8eqbULh8 .mbr-section-title {
  color: #22a5e5;
}
.cid-uR8eqcpfEE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/brzozaka-brzozka-web-3-2000x1600.jpg");
}
.cid-uR8eqcpfEE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8eqcpfEE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8eSuH3ud {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8eSuH3ud .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8eSuH3ud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8eSuH3ud .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uR8eSuH3ud .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uR8eSuH3ud .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uR8eSuH3ud .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uR8eSuH3ud .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uR8eSuH3ud .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uR8eSuH3ud .carousel-control,
.cid-uR8eSuH3ud .close {
  background: #1b1b1b;
}
.cid-uR8eSuH3ud .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uR8eSuH3ud .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uR8eSuH3ud .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uR8eSuH3ud .carousel-control-next span {
  margin-left: 5px;
}
.cid-uR8eSuH3ud .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uR8eSuH3ud .close::before {
  content: '\e91a';
}
.cid-uR8eSuH3ud .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uR8eSuH3ud .carousel-control {
  display: flex;
  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-uR8eSuH3ud .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR8eSuH3ud .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR8eSuH3ud .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uR8eSuH3ud .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uR8eSuH3ud .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-uR8eSuH3ud .carousel-indicators li.active,
.cid-uR8eSuH3ud .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uR8eSuH3ud .carousel-indicators li::after,
.cid-uR8eSuH3ud .carousel-indicators li::before {
  content: none;
}
.cid-uR8eSuH3ud .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uR8eSuH3ud .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uR8eSuH3ud .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uR8eSuH3ud .carousel-indicators {
    display: none;
  }
}
.cid-uR8eSuH3ud .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uR8eSuH3ud .carousel-inner > .active {
  display: block;
}
.cid-uR8eSuH3ud .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR8eSuH3ud .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uR8eSuH3ud .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uR8eSuH3ud .carousel-control,
  .cid-uR8eSuH3ud .carousel-indicators,
  .cid-uR8eSuH3ud .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uR8eSuH3ud .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uR8eSuH3ud .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uR8eSuH3ud .carousel-indicators .active,
.cid-uR8eSuH3ud .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uR8eSuH3ud .carousel-indicators .active {
  background: #fff;
}
.cid-uR8eSuH3ud .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uR8eSuH3ud .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uR8eSuH3ud .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uR8eSuH3ud .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uR8eSuH3ud .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uR8eSuH3ud .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uR8eSuH3ud .carousel {
  width: 100%;
}
.cid-uR8eSuH3ud .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uR8eSuH3ud .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uR8eSuH3ud .modal.fade .modal-dialog,
.cid-uR8eSuH3ud .modal.in .modal-dialog {
  transform: none;
}
.cid-uR8eSuH3ud .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uR8eSuH3ud H6 {
  text-align: center;
}
.cid-uR8eqeJWrc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8eqeJWrc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8eqeJWrc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8eqeJWrc .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uR8eqeJWrc .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uR8eqeJWrc .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uR8eqeJWrc .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR8eqeJWrc .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR8eqeJWrc .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uR8eqeJWrc .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uR8eqeJWrc .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uR8eqeJWrc .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uR8eqeJWrc .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uR8eqeJWrc .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uR8eqeJWrc .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uR8eqeJWrc .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uR8eqeJWrc .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uR8eqeJWrc .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uR8eqeJWrc .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uR8eqfl1LY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uR8eqfl1LY .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uR8eqfl1LY .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uR8eqfl1LY .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uR8eqfl1LY .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uR8eqfl1LY .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uR8eqfl1LY .social_icons {
  text-align: center;
}
.cid-uR8eqfl1LY .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uR8eqfl1LY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uR8eqfl1LY .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uR8eqfl1LY .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uR8eqfl1LY .footer_timework {
    margin-top: 50px;
  }
  .cid-uR8eqfl1LY .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uR8s2n3JuZ {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uR8s2n3JuZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uR8s2n3JuZ .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uR8s2n3JuZ .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uR8s2n3JuZ .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uR8s2n3JuZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR8s2n3JuZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR8s2n3JuZ .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uR8s2n3JuZ .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uR8s2n3JuZ .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uR8s2n3JuZ .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uR8s2n3JuZ .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uR8s2n3JuZ .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uR8s2n3JuZ .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uR8s2n3JuZ .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uR8s2n3JuZ .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uR8s2n3JuZ .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uR8s2n3JuZ .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uR8s2n3JuZ .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uR8s2n3JuZ .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uR8s2n3JuZ .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uR8s2n3JuZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uR8s2n3JuZ .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uR8s2n3JuZ .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uR8s2n3JuZ .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uR8s2n3JuZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uR8s2n3JuZ .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uR8s2n3JuZ .nav-item:focus,
.cid-uR8s2n3JuZ .nav-link:focus {
  outline: none;
}
.cid-uR8s2n3JuZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uR8s2n3JuZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR8s2n3JuZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uR8s2n3JuZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uR8s2n3JuZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR8s2n3JuZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR8s2n3JuZ .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uR8s2n3JuZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uR8s2n3JuZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uR8s2n3JuZ .navbar .navbar-logo img {
  width: auto;
}
.cid-uR8s2n3JuZ .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uR8s2n3JuZ .navbar.collapsed {
  justify-content: center;
}
.cid-uR8s2n3JuZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR8s2n3JuZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uR8s2n3JuZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uR8s2n3JuZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR8s2n3JuZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR8s2n3JuZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uR8s2n3JuZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR8s2n3JuZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uR8s2n3JuZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uR8s2n3JuZ .navbar {
    min-height: 72px;
  }
  .cid-uR8s2n3JuZ .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uR8s2n3JuZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR8s2n3JuZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR8s2n3JuZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uR8s2n3JuZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR8s2n3JuZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uR8s2n3JuZ .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uR8s2n3JuZ .dropdown-item.active,
.cid-uR8s2n3JuZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uR8s2n3JuZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR8s2n3JuZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR8s2n3JuZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR8s2n3JuZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uR8s2n3JuZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uR8s2n3JuZ .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uR8s2n3JuZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR8s2n3JuZ .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uR8s2n3JuZ .navbar-buttons {
    text-align: left;
  }
}
.cid-uR8s2n3JuZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uR8s2n3JuZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uR8s2n3JuZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uR8s2n3JuZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR8s2n3JuZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uR8s2n3JuZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uR8s2n3JuZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8s2n3JuZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uR8s2n3JuZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uR8s2n3JuZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uR8s2n3JuZ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uR8s2n3JuZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR8s2n3JuZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uR8s2n3JuZ .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR8s2n3JuZ .navbar {
    height: 70px;
  }
  .cid-uR8s2n3JuZ .navbar.opened {
    height: auto;
  }
  .cid-uR8s2n3JuZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uR8s2n3JuZ .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uR8s2n3JuZ .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uR8s2n3JuZ .navbar-brand {
    margin-right: auto;
  }
  .cid-uR8s2n3JuZ .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uR8s2n3JuZ .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uR8s2n3JuZ .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uR8s2n3JuZ .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uR8s2n3JuZ .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uR8s2n3JuZ .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uR8s2o9bPs {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8s2o9bPs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8s2o9bPs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8s2o9bPs .mbr-section-title,
.cid-uR8s2o9bPs .mbr-text,
.cid-uR8s2o9bPs .mbr-section-btn {
  text-align: center;
}
.cid-uR8s2o9bPs .video-wrapper {
  margin: auto;
}
.cid-uR8s2o9bPs .video-wrapper iframe {
  width: 100%;
}
.cid-uR8s2o9bPs .mbr-section-title {
  color: #22a5e5;
}
.cid-uR8s2oBffz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/daria-jagielska-web-21-2000x1600.jpg");
}
.cid-uR8s2oBffz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8s2oBffz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8sa0bip7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR8sa0bip7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8sa0bip7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8sa0bip7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uR8sa0bip7 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uR8sa0bip7 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uR8sa0bip7 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uR8sa0bip7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uR8sa0bip7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uR8sa0bip7 .carousel-control,
.cid-uR8sa0bip7 .close {
  background: #1b1b1b;
}
.cid-uR8sa0bip7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uR8sa0bip7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uR8sa0bip7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uR8sa0bip7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uR8sa0bip7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uR8sa0bip7 .close::before {
  content: '\e91a';
}
.cid-uR8sa0bip7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uR8sa0bip7 .carousel-control {
  display: flex;
  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-uR8sa0bip7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR8sa0bip7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uR8sa0bip7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uR8sa0bip7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uR8sa0bip7 .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-uR8sa0bip7 .carousel-indicators li.active,
.cid-uR8sa0bip7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uR8sa0bip7 .carousel-indicators li::after,
.cid-uR8sa0bip7 .carousel-indicators li::before {
  content: none;
}
.cid-uR8sa0bip7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uR8sa0bip7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uR8sa0bip7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uR8sa0bip7 .carousel-indicators {
    display: none;
  }
}
.cid-uR8sa0bip7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uR8sa0bip7 .carousel-inner > .active {
  display: block;
}
.cid-uR8sa0bip7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uR8sa0bip7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uR8sa0bip7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uR8sa0bip7 .carousel-control,
  .cid-uR8sa0bip7 .carousel-indicators,
  .cid-uR8sa0bip7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uR8sa0bip7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uR8sa0bip7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uR8sa0bip7 .carousel-indicators .active,
.cid-uR8sa0bip7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uR8sa0bip7 .carousel-indicators .active {
  background: #fff;
}
.cid-uR8sa0bip7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uR8sa0bip7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uR8sa0bip7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uR8sa0bip7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uR8sa0bip7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uR8sa0bip7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uR8sa0bip7 .carousel {
  width: 100%;
}
.cid-uR8sa0bip7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uR8sa0bip7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uR8sa0bip7 .modal.fade .modal-dialog,
.cid-uR8sa0bip7 .modal.in .modal-dialog {
  transform: none;
}
.cid-uR8sa0bip7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uR8sa0bip7 H6 {
  text-align: center;
}
.cid-uR8s2ssiiN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR8s2ssiiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR8s2ssiiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR8s2ssiiN .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uR8s2ssiiN .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uR8s2ssiiN .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uR8s2ssiiN .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uR8s2ssiiN .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uR8s2ssiiN .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uR8s2ssiiN .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uR8s2ssiiN .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uR8s2ssiiN .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uR8s2ssiiN .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uR8s2ssiiN .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uR8s2ssiiN .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uR8s2ssiiN .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uR8s2ssiiN .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uR8s2ssiiN .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uR8s2ssiiN .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uR8s2tben4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uR8s2tben4 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uR8s2tben4 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uR8s2tben4 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uR8s2tben4 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uR8s2tben4 .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uR8s2tben4 .social_icons {
  text-align: center;
}
.cid-uR8s2tben4 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uR8s2tben4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uR8s2tben4 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uR8s2tben4 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uR8s2tben4 .footer_timework {
    margin-top: 50px;
  }
  .cid-uR8s2tben4 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uRf9ShW0WT {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uRf9ShW0WT .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uRf9ShW0WT .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uRf9ShW0WT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uRf9ShW0WT .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uRf9ShW0WT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uRf9ShW0WT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uRf9ShW0WT .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uRf9ShW0WT .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uRf9ShW0WT .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uRf9ShW0WT .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uRf9ShW0WT .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uRf9ShW0WT .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uRf9ShW0WT .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uRf9ShW0WT .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uRf9ShW0WT .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uRf9ShW0WT .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uRf9ShW0WT .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uRf9ShW0WT .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uRf9ShW0WT .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uRf9ShW0WT .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uRf9ShW0WT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uRf9ShW0WT .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(71, 181, 237, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #47b5ed;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uRf9ShW0WT .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uRf9ShW0WT .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uRf9ShW0WT .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uRf9ShW0WT .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #47b5ed;
  background: rgba(71, 181, 237, 0.8) !important;
}
.cid-uRf9ShW0WT .nav-item:focus,
.cid-uRf9ShW0WT .nav-link:focus {
  outline: none;
}
.cid-uRf9ShW0WT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uRf9ShW0WT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uRf9ShW0WT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uRf9ShW0WT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uRf9ShW0WT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uRf9ShW0WT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uRf9ShW0WT .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uRf9ShW0WT .navbar.opened {
  transition: all 0.3s;
}
.cid-uRf9ShW0WT .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uRf9ShW0WT .navbar .navbar-logo img {
  width: auto;
}
.cid-uRf9ShW0WT .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uRf9ShW0WT .navbar.collapsed {
  justify-content: center;
}
.cid-uRf9ShW0WT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uRf9ShW0WT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uRf9ShW0WT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uRf9ShW0WT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uRf9ShW0WT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uRf9ShW0WT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uRf9ShW0WT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uRf9ShW0WT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uRf9ShW0WT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uRf9ShW0WT .navbar {
    min-height: 72px;
  }
  .cid-uRf9ShW0WT .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uRf9ShW0WT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uRf9ShW0WT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uRf9ShW0WT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uRf9ShW0WT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uRf9ShW0WT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uRf9ShW0WT .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uRf9ShW0WT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uRf9ShW0WT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uRf9ShW0WT .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uRf9ShW0WT .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uRf9ShW0WT .dropdown-item.active,
.cid-uRf9ShW0WT .dropdown-item:active {
  background-color: transparent;
}
.cid-uRf9ShW0WT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uRf9ShW0WT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uRf9ShW0WT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uRf9ShW0WT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #47b5ed;
}
.cid-uRf9ShW0WT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uRf9ShW0WT .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uRf9ShW0WT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uRf9ShW0WT .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uRf9ShW0WT .navbar-buttons {
    text-align: left;
  }
}
.cid-uRf9ShW0WT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uRf9ShW0WT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uRf9ShW0WT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uRf9ShW0WT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRf9ShW0WT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uRf9ShW0WT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uRf9ShW0WT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRf9ShW0WT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uRf9ShW0WT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uRf9ShW0WT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uRf9ShW0WT .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uRf9ShW0WT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uRf9ShW0WT .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRf9ShW0WT .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uRf9ShW0WT .navbar {
    height: 70px;
  }
  .cid-uRf9ShW0WT .navbar.opened {
    height: auto;
  }
  .cid-uRf9ShW0WT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uRf9ShW0WT .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uRf9ShW0WT .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uRf9ShW0WT .navbar-brand {
    margin-right: auto;
  }
  .cid-uRf9ShW0WT .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #47b5ed;
    opacity: 1;
    border-color: rgba(71, 181, 237, 0.8) !important;
    background: rgba(71, 181, 237, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uRf9ShW0WT .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uRf9ShW0WT .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uRf9ShW0WT .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uRf9ShW0WT .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uRf9ShW0WT .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uRf9SkG9Hs {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uRf9SkG9Hs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRf9SkG9Hs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRf9SkG9Hs .mbr-section-title,
.cid-uRf9SkG9Hs .mbr-text,
.cid-uRf9SkG9Hs .mbr-section-btn {
  text-align: center;
}
.cid-uRf9SkG9Hs .video-wrapper {
  margin: auto;
}
.cid-uRf9SkG9Hs .video-wrapper iframe {
  width: 100%;
}
.cid-uRf9SkG9Hs .mbr-section-title {
  color: #22a5e5;
}
.cid-uRf9Sltqvt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/krzysztof-duliasz-web-5-2000x1600.jpg");
}
.cid-uRf9Sltqvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRf9Sltqvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRfa6c5v5T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uRfa6c5v5T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRfa6c5v5T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRfa6c5v5T .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uRfa6c5v5T .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uRfa6c5v5T .item-wrapper {
  position: relative;
}
.cid-uRfa6c5v5T .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uRfa6c5v5T .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uRfa6c5v5T .carousel-control,
.cid-uRfa6c5v5T .close {
  background: #1b1b1b;
}
.cid-uRfa6c5v5T .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uRfa6c5v5T .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uRfa6c5v5T .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uRfa6c5v5T .carousel-control-next span {
  margin-left: 5px;
}
.cid-uRfa6c5v5T .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uRfa6c5v5T .close::before {
  content: '\e91a';
}
.cid-uRfa6c5v5T .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uRfa6c5v5T .carousel-control {
  display: flex;
  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-uRfa6c5v5T .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRfa6c5v5T .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uRfa6c5v5T .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uRfa6c5v5T .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uRfa6c5v5T .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-uRfa6c5v5T .carousel-indicators li.active,
.cid-uRfa6c5v5T .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uRfa6c5v5T .carousel-indicators li::after,
.cid-uRfa6c5v5T .carousel-indicators li::before {
  content: none;
}
.cid-uRfa6c5v5T .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uRfa6c5v5T .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uRfa6c5v5T .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uRfa6c5v5T .carousel-indicators {
    display: none;
  }
}
.cid-uRfa6c5v5T .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uRfa6c5v5T .carousel-inner > .active {
  display: block;
}
.cid-uRfa6c5v5T .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uRfa6c5v5T .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uRfa6c5v5T .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uRfa6c5v5T .carousel-control,
  .cid-uRfa6c5v5T .carousel-indicators,
  .cid-uRfa6c5v5T .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uRfa6c5v5T .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uRfa6c5v5T .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uRfa6c5v5T .carousel-indicators .active,
.cid-uRfa6c5v5T .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uRfa6c5v5T .carousel-indicators .active {
  background: #fff;
}
.cid-uRfa6c5v5T .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uRfa6c5v5T .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uRfa6c5v5T .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uRfa6c5v5T .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uRfa6c5v5T .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uRfa6c5v5T .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uRfa6c5v5T .carousel {
  width: 100%;
}
.cid-uRfa6c5v5T .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uRfa6c5v5T .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uRfa6c5v5T .modal.fade .modal-dialog,
.cid-uRfa6c5v5T .modal.in .modal-dialog {
  transform: none;
}
.cid-uRfa6c5v5T .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uRfa6c5v5T H6 {
  text-align: center;
}
.cid-uRf9SojmPu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uRf9SojmPu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRf9SojmPu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRf9SojmPu .content-wrapper {
  position: relative;
  padding: 46px 24px;
  overflow: hidden;
  border: 1px solid #323046;
  background-color: #47b5ed;
  background-color: transparent;
}
@media (max-width: 992px) {
  .cid-uRf9SojmPu .content-wrapper {
    padding: 24px 14px 0 14px;
  }
}
.cid-uRf9SojmPu .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47b5ed;
  opacity: .5;
}
.cid-uRf9SojmPu .content-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uRf9SojmPu .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uRf9SojmPu .content-wrapper .mbr-section-title span {
  color: #22a5e5;
}
.cid-uRf9SojmPu .content-wrapper .items-wrap {
  position: relative;
  z-index: 1;
  justify-content: center;
  margin: 0 -7px;
}
.cid-uRf9SojmPu .content-wrapper .items-wrap .item {
  padding: 0 7px;
  margin-bottom: 14px;
}
.cid-uRf9SojmPu .content-wrapper .items-wrap .item .item-wrapper {
  padding: 14px 24px 24px;
  border: 1px solid #323046;
  height: 100%;
  box-shadow: 1px 0 1px #22a5e5;
}
@media (max-width: 992px) {
  .cid-uRf9SojmPu .content-wrapper .items-wrap .item .item-wrapper {
    padding: 14px;
  }
}
.cid-uRf9SojmPu .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
  padding: 14px 32px;
  background-color: #555555;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uRf9SojmPu .content-wrapper .items-wrap .item .item-wrapper .card-box .title-wrap .item-title {
    padding: 14px;
  }
}
.cid-uRf9SojmPu .content-wrapper .items-wrap .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uRf9SojmPu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uRf9SojmPu .item-title {
  color: #ffffff;
  text-align: center;
}
.cid-uRf9SojmPu .item-text {
  color: #ffffff;
  text-align: center;
}
.cid-uRf9SpbL8a {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #6ec7f2;
}
.cid-uRf9SpbL8a .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-uRf9SpbL8a .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uRf9SpbL8a .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uRf9SpbL8a .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uRf9SpbL8a .footer_info {
  margin: 10px 0;
  text-align: center;
}
.cid-uRf9SpbL8a .social_icons {
  text-align: center;
}
.cid-uRf9SpbL8a .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uRf9SpbL8a .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uRf9SpbL8a .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uRf9SpbL8a .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uRf9SpbL8a .footer_timework {
    margin-top: 50px;
  }
  .cid-uRf9SpbL8a .footer_contact {
    margin-bottom: 50px;
  }
}
