.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 2rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Raleway', 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((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: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #0059ff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #48d41d !important;
}
.bg-danger {
  background-color: #ff6019 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0059ff !important;
  border-color: #0059ff !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: #003ba8 !important;
  border-color: #003ba8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #003ba8 !important;
  border-color: #003ba8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8f29 !important;
  border-color: #ff8f29 !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: #d16400 !important;
  border-color: #d16400 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d16400 !important;
  border-color: #d16400 !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: #48d41d !important;
  border-color: #48d41d !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #2e8813 !important;
  border-color: #2e8813 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #2e8813 !important;
  border-color: #2e8813 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff6019 !important;
  border-color: #ff6019 !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: #c13c00 !important;
  border-color: #c13c00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c13c00 !important;
  border-color: #c13c00 !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: #0059ff;
  color: #0059ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #003ba8 !important;
  background-color: transparent!important;
  border-color: #003ba8 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0059ff !important;
  border-color: #0059ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff8f29;
  color: #ff8f29;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d16400 !important;
  background-color: transparent!important;
  border-color: #d16400 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8f29 !important;
  border-color: #ff8f29 !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: #48d41d;
  color: #48d41d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #2e8813 !important;
  background-color: transparent!important;
  border-color: #2e8813 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #48d41d !important;
  border-color: #48d41d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff6019;
  color: #ff6019;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c13c00 !important;
  background-color: transparent!important;
  border-color: #c13c00 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6019 !important;
  border-color: #ff6019 !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: #0059ff !important;
}
.text-secondary {
  color: #ff8f29 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #48d41d !important;
}
.text-danger {
  color: #ff6019 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #003599 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c25c00 !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: #2a7a11 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #b23700 !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: #0059ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #48d41d;
}
.alert-danger {
  background-color: #ff6019;
}
.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: #0059ff;
  border-color: #0059ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0059ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ccdeff;
}
.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: #d1f7c6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffede5;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2rem;
}
.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: #0059ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2rem;
}
blockquote {
  border-color: #0059ff;
}
/* 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: #0059ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0059ff;
}
.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: #0059ff;
  border-bottom-color: #0059ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #0059ff !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: #ff8f29 !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='%230059ff' %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-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tC3pV6yn5Y {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tC3pV6yn5Y {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-tC3pV6yn5Y .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tC3pV6yn5Y picture {
  height: 100%;
  object-fit: cover;
}
.cid-tC3pV6yn5Y picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tC3pV6yn5Y picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tC3pV6yn5Y .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tC3pV6yn5Y .mbr-section-title {
  color: #ffffff;
}
.cid-tC3pV6yn5Y .mbr-text,
.cid-tC3pV6yn5Y .mbr-section-btn {
  color: #ffffff;
}
.cid-to3PX947dR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-to3PX947dR .mbr-fallback-image.disabled {
  display: none;
}
.cid-to3PX947dR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-to3PX947dR .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-to3PX947dR .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-to3PX947dR .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-to3PX947dR .card {
    margin-bottom: 2rem;
  }
  .cid-to3PX947dR .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-to3PX947dR .icon-title {
  color: #232323;
}
.cid-to3PX947dR .card-title,
.cid-to3PX947dR .card-box {
  color: #232323;
}
.cid-to3PX947dR .mbr-text,
.cid-to3PX947dR .mbr-section-btn {
  color: #000000;
}
.cid-to3PX947dR .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-to3PX947dR .btn::after {
  content: ">";
}
.cid-to48MsCUvT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-to48MsCUvT .mbr-fallback-image.disabled {
  display: none;
}
.cid-to48MsCUvT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-to48MsCUvT .mbr-section-title {
  color: #232323;
}
.cid-to48MsCUvT .mbr-section-subtitle {
  color: #000000;
}
.cid-tEsl3a49Aj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEsl3a49Aj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEsl3a49Aj img {
  width: 100%;
}
.cid-tEsl3a49Aj picture {
  height: 100%;
  object-fit: cover;
}
.cid-tEsl3a49Aj picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tEsl3a49Aj picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEsl3a49Aj .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-tEsl3a49Aj .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tEsl3a49Aj .mbr-section-title {
  color: #232323;
}
.cid-tEsl3a49Aj .mbr-text {
  color: #000000;
}
.cid-tEsl3a49Aj .mbr-description {
  color: #000000;
}
.cid-tEsx8bSfMW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEsx8bSfMW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEsx8bSfMW img {
  width: 100%;
}
.cid-tEsx8bSfMW picture {
  height: 100%;
  object-fit: cover;
}
.cid-tEsx8bSfMW picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tEsx8bSfMW picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEsx8bSfMW .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-tEsx8bSfMW .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tEsx8bSfMW .mbr-section-title {
  color: #232323;
}
.cid-tEsx8bSfMW .mbr-text {
  color: #000000;
}
.cid-tEsx8bSfMW .mbr-description {
  color: #000000;
}
.cid-ueXCP1V30k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ueXCP1V30k img,
.cid-ueXCP1V30k .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ueXCP1V30k .item:focus,
.cid-ueXCP1V30k span:focus {
  outline: none;
}
.cid-ueXCP1V30k .item-wrapper {
  position: relative;
}
.cid-ueXCP1V30k .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ueXCP1V30k .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.cid-ueXCP1V30k .slide-content .item-link {
  text-decoration: none;
  color: #232323;
}
@media (min-width: 992px) {
  .cid-ueXCP1V30k .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ueXCP1V30k .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ueXCP1V30k .text1 {
  zoom: 1.25;
}
.cid-ueXCP1V30k .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ueXCP1V30k .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ueXCP1V30k .mbr-section-more {
  color: #232323;
  text-align: left;
}
.cid-ueXCP1V30k .mbr-text,
.cid-ueXCP1V30k .mbr-section-btn {
  text-align: left;
}
.cid-ueXCP1V30k .item-title {
  text-align: left;
}
.cid-ueXCP1V30k .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ueXCP1V30k .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ueXCP1V30k .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ueXCP1V30k .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ueXCP1V30k .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ueXCP1V30k .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ueXCP1V30k .embla__button--next,
.cid-ueXCP1V30k .embla__button--prev {
  display: flex;
}
.cid-ueXCP1V30k .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-ueXCP1V30k .embla__button {
    display: none;
  }
}
.cid-ueXCP1V30k .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ueXCP1V30k .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ueXCP1V30k .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ueXCP1V30k .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ueXCP1V30k .embla__button {
    topx: auto;
  }
}
.cid-ueXCP1V30k .embla {
  position: relative;
  width: 100%;
}
.cid-ueXCP1V30k .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ueXCP1V30k .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ueXCP1V30k .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ueXCP1V30k .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ueXCP1V30k .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ueXCP1V30k .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ueXCP1V30k .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ueXCP1V30k P {
  text-align: center;
  color: #232323;
}
.cid-ueXCP1V30k .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ueXCP1V30k .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ueXCP1V30k .mbr-section-more .btn::after {
  content: ">";
}
.cid-ueXCP1V30k .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-tEsz8yjcYY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEsz8yjcYY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEsz8yjcYY img {
  width: 100%;
}
.cid-tEsz8yjcYY picture {
  height: 100%;
  object-fit: cover;
}
.cid-tEsz8yjcYY picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tEsz8yjcYY picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEsz8yjcYY .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-tEsz8yjcYY .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tEsz8yjcYY .mbr-section-title {
  color: #232323;
}
.cid-tEsz8yjcYY .mbr-text {
  color: #000000;
}
.cid-tEsz8yjcYY .mbr-description {
  color: #000000;
}
.cid-tEsD0919I1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEsD0919I1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEsD0919I1 img {
  width: 100%;
}
.cid-tEsD0919I1 picture {
  height: 100%;
  object-fit: cover;
}
.cid-tEsD0919I1 picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tEsD0919I1 picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEsD0919I1 .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-tEsD0919I1 .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tEsD0919I1 .mbr-section-title {
  color: #232323;
}
.cid-tEsD0919I1 .mbr-text {
  color: #000000;
}
.cid-tEsD0919I1 .mbr-description {
  color: #000000;
}
.cid-tEsE0y0tyM {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEsE0y0tyM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tEsE0y0tyM img {
  width: 100%;
}
.cid-tEsE0y0tyM picture {
  height: 100%;
  object-fit: cover;
}
.cid-tEsE0y0tyM picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tEsE0y0tyM picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tEsE0y0tyM .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-tEsE0y0tyM .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tEsE0y0tyM .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tEsE0y0tyM .mbr-text {
  color: #000000;
}
.cid-tEsE0y0tyM .mbr-description {
  color: #000000;
}
.cid-toxBitvtf7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-toxBitvtf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-toxBitvtf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toxBitvtf7 .mbr-section-title {
  color: #666666;
}
.cid-toxBitvtf7 .mbr-section-subtitle {
  color: #000000;
}
.cid-toxBitvtf7 .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-toxBitvtf7 .btn::after {
  content: ">";
}
.cid-toGnaSdWiO {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-toGnaSdWiO .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-toGnaSdWiO .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-toGnaSdWiO .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-toGnaSdWiO .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toGnaSdWiO .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-toGnaSdWiO .mbr-text {
  color: #000000;
}
.cid-tuyE4SofRW {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyE4SofRW .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyE4SofRW .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyE4SofRW .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyE4SofRW .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyE4SofRW .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyE4SofRW .mbr-text {
  color: #000000;
}
.cid-tuyIOSmlO6 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyIOSmlO6 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyIOSmlO6 .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyIOSmlO6 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyIOSmlO6 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyIOSmlO6 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyIOSmlO6 .mbr-text {
  color: #000000;
}
.cid-tuyJRdEhm6 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyJRdEhm6 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyJRdEhm6 .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyJRdEhm6 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyJRdEhm6 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyJRdEhm6 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyJRdEhm6 .mbr-text {
  color: #000000;
}
.cid-tuyKlMNYWN {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyKlMNYWN .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyKlMNYWN .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyKlMNYWN .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyKlMNYWN .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyKlMNYWN .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyKlMNYWN .mbr-text {
  color: #000000;
}
.cid-tuyKCD3pp2 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyKCD3pp2 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyKCD3pp2 .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyKCD3pp2 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyKCD3pp2 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyKCD3pp2 .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyKCD3pp2 .mbr-text {
  color: #000000;
}
.cid-tuyKT5zfKj {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyKT5zfKj .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyKT5zfKj .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyKT5zfKj .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyKT5zfKj .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyKT5zfKj .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyKT5zfKj .mbr-text {
  color: #000000;
}
.cid-tuyLaQPSfl {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyLaQPSfl .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyLaQPSfl .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyLaQPSfl .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyLaQPSfl .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyLaQPSfl .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyLaQPSfl .mbr-text {
  color: #000000;
}
.cid-tuyLqXRdVw {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tuyLqXRdVw .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuyLqXRdVw .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuyLqXRdVw .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuyLqXRdVw .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuyLqXRdVw .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-tuyLqXRdVw .mbr-text {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpwqfXECKz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cape-erquy-2000x657.webp");
}
@media (min-width: 992px) {
  .cid-tpwqfXECKz {
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-tpwqfXECKz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpwqfXECKz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpwqfXECKz .mbr-section-title {
  color: #ffffff;
}
.cid-tpwqfYvKg3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tpwqfYvKg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpwqfYvKg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tpwqfYvKg3 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tpwqfYvKg3 .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tpwqfYvKg3 .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-tpwqfYvKg3 .card {
    margin-bottom: 2rem;
  }
  .cid-tpwqfYvKg3 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tpwqfYvKg3 .icon-title {
  color: #666666;
}
.cid-tpwqfYvKg3 .card-title,
.cid-tpwqfYvKg3 .card-box {
  color: #666666;
}
.cid-tpwqfYvKg3 .mbr-text,
.cid-tpwqfYvKg3 .mbr-section-btn {
  color: #232323;
}
.cid-tpwqfZATB3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpwqfZATB3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpwqfZATB3 .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-tpwqfZATB3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tpwqfZATB3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpwqfZATB3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpwqfZATB3 .mbr-section-title {
  color: #666666;
}
.cid-ts1lol1FLR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ts1lol1FLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ts1lol1FLR .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-ts1lol1FLR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ts1lol1FLR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ts1lol1FLR .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ts1lol1FLR .mbr-section-title {
  color: #666666;
}
.cid-tvkGSpT9N6 {
  padding-top: 0rem;
  padding-bottom: 15rem;
  padding-left: 1rem;
  padding-right: 0rem;
  background-image: url("../../../assets/images/mont-st-michel-1920x1019.webp");
}
.cid-tvkGSpT9N6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvkGSpT9N6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvkGSpT9N6 .card {
  padding: 0;
}
.cid-tvkGSpT9N6 .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvkGSpT9N6 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvkGSpT9N6 .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvkGSpT9N6 .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvkGSpT9N6 .card-title {
  color: #ffffff;
  text-align: right;
}
.cid-tvkGSpT9N6 .mbr-text,
.cid-tvkGSpT9N6 .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tvqGMODoCe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvqGMODoCe .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvqGMODoCe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvqGMODoCe .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvqGMODoCe .currentcost {
  color: #232323;
}
.cid-tvqGMODoCe .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
.cid-tvqGMODoCe .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tvqGMODoCe .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tvqGMODoCe .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-tvqGMODoCe .text-box {
    padding: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvqGMODoCe .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvqGMODoCe .text-box {
    padding: 1rem;
  }
}
.cid-tvqGMODoCe .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tvqGMODoCe .image-wrapper {
  overflow: hidden;
}
.cid-tvqGMODoCe .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tvqGMODoCe H5 {
  color: #414a54;
}
.cid-tvqGMODoCe .mbr-section-subtitle {
  text-align: left;
}
.cid-tvqGMODoCe H2 {
  color: #414a54;
}
.cid-tvgOIS4hyY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvgOIS4hyY .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tvgOIS4hyY .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tvgOIS4hyY .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tvgOIS4hyY .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvgOIS4hyY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvgOIS4hyY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvgOIS4hyY .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvgOIS4hyY .currentcost {
  color: #232323;
}
.cid-tvgOIS4hyY .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
.cid-tvgOIS4hyY .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tvgOIS4hyY .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tvgOIS4hyY .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-tvgOIS4hyY .text-box {
    padding: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tvgOIS4hyY .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvgOIS4hyY .text-box {
    padding: 1rem;
  }
}
.cid-tvgOIS4hyY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tvgOIS4hyY .google-map {
  height: 30rem;
  position: relative;
  background-color: cornflowerblue;
}
.cid-tvgOIS4hyY .google-map iframe {
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: none ;
}
.cid-tvgOIS4hyY H5 {
  color: #414a54;
}
.cid-tvgOIS4hyY .mbr-section-subtitle {
  text-align: left;
}
.cid-tvgOIS4hyY H2 {
  color: #414a54;
}
.cid-tvgOIS4hyY .mbr-text {
  text-align: left;
}
.cid-tvgYz06oHf {
  padding-top: 0rem;
  padding-bottom: 15rem;
  padding-left: 1rem;
  padding-right: 0rem;
  background-image: url("../../../assets/images/hd-wallpaper-g9462649cf-1920-1920x1281.webp");
}
.cid-tvgYz06oHf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvgYz06oHf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvgYz06oHf .card {
  padding: 0;
}
.cid-tvgYz06oHf .card-wrapper {
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-tvgYz06oHf .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tvgYz06oHf .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tvgYz06oHf .card-wrapper {
    padding: 4rem;
  }
}
.cid-tvgYz06oHf .card-title {
  color: #ffffff;
  text-align: right;
}
.cid-tvgYz06oHf .mbr-text,
.cid-tvgYz06oHf .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-tpwqg0e0Uu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpwqg0e0Uu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpwqg0e0Uu .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-tpwqg0e0Uu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tpwqg0e0Uu img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpwqg0e0Uu .text-wrapper {
    padding: 2rem;
  }
}
.cid-tpwqg0e0Uu .mbr-section-title {
  color: #666666;
}
.cid-tpwqfZVdBz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tpwqfZVdBz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpwqfZVdBz .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-tpwqfZVdBz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tpwqfZVdBz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tpwqfZVdBz .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-tpwqfZVdBz .mbr-section-title {
  color: #666666;
}
.cid-tstTuXr2Vm {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tstTuXr2Vm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tstTuXr2Vm .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-tstTuXr2Vm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tstTuXr2Vm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tstTuXr2Vm .text-wrapper {
    padding: 2rem;
  }
}
.cid-tstTuXr2Vm .mbr-section-title {
  color: #666666;
}
.cid-ttpXIFj2yC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #eef5f9;
}
.cid-ttpXIFj2yC .item:focus,
.cid-ttpXIFj2yC span:focus {
  outline: none;
}
.cid-ttpXIFj2yC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ttpXIFj2yC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttpXIFj2yC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttpXIFj2yC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttpXIFj2yC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttpXIFj2yC .mbr-section-title {
  color: #666666;
  text-align: left;
}
.cid-ttpXIFj2yC .mbr-text,
.cid-ttpXIFj2yC .mbr-section-btn {
  text-align: left;
}
.cid-ttpXIFj2yC .item-title {
  text-align: left;
  color: #666666;
}
.cid-ttpXIFj2yC .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tqE7uZO4Lo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tqE7uZO4Lo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqE7uZO4Lo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqE7uZO4Lo .mbr-section-title {
  color: #666666;
}
.cid-tqE7uZO4Lo .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tqE7uZO4Lo .mbr-section-subtitle {
  text-align: left;
}
.cid-tq7LA6vMuZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tq7LA6vMuZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tq7LA6vMuZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tq7LA6vMuZ .item {
  padding-bottom: 2rem;
}
.cid-tq7LA6vMuZ .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tq7LA6vMuZ .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tq7LA6vMuZ .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-tq7LA6vMuZ .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tq7LA6vMuZ .carousel-control,
.cid-tq7LA6vMuZ .close {
  background: #1b1b1b;
}
.cid-tq7LA6vMuZ .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tq7LA6vMuZ .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tq7LA6vMuZ .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tq7LA6vMuZ .carousel-control-next span {
  margin-left: 5px;
}
.cid-tq7LA6vMuZ .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-tq7LA6vMuZ .close::before {
  content: '\e91a';
}
.cid-tq7LA6vMuZ .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tq7LA6vMuZ .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-tq7LA6vMuZ .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tq7LA6vMuZ .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tq7LA6vMuZ .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tq7LA6vMuZ .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tq7LA6vMuZ .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-tq7LA6vMuZ .carousel-indicators li.active,
.cid-tq7LA6vMuZ .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tq7LA6vMuZ .carousel-indicators li::after,
.cid-tq7LA6vMuZ .carousel-indicators li::before {
  content: none;
}
.cid-tq7LA6vMuZ .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tq7LA6vMuZ .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tq7LA6vMuZ .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tq7LA6vMuZ .carousel-indicators {
    display: none;
  }
}
.cid-tq7LA6vMuZ .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tq7LA6vMuZ .carousel-inner > .active {
  display: block;
}
.cid-tq7LA6vMuZ .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tq7LA6vMuZ .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tq7LA6vMuZ .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tq7LA6vMuZ .carousel-control,
  .cid-tq7LA6vMuZ .carousel-indicators,
  .cid-tq7LA6vMuZ .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tq7LA6vMuZ .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tq7LA6vMuZ .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tq7LA6vMuZ .carousel-indicators .active,
.cid-tq7LA6vMuZ .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tq7LA6vMuZ .carousel-indicators .active {
  background: #fff;
}
.cid-tq7LA6vMuZ .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tq7LA6vMuZ .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tq7LA6vMuZ .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tq7LA6vMuZ .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tq7LA6vMuZ .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tq7LA6vMuZ .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tq7LA6vMuZ .carousel {
  width: 100%;
}
.cid-tq7LA6vMuZ .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tq7LA6vMuZ .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tq7LA6vMuZ .modal.fade .modal-dialog,
.cid-tq7LA6vMuZ .modal.in .modal-dialog {
  transform: none;
}
.cid-tq7LA6vMuZ .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tq7LA6vMuZ H6 {
  text-align: center;
}
.cid-tpwqg0UqwW {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tpwqg0UqwW .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tpwqg0UqwW .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tpwqg0UqwW .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tpwqg0UqwW .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tpwqg0UqwW .mbr-section-title {
  color: #666666;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tsW93zrcT7 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/cliffs-111534-pixabay-1.webp");
}
.cid-tsW93zrcT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsW93zrcT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsW93zrcT7 .mbr-section-title {
  color: #ffffff;
}
.cid-tsW93zWqc7 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tsW93zWqc7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsW93zWqc7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsW93zWqc7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tsW93zWqc7 .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tsW93zWqc7 .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-tsW93zWqc7 .card {
    margin-bottom: 2rem;
  }
  .cid-tsW93zWqc7 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tsW93zWqc7 .icon-title {
  color: #666666;
}
.cid-tsW93zWqc7 .card-title,
.cid-tsW93zWqc7 .card-box {
  color: #414a54;
}
.cid-tsW93zWqc7 .mbr-text,
.cid-tsW93zWqc7 .mbr-section-btn {
  color: #232323;
}
.cid-twNla59ZZH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-3-1920x1280.webp");
}
.cid-twNla59ZZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-twNla59ZZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-twNla59ZZH .row {
  align-items: center;
}
.cid-twNla59ZZH .title-wrapper {
  position: relative;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-twNla59ZZH .title-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-twNla59ZZH .title-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twNla59ZZH .title-wrapper {
    padding: 2rem;
  }
}
.cid-twNla59ZZH .card {
  padding: 0;
}
.cid-twNla59ZZH .card-box {
  position: relative;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-twNla59ZZH .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-twNla59ZZH .card-box {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-twNla59ZZH .card-box {
    padding: 2rem;
  }
}
.cid-twNla59ZZH .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-twNla59ZZH .mbr-text,
.cid-twNla59ZZH .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-twNla59ZZH .svgmap path {
  transition: .6s fill;
  fill: #90a58a;
  stroke: #f6f7f0;
  stroke-width: 0.8;
}
.cid-twNla59ZZH .svgmap path:hover {
  fill: #ED6B1C;
}
.cid-twNla59ZZH .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-twNla59ZZH H2 {
  color: #ffffff;
}
.cid-twNla59ZZH H4 {
  text-align: center;
}
.cid-twNla59ZZH .mbr-section-title {
  text-align: center;
}
.cid-twNla59ZZH .card-wrapper {
  padding: 0rem;
  border-radius: 1rem;
  position: relative;
  margin: 1rem 0rem;
}
.cid-twNla59ZZH .card-wrapper:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cid-tuKKBZyYXR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f3f1f1;
}
.cid-tuKKBZyYXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuKKBZyYXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuKKBZyYXR .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tuKKBZyYXR .currentcost {
  color: #232323;
}
.cid-tuKKBZyYXR .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuKKBZyYXR .links {
    padding-left: 16px;
    padding-right: 0px;
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tuKKBZyYXR .rechts {
    padding-left: 0px;
    padding-right: 16px;
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tuKKBZyYXR .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuKKBZyYXR .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuKKBZyYXR .text-box {
    padding: 1rem;
  }
}
.cid-tuKKBZyYXR .image-wrapper {
  overflow: hidden;
}
.cid-tuKKBZyYXR .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tuKKBZyYXR .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tuKKBZyYXR .image-wrapper:hover::after {
  opacity: 0.1;
}
.cid-tuKKBZyYXR H5 {
  color: #414a54;
}
.cid-tuKKBZyYXR .mbr-section-subtitle {
  text-align: left;
}
.cid-tuKKBZyYXR H2 {
  color: #414a54;
}
.cid-tuKKEJvjpD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f1f1;
}
.cid-tuKKEJvjpD .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuKKEJvjpD .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuKKEJvjpD .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuKKEJvjpD .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuKKEJvjpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuKKEJvjpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuKKEJvjpD .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tuKKEJvjpD .currentcost {
  color: #232323;
}
.cid-tuKKEJvjpD .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuKKEJvjpD .links {
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tuKKEJvjpD .rechts {
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tuKKEJvjpD .text-box {
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuKKEJvjpD .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuKKEJvjpD .text-box {
    padding: 1rem;
  }
}
.cid-tuKKEJvjpD .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuKKEJvjpD .google-map {
  height: 30rem;
  position: relative;
  background-color: cornflowerblue;
}
.cid-tuKKEJvjpD .google-map iframe {
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: none ;
}
.cid-tuKKEJvjpD .i4ewOd-pzNkMb-haAclf {
  background-color: #e1dfd3;
}
.cid-tuKKEJvjpD H5 {
  color: #414a54;
}
.cid-tuKKEJvjpD .mbr-text {
  text-align: left;
  color: #414a54;
}
.cid-tvqMENrdFX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvqMENrdFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvqMENrdFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvqMENrdFX .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tvqMENrdFX .currentcost {
  color: #232323;
}
.cid-tvqMENrdFX .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tvqMENrdFX .links {
    padding-left: 16px;
    padding-right: 0px;
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tvqMENrdFX .rechts {
    padding-left: 0px;
    padding-right: 16px;
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tvqMENrdFX .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvqMENrdFX .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tvqMENrdFX .text-box {
    padding: 1rem;
  }
}
.cid-tvqMENrdFX .image-wrapper {
  overflow: hidden;
}
.cid-tvqMENrdFX .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-tvqMENrdFX .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tvqMENrdFX .image-wrapper:hover::after {
  opacity: 0.1;
}
.cid-tvqMENrdFX H5 {
  color: #414a54;
}
.cid-tvqMENrdFX .mbr-section-subtitle {
  text-align: left;
}
.cid-tvqMENrdFX H2 {
  color: #414a54;
}
.cid-tuChJqhNNj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuChJqhNNj .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuChJqhNNj .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuChJqhNNj .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuChJqhNNj .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuChJqhNNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuChJqhNNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuChJqhNNj .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tuChJqhNNj .currentcost {
  color: #232323;
}
.cid-tuChJqhNNj .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuChJqhNNj .links {
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tuChJqhNNj .rechts {
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tuChJqhNNj .text-box {
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuChJqhNNj .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuChJqhNNj .text-box {
    padding: 1rem;
  }
}
.cid-tuChJqhNNj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuChJqhNNj .google-map {
  height: 30rem;
  position: relative;
  background-color: cornflowerblue;
}
.cid-tuChJqhNNj .google-map iframe {
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: none ;
}
.cid-tuChJqhNNj .i4ewOd-pzNkMb-haAclf {
  background-color: #e1dfd3;
}
.cid-tuChJqhNNj H5 {
  color: #414a54;
}
.cid-tuChJqhNNj .mbr-text {
  text-align: left;
  color: #414a54;
}
.cid-tuCEIyzzgg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f1f1;
}
.cid-tuCEIyzzgg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCEIyzzgg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuCEIyzzgg .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tuCEIyzzgg .currentcost {
  color: #232323;
}
.cid-tuCEIyzzgg .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuCEIyzzgg .links {
    padding-left: 16px;
    padding-right: 0px;
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tuCEIyzzgg .rechts {
    padding-left: 0px;
    padding-right: 16px;
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tuCEIyzzgg .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuCEIyzzgg .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCEIyzzgg .text-box {
    padding: 1rem;
  }
}
.cid-tuCEIyzzgg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuCEIyzzgg H5 {
  color: #414a54;
}
.cid-tuCEIyzzgg .mbr-section-subtitle {
  text-align: left;
}
.cid-tuCEIyzzgg H2 {
  color: #414a54;
}
.cid-tuCERJnjZA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f3f1f1;
}
.cid-tuCERJnjZA .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tuCERJnjZA .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tuCERJnjZA .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tuCERJnjZA .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tuCERJnjZA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuCERJnjZA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuCERJnjZA .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tuCERJnjZA .currentcost {
  color: #232323;
}
.cid-tuCERJnjZA .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .cid-tuCERJnjZA .links {
    padding-left: 16px;
    padding-right: 0px;
  }
  .cid-tuCERJnjZA .rechts {
    padding-left: 0px;
    padding-right: 16px;
  }
  .cid-tuCERJnjZA .text-box {
    padding: 2rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuCERJnjZA .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tuCERJnjZA .text-box {
    padding: 1rem;
  }
}
.cid-tuCERJnjZA .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tuCERJnjZA .google-map {
  height: 30rem;
  position: relative;
  background-color: cornflowerblue;
}
.cid-tuCERJnjZA .google-map iframe {
  height: 100%;
  width: 100%;
  opacity: 1;
  pointer-events: none ;
}
.cid-tuCERJnjZA .i4ewOd-pzNkMb-haAclf {
  background-color: #e1dfd3;
}
.cid-tuCERJnjZA H5 {
  color: #414a54;
}
.cid-tuCERJnjZA .mbr-text {
  text-align: left;
  color: #414a54;
}
.cid-tuOewH2oLZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.webp");
}
.cid-tuOewH2oLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tuOewH2oLZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tuOewH2oLZ .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tuOewH2oLZ .mbr-section-title,
.cid-tuOewH2oLZ .mbr-section-subtitle {
  text-align: center;
}
.cid-tuOewH2oLZ .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tuOewH2oLZ .card-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-tuOewH2oLZ .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tuOewH2oLZ .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tuOewH2oLZ .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tuOewH2oLZ .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tuOewH2oLZ .card-title {
  color: #353535;
}
.cid-tsW93DyNp9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsW93DyNp9 .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-tsW93DyNp9 .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-tsW93DyNp9 .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-tsW93DyNp9 .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #efefef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsW93DyNp9 .mbr-section-title {
  color: #666666;
}
.cid-tsW93CqNhT {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tsW93CqNhT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsW93CqNhT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsW93CqNhT .mbr-section-title {
  color: #666666;
  text-align: left;
}
.cid-tsW93CqNhT .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tsW93CqNhT .mbr-section-subtitle {
  text-align: left;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4YUsgUvHq {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/campingfrankrijk-1400x582.webp");
}
.cid-u4YUsgUvHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u4YUsgUvHq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u4YUsgUvHq .mbr-text,
.cid-u4YUsgUvHq .mbr-section-btn {
  color: #232323;
}
.cid-u4YUsgUvHq .card-title,
.cid-u4YUsgUvHq .card-box {
  color: #ffffff;
}
.cid-u4YUsgUvHq .mbr-text,
.cid-u4YUsgUvHq .link-wrap {
  color: #ffffff;
}
.cid-u51Nbm6WvY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u51Nbm6WvY .mbr-fallback-image.disabled {
  display: none;
}
.cid-u51Nbm6WvY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u51Nbm6WvY .mbr-text,
.cid-u51Nbm6WvY .mbr-section-btn {
  color: #232323;
}
.cid-u51Nbm6WvY .mbr-text,
.cid-u51Nbm6WvY .link-wrap {
  color: #ffffff;
}
.cid-u51Nbm6WvY .form-control {
  font-size: 1.2rem;
}
.cid-ueLhELOPq2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ueLhELOPq2 .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-ueLhELOPq2 #first-part-mobile {
    display: none;
  }
  .cid-ueLhELOPq2 #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-ueLhELOPq2 #first-part-desktop {
    display: none;
  }
}
.cid-ueLhELOPq2 button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-ueLhELOPq2 .mbr-section-title {
  text-align: left;
}
.cid-uAWtjBrQSH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uAWtjBrQSH img,
.cid-uAWtjBrQSH .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uAWtjBrQSH .item:focus,
.cid-uAWtjBrQSH span:focus {
  outline: none;
}
.cid-uAWtjBrQSH .item-wrapper {
  position: relative;
}
.cid-uAWtjBrQSH .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uAWtjBrQSH .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-uAWtjBrQSH .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-uAWtjBrQSH .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-uAWtjBrQSH .text1 {
  zoom: 1.25;
}
.cid-uAWtjBrQSH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAWtjBrQSH .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uAWtjBrQSH .mbr-text,
.cid-uAWtjBrQSH .mbr-section-btn {
  text-align: left;
}
.cid-uAWtjBrQSH .item-title {
  text-align: left;
}
.cid-uAWtjBrQSH .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uAWtjBrQSH .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-uAWtjBrQSH .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-uAWtjBrQSH .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-uAWtjBrQSH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-uAWtjBrQSH .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-uAWtjBrQSH .embla__button--next,
.cid-uAWtjBrQSH .embla__button--prev {
  display: flex;
}
.cid-uAWtjBrQSH .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-uAWtjBrQSH .embla__button {
    display: none;
  }
}
.cid-uAWtjBrQSH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAWtjBrQSH .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uAWtjBrQSH .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uAWtjBrQSH .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uAWtjBrQSH .embla__button {
    topx: auto;
  }
}
.cid-uAWtjBrQSH .embla {
  position: relative;
  width: 100%;
}
.cid-uAWtjBrQSH .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uAWtjBrQSH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAWtjBrQSH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAWtjBrQSH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uAWtjBrQSH .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-uAWtjBrQSH .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-uAWtjBrQSH .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-uAWtjBrQSH .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-uAWtjBrQSH .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-uAWtjBrQSH .mbr-section-more .btn::after {
  content: ">";
}
.cid-uAWtjBrQSH .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uAWtjBrQSH H3 {
  color: #232323;
}
.cid-uAWtjBrQSH P {
  color: #000000;
}
.cid-uAWtjBrQSH .mbr-section-subtitle {
  text-align: left;
}
.cid-u5AnaQ8zvY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u5AnaQ8zvY img,
.cid-u5AnaQ8zvY .item-img {
  width: 100%;
}
.cid-u5AnaQ8zvY .item:focus,
.cid-u5AnaQ8zvY span:focus {
  outline: none;
}
.cid-u5AnaQ8zvY .item {
  margin-bottom: 2rem;
}
.cid-u5AnaQ8zvY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-u5AnaQ8zvY .item-wrapper .item-content {
  padding: 0.2rem 1rem;
}
.cid-u5AnaQ8zvY .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-u5AnaQ8zvY .item-title {
  text-align: center;
  color: #232323;
}
.cid-u5AnaQ8zvY .item-title:hover {
  text-decoration: underline;
  color: #0059ff;
}
.cid-u5AnaQ8zvY .item-subtitle {
  text-align: center;
}
.cid-u5AnaQ8zvY .mbr-text {
  text-align: center;
}
.cid-u57otdsClv {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u57otdsClv .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-u57otdsClv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u57otdsClv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u57otdsClv .item {
  padding-bottom: 0.6rem;
}
.cid-u57otdsClv .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-u57otdsClv .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-u57otdsClv .image-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-u57otdsClv .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-u57otdsClv .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-u57otdsClv .gallery-image:hover img {
  transform: scale(1.1, 1.1);
}
.cid-u57otdsClv .carousel-control,
.cid-u57otdsClv .close {
  background: #1b1b1b;
}
.cid-u57otdsClv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-u57otdsClv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-u57otdsClv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-u57otdsClv .carousel-control-next span {
  margin-left: 5px;
}
.cid-u57otdsClv .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-u57otdsClv .close::before {
  content: '\e91a';
}
.cid-u57otdsClv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u57otdsClv .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-u57otdsClv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u57otdsClv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u57otdsClv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u57otdsClv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-u57otdsClv .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-u57otdsClv .carousel-indicators li.active,
.cid-u57otdsClv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u57otdsClv .carousel-indicators li::after,
.cid-u57otdsClv .carousel-indicators li::before {
  content: none;
}
.cid-u57otdsClv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u57otdsClv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-u57otdsClv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-u57otdsClv .carousel-indicators {
    display: none;
  }
}
.cid-u57otdsClv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-u57otdsClv .carousel-inner > .active {
  display: block;
}
.cid-u57otdsClv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u57otdsClv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u57otdsClv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-u57otdsClv .carousel-control,
  .cid-u57otdsClv .carousel-indicators,
  .cid-u57otdsClv .modal .close {
    position: fixed;
  }
}
.cid-u57otdsClv .carousel-indicators .active,
.cid-u57otdsClv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-u57otdsClv .carousel-indicators .active {
  background: #fff;
}
.cid-u57otdsClv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-u57otdsClv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-u57otdsClv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u57otdsClv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-u57otdsClv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-u57otdsClv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-u57otdsClv .carousel {
  width: 100%;
}
.cid-u57otdsClv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-u57otdsClv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-u57otdsClv .modal.fade .modal-dialog,
.cid-u57otdsClv .modal.in .modal-dialog {
  transform: none;
}
.cid-u57otdsClv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-u57otdsClv .display-5 {
  text-align: center;
  color: #ffffff;
}
.cid-u57otdsClv .mbr-text {
  text-align: left;
}
.cid-u57otdsClv H2 {
  text-align: center;
}
.cid-u6Q2eHkBog {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6Q2eHkBog .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6Q2eHkBog img {
  width: 100%;
}
.cid-u6Q2eHkBog picture {
  height: 100%;
  object-fit: cover;
}
.cid-u6Q2eHkBog picture source {
  height: 100%;
  object-fit: cover;
}
.cid-u6Q2eHkBog picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u6Q2eHkBog .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-u6Q2eHkBog .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-u6Q2eHkBog .mbr-section-title {
  color: #232323;
}
.cid-u6Q2eHkBog .mbr-text {
  color: #000000;
}
.cid-u6Q2eHkBog .mbr-description {
  color: #000000;
}
.cid-u6PNscN1xm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6PNscN1xm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6PNscN1xm img {
  width: 100%;
}
.cid-u6PNscN1xm picture {
  height: 100%;
  object-fit: cover;
}
.cid-u6PNscN1xm picture source {
  height: 100%;
  object-fit: cover;
}
.cid-u6PNscN1xm picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-u6PNscN1xm .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-u6PNscN1xm .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-u6PNscN1xm .mbr-section-title {
  color: #232323;
}
.cid-u6PNscN1xm .mbr-text {
  color: #000000;
}
.cid-u6PNscN1xm .mbr-description {
  color: #000000;
}
.cid-u51VZwuOsN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u51VZwuOsN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u51VZwuOsN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u51VZwuOsN .card-wrapper {
  background: none;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-u51VZwuOsN .card-wrapper {
    padding: 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u51VZwuOsN .card-wrapper {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-u51VZwuOsN .card-wrapper {
    padding: 1rem;
  }
}
.cid-u51VZwuOsN .mbr-text,
.cid-u51VZwuOsN .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-u51VZwuOsN .card-title,
.cid-u51VZwuOsN .card-box {
  text-align: center;
  color: #232323;
}
.cid-u51VZwuOsN .svgmap path {
  transition: .6s fill;
  fill: #90a58a;
  stroke: #f6f7f0;
  stroke-width: 0.8;
}
.cid-u51VZwuOsN .svgmap path:hover {
  fill: #ED6B1C;
}
.cid-u51VZwuOsN .svg-container {
  width: 100%;
  min-height: 300px;
}
.cid-txos8wqVYd {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-txos8wqVYd .row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.cid-txos8wqVYd .row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txos8wqVYd .mbr-text {
  text-align: center;
}
.cid-txos8wqVYd .ol-text {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-txos8wqVYd .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-txos8wqVYd .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-txos8wqVYd .ol-text {
    padding: 0rem 8rem;
  }
}
.cid-txos8wqVYd ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-txos8wqVYd ol li {
  margin-bottom: 1rem;
}
.cid-txos8wqVYd ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-txos8wqVYd ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-txbvQiDon3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-txbvQiDon3 .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-txbvQiDon3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-txbvQiDon3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txbvQiDon3 .item {
  padding-bottom: 0.6rem;
}
.cid-txbvQiDon3 .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-txbvQiDon3 .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-txbvQiDon3 .image-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-txbvQiDon3 .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-txbvQiDon3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txbvQiDon3 .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txbvQiDon3 .carousel-control,
.cid-txbvQiDon3 .close {
  background: #1b1b1b;
}
.cid-txbvQiDon3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-txbvQiDon3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-txbvQiDon3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-txbvQiDon3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-txbvQiDon3 .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-txbvQiDon3 .close::before {
  content: '\e91a';
}
.cid-txbvQiDon3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-txbvQiDon3 .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-txbvQiDon3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txbvQiDon3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-txbvQiDon3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-txbvQiDon3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-txbvQiDon3 .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-txbvQiDon3 .carousel-indicators li.active,
.cid-txbvQiDon3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-txbvQiDon3 .carousel-indicators li::after,
.cid-txbvQiDon3 .carousel-indicators li::before {
  content: none;
}
.cid-txbvQiDon3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-txbvQiDon3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-txbvQiDon3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-txbvQiDon3 .carousel-indicators {
    display: none;
  }
}
.cid-txbvQiDon3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-txbvQiDon3 .carousel-inner > .active {
  display: block;
}
.cid-txbvQiDon3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-txbvQiDon3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-txbvQiDon3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-txbvQiDon3 .carousel-control,
  .cid-txbvQiDon3 .carousel-indicators,
  .cid-txbvQiDon3 .modal .close {
    position: fixed;
  }
}
.cid-txbvQiDon3 .carousel-indicators .active,
.cid-txbvQiDon3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-txbvQiDon3 .carousel-indicators .active {
  background: #fff;
}
.cid-txbvQiDon3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-txbvQiDon3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-txbvQiDon3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-txbvQiDon3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-txbvQiDon3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-txbvQiDon3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-txbvQiDon3 .carousel {
  width: 100%;
}
.cid-txbvQiDon3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-txbvQiDon3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-txbvQiDon3 .modal.fade .modal-dialog,
.cid-txbvQiDon3 .modal.in .modal-dialog {
  transform: none;
}
.cid-txbvQiDon3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-txbvQiDon3 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-txIv1vPaok {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-txIv1vPaok .counter-container {
  zoom: 0.9;
  -moz-transform: scale(0.9);
}
.cid-txIv1vPaok .coltitle {
  text-align: left;
}
.cid-txIv1vPaok .mbr-section-title {
  color: #353535;
  text-align: center;
  margin-bottom: 1rem;
  zoom: 1.1;
  -moz-transform: scale(1.1);
}
.cid-txIv1vPaok .col {
  margin-bottom: 4rem;
}
.cid-txIv1vPaok .mbr-text DIV {
  text-align: left;
}
.cid-txIv1vPaok .mbr-text {
  color: #353535;
}
.cid-txIv1vPaok .text-primary:hover {
  text-decoration: underline;
}
.cid-txXulAlZ9W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-txXulAlZ9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-txXulAlZ9W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-txXulAlZ9W .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-txXulAlZ9W .currentcost {
  color: #232323;
}
.cid-txXulAlZ9W .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-txXulAlZ9W .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-txXulAlZ9W .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-txXulAlZ9W .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-txXulAlZ9W .text-box {
    padding: 4rem;
  }
  .cid-txXulAlZ9W .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-txXulAlZ9W .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txXulAlZ9W .text-box {
    padding: 1rem;
  }
}
.cid-txXulAlZ9W .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-txXulAlZ9W .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-txXulAlZ9W .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-txXulAlZ9W .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-txXulAlZ9W .img-description p {
  margin-bottom: 0;
}
.cid-txXulAlZ9W H5 {
  color: #414a54;
}
.cid-txXulAlZ9W .mbr-section-subtitle {
  text-align: left;
}
.cid-txXulAlZ9W H2 {
  color: #353535;
}
.cid-txXulAlZ9W .mbr-text,
.cid-txXulAlZ9W .cost,
.cid-txXulAlZ9W .mbr-section-btn {
  color: #353535;
}
.cid-txXulAlZ9W .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-txXulAlZ9W .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-txXulAlZ9W .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-txXulAlZ9W .btn::after {
  content: ">";
}
.cid-txXulAlZ9W picture {
  height: 100%;
  object-fit: cover;
}
.cid-txXulAlZ9W picture source {
  height: 100%;
  object-fit: cover;
}
.cid-txXulAlZ9W picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tvv4IUHdUE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvv4IUHdUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvv4IUHdUE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvv4IUHdUE .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tvv4IUHdUE .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tvv4IUHdUE .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-tvv4IUHdUE .card {
    margin-bottom: 2rem;
  }
  .cid-tvv4IUHdUE .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tvv4IUHdUE .icon-title {
  color: #353535;
}
.cid-tvv4IUHdUE .card-title,
.cid-tvv4IUHdUE .card-box {
  color: #353535;
}
.cid-tvv4IUHdUE .mbr-text,
.cid-tvv4IUHdUE .mbr-section-btn {
  color: #232323;
}
.cid-tvv4IUHdUE .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-tvv4IUHdUE .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-tvv4IUHdUE .btn::after {
  content: ">";
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF7sT1spBq {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tF7sT1spBq {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-tF7sT1spBq .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tF7sT1spBq picture {
  height: 100%;
  object-fit: cover;
}
.cid-tF7sT1spBq picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tF7sT1spBq picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tF7sT1spBq .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7sT1spBq .mbr-section-title {
  color: #ffffff;
}
.cid-tF7sT1spBq .mbr-text,
.cid-tF7sT1spBq .mbr-section-btn {
  color: #ffffff;
}
.cid-tF7sT20ToT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tF7sT20ToT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7sT20ToT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7sT20ToT .mbr-section-title {
  color: #232323;
}
.cid-tF7sT20ToT .mbr-section-subtitle {
  color: #000000;
}
.cid-tF7sT20ToT .mbr-section-subtitle P {
  text-align: center;
}
.cid-tFdlJKay3J {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-tFdlJKay3J #modalSheet {
  top: 70px !important;
}
.cid-tFdlJKay3J .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-tFdlJKay3J img,
.cid-tFdlJKay3J .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tFdlJKay3J .item:focus,
.cid-tFdlJKay3J span:focus {
  outline: none;
}
.cid-tFdlJKay3J .item {
  margin-bottom: 2rem;
}
.cid-tFdlJKay3J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tFdlJKay3J .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-tFdlJKay3J .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tFdlJKay3J .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tFdlJKay3J .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tFdlJKay3J .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-tFdlJKay3J .mbr-section-title {
  color: #ffffff;
}
.cid-tFdlJKay3J .mbr-text,
.cid-tFdlJKay3J .mbr-section-btn {
  text-align: left;
}
.cid-tFdlJKay3J .item-title {
  text-align: left;
  color: #353535;
}
.cid-tFdlJKay3J .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-tFdlJKay3J .item-img {
  position: relative;
  justify-content: center;
}
.cid-tFdlJKay3J .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-tFdlJKay3J .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tFdlJKay3J .item-img .img-description p {
  margin-bottom: 0;
}
.cid-tFdlJKay3J .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-tFdlJKay3J .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-tFdlJKay3J .btn::after {
  content: ">";
}
.cid-tFd0DLmtBK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tFd0DLmtBK .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tFd0DLmtBK .card {
  padding: 0 15px;
  height: auto;
  position: relative;
}
.cid-tFd0DLmtBK .item-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-tFd0DLmtBK .card-wrapper {
  background-color: #9b9287;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6em;
}
.cid-tFd0DLmtBK .card-linkk {
  position: relative;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cid-tFd0DLmtBK .mbr-number {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #fff;
}
.cid-tFd0DLmtBK .mbr-title {
  pointer-events: visible;
  color: #fff;
}
.cid-tFd0DLmtBK .mbr-title::after {
  position: absolute;
  content: ">";
}
.cid-tFd0DLmtBK .card-wrapper:hover {
  background-color: #afa496;
}
.cid-tFd0DLmtBK .card-wrapper:hover .mbr-title::after {
  content: ">";
  transform: translate(0.25em, 0);
}
.cid-tFd0DLmtBK .mbr-text {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-tFd0DLmtBK H4 {
  color: #ffffff;
  text-align: center;
}
.cid-tFd0DLmtBK H2 {
  text-align: center;
  color: #353535;
}
.cid-tF7sT3pBw5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tF7sT3pBw5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF7sT3pBw5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF7sT3pBw5 .mbr-section-title {
  color: #666666;
}
.cid-tF7sT3pBw5 .mbr-section-subtitle {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tG0M7A9SRK {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tG0M7A9SRK {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-tG0M7A9SRK .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tG0M7A9SRK picture {
  height: 100%;
  object-fit: cover;
}
.cid-tG0M7A9SRK picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tG0M7A9SRK picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tG0M7A9SRK .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0M7A9SRK .mbr-section-title {
  color: #ffffff;
}
.cid-tG0M7A9SRK .mbr-text,
.cid-tG0M7A9SRK .mbr-section-btn {
  color: #ffffff;
}
.cid-tGCWNpeiLz {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tGCWNpeiLz .mbr-section-title {
  text-align: center;
}
.cid-tGCWNpeiLz .mbr-section-subtitle {
  text-align: center;
}
.cid-tGCWNpeiLz .mbr-text {
  text-align: center;
}
.cid-tG0M7AyqTQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-tG0M7AyqTQ #modalSheet {
  top: 70px !important;
}
.cid-tG0M7AyqTQ .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-tG0M7AyqTQ img,
.cid-tG0M7AyqTQ .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tG0M7AyqTQ .item:focus,
.cid-tG0M7AyqTQ span:focus {
  outline: none;
}
.cid-tG0M7AyqTQ .item {
  margin-bottom: 2rem;
}
.cid-tG0M7AyqTQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tG0M7AyqTQ .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-tG0M7AyqTQ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tG0M7AyqTQ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tG0M7AyqTQ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tG0M7AyqTQ .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-tG0M7AyqTQ .mbr-section-title {
  color: #ffffff;
}
.cid-tG0M7AyqTQ .mbr-text,
.cid-tG0M7AyqTQ .mbr-section-btn {
  text-align: left;
}
.cid-tG0M7AyqTQ .item-title {
  text-align: left;
  color: #353535;
}
.cid-tG0M7AyqTQ .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-tG0M7AyqTQ .item-img {
  position: relative;
  justify-content: center;
}
.cid-tG0M7AyqTQ .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-tG0M7AyqTQ .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tG0M7AyqTQ .item-img .img-description p {
  margin-bottom: 0;
}
.cid-tG0M7AyqTQ .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-tG0M7AyqTQ .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-tG0M7AyqTQ .btn::after {
  content: ">";
}
.cid-tG0M7BiQhl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tG0M7BiQhl .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tG0M7BiQhl .card {
  padding: 0 15px;
  height: auto;
  position: relative;
}
.cid-tG0M7BiQhl .item-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-tG0M7BiQhl .card-wrapper {
  background-color: #9b9287;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6em;
}
.cid-tG0M7BiQhl .card-linkk {
  position: relative;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cid-tG0M7BiQhl .mbr-number {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #fff;
}
.cid-tG0M7BiQhl .mbr-title {
  pointer-events: visible;
  color: #fff;
}
.cid-tG0M7BiQhl .mbr-title::after {
  position: absolute;
  content: ">";
}
.cid-tG0M7BiQhl .card-wrapper:hover {
  background-color: #afa496;
}
.cid-tG0M7BiQhl .card-wrapper:hover .mbr-title::after {
  content: ">";
  transform: translate(0.25em, 0);
}
.cid-tG0M7BiQhl .mbr-text {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-tG0M7BiQhl H2 {
  text-align: center;
  color: #353535;
}
.cid-tG0M7BiQhl H3 {
  text-align: center;
}
.cid-tGGJXZTVo9 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tGGJXZTVo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGGJXZTVo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGGJXZTVo9 .mbr-section-title {
  color: #666666;
}
.cid-tGGJXZTVo9 .mbr-section-subtitle {
  color: #000000;
}
.cid-tGFNnIty2o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tG0M7BWQKM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tG0M7BWQKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG0M7BWQKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG0M7BWQKM .mbr-section-title {
  color: #666666;
}
.cid-tG0M7BWQKM .mbr-section-subtitle {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHLanFfc89 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHLanFfc89 {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-tHLanFfc89 .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tHLanFfc89 picture {
  height: 100%;
  object-fit: cover;
}
.cid-tHLanFfc89 picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tHLanFfc89 picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tHLanFfc89 .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHLanFfc89 .mbr-section-title {
  color: #ffffff;
}
.cid-tHLanFfc89 .mbr-text,
.cid-tHLanFfc89 .mbr-section-btn {
  color: #ffffff;
}
.cid-tHLanFvLwL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHLanFvLwL .mbr-section-title {
  text-align: center;
}
.cid-tHLanFvLwL .mbr-section-subtitle {
  text-align: center;
}
.cid-tHLanFvLwL .mbr-text {
  text-align: center;
}
.cid-tHLanFBIjn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-tHLanFBIjn #modalSheet {
  top: 70px !important;
}
.cid-tHLanFBIjn .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-tHLanFBIjn img,
.cid-tHLanFBIjn .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tHLanFBIjn .item:focus,
.cid-tHLanFBIjn span:focus {
  outline: none;
}
.cid-tHLanFBIjn .item {
  margin-bottom: 2rem;
}
.cid-tHLanFBIjn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHLanFBIjn .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-tHLanFBIjn .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHLanFBIjn .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tHLanFBIjn .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tHLanFBIjn .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-tHLanFBIjn .mbr-section-title {
  color: #ffffff;
}
.cid-tHLanFBIjn .mbr-text,
.cid-tHLanFBIjn .mbr-section-btn {
  text-align: left;
}
.cid-tHLanFBIjn .item-title {
  text-align: left;
  color: #353535;
}
.cid-tHLanFBIjn .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-tHLanFBIjn .item-img {
  position: relative;
  justify-content: center;
}
.cid-tHLanFBIjn .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-tHLanFBIjn .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tHLanFBIjn .item-img .img-description p {
  margin-bottom: 0;
}
.cid-tHLanFBIjn .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-tHLanFBIjn .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-tHLanFBIjn .btn::after {
  content: ">";
}
.cid-tHLanGhAdn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tHLanGhAdn .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-tHLanGhAdn .card {
  padding: 0 15px;
  height: auto;
  position: relative;
}
.cid-tHLanGhAdn .item-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-tHLanGhAdn .card-wrapper {
  background-color: #9b9287;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6em;
}
.cid-tHLanGhAdn .card-linkk {
  position: relative;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cid-tHLanGhAdn .mbr-number {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #fff;
}
.cid-tHLanGhAdn .mbr-title {
  pointer-events: visible;
  color: #fff;
}
.cid-tHLanGhAdn .mbr-title::after {
  position: absolute;
  content: ">";
}
.cid-tHLanGhAdn .card-wrapper:hover {
  background-color: #afa496;
}
.cid-tHLanGhAdn .card-wrapper:hover .mbr-title::after {
  content: ">";
  transform: translate(0.25em, 0);
}
.cid-tHLanGhAdn .mbr-text {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-tHLanGhAdn H2 {
  text-align: center;
  color: #353535;
}
.cid-tHLanGhAdn H3 {
  text-align: center;
}
.cid-tHLanGARaB {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHLanGARaB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHLanGARaB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHLanGARaB .mbr-section-title {
  color: #666666;
}
.cid-tHLanGARaB .mbr-section-subtitle {
  color: #000000;
}
.cid-tHLanGMIUD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tHLanGMIUD .list {
  color: #0059ff;
}
.cid-tHLanH3G83 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tHLanH3G83 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHLanH3G83 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHLanH3G83 .mbr-section-title {
  color: #666666;
}
.cid-tHLanH3G83 .mbr-section-subtitle {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVMlNevqKL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: linear-gradient(140deg, #ff8f29 10%, #4479d9 100%) !important;
}
.cid-tVMlNevqKL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMlNevqKL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMlNevqKL P {
  text-align: center;
  color: #ffffff;
}
.cid-tVMlNevqKL .mbr-section-title {
  text-align: center;
}
.cid-tVMlNeS0G6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-tVMlNeS0G6 #modalSheet {
  top: 70px !important;
}
.cid-tVMlNeS0G6 .crumbs {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin: 0.6rem 0.3rem;
}
.cid-tVMlNeS0G6 .item:focus,
.cid-tVMlNeS0G6 span:focus {
  outline: none;
}
.cid-tVMlNeS0G6 .item {
  margin-bottom: 2rem;
}
.cid-tVMlNeS0G6 .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
  text-align: center;
}
.cid-tVMlNeS0G6 .mbr-iconfont {
  order: 0;
  margin-left: 0;
  margin-right: 0.5rem;
}
.cid-tVMlNeS0G6 .mbr-iconfont2 {
  order: 1;
  margin-left: 0.5rem;
  margin-right: 0;
}
.cid-tVMlNeS0G6 .btn1 {
  display: none;
}
.cid-tVMlNeS0G6 .mbr-section-title,
.cid-tVMlNeS0G6 h2 {
  color: #ffffff;
}
.cid-tVMlNeS0G6 .mbr-text {
  text-align: right;
}
.cid-tVMlNeS0G6 H2 {
  text-align: right;
}
.cid-tVMlNeS0G6 .mbr-section-title {
  text-align: center;
}
.cid-tVMlNeS0G6 .item-content {
  padding: 0 20px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: right;
}
.cid-tVMlNeS0G6 .item-content .btn {
  padding: 0.3rem 0.6rem;
}
.cid-tVMlNeS0G6 .mbr-name {
  margin: 0 20px 0 0;
}
.cid-tVMlNeS0G6 P {
  color: #ffffff;
}
.cid-tVMlNeS0G6 .form-control {
  font-size: 1rem;
  padding: 0.4rem;
  min-height: 0;
}
.cid-tVMlNeS0G6 .form-group {
  margin-bottom: 0;
}
.cid-tVMlNeS0G6 option {
  font-size: 1rem;
}
.cid-tVMlNeS0G6 .mbr-text,
.cid-tVMlNeS0G6 .mbr-section-btn {
  text-align: center;
}
.cid-tVMlNeS0G6 .mbr-text,
.cid-tVMlNeS0G6 .item-content {
  text-align: left;
}
.cid-tVMlNf3a8F {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #baae9d;
}
.cid-tVMlNf3a8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMlNf3a8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMlNf3a8F .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tVMlNf3a8F .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-tVMlNf3a8F .card-box2 {
  background-color: #e4dacd;
}
.cid-tVMlNf3a8F .image-wrapper img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.cid-tVMlNf3a8F .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-tVMlNf3a8F .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-tVMlNf3a8F .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-tVMlNf3a8F .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tVMlNf3a8F .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tVMlNf3a8F .card-box {
    padding-right: 2rem;
  }
  .cid-tVMlNf3a8F .image-wrapper img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
}
@media (min-width: 992px) {
  .cid-tVMlNf3a8F .card-box {
    padding-left: 0rem;
    padding-right: 4rem;
  }
}
.cid-tVMlNf3a8F .depts {
  text-align: left;
  font-size: 0.9rem;
  line-height: 50px;
}
.cid-tVMlNf3a8F .depts img {
  width: 50px;
  vertical-align: middle;
  margin-right: 15px;
}
.cid-tVMlNf3a8F .list {
  text-align: left;
  color: #000000;
  padding-left: 0;
  margin-bottom: 0.5rem;
}
.cid-tVMlNf3a8F .list li {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-tVMlNf3a8F .desc {
  font-size: 1rem;
}
.cid-tVMlNf3a8F .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-tVMlNf3a8F .btn {
  padding: 0.4rem 0.8rem;
  margin: 0 0.6rem 0 0;
}
.cid-tVMlNf3a8F .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-tVMlNf3a8F .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-tVMlNfKV4Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-tVMlNfKV4Q li {
  display: inline;
}
.cid-tVMlNfKV4Q .pagination a.current,
.cid-tVMlNfKV4Q .pagination a.current:hover {
  background: #f5793b;
  color: #FFF;
}
.cid-tVMlNfKV4Q .pagination > li > a {
  position: relative;
  float: left;
  padding: 10px 16px;
  margin-left: -1px;
  text-decoration: none;
  color: #dd5500;
  background-color: #fff;
  border: 1px solid #dd5500;
}
.cid-tVMlNfKV4Q .pagination > li:first-child > a {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.cid-tVMlNfKV4Q .pagination > li:last-child > a {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tXQqgnBRVd {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tXQqgnBRVd {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-tXQqgnBRVd .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-tXQqgnBRVd picture {
  height: 100%;
  object-fit: cover;
}
.cid-tXQqgnBRVd picture source {
  height: 100%;
  object-fit: cover;
}
.cid-tXQqgnBRVd picture img {
  height: 100%;
  object-fit: cover;
}
.cid-tXQqgnBRVd .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXQqgnBRVd .mbr-section-title {
  color: #ffffff;
}
.cid-tXQqgnBRVd .mbr-text,
.cid-tXQqgnBRVd .mbr-section-btn {
  color: #ffffff;
}
.cid-tYhvH2ZXZV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tXQqgnTWfK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tXQqgnTWfK .mbr-section-title {
  text-align: left;
}
.cid-tXQqgnTWfK .mbr-section-subtitle {
  text-align: center;
}
.cid-tXQqgnTWfK .mbr-text {
  text-align: left;
}
.cid-tYyjRZ9Lzu {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYeshF7uBc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYeshF7uBc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYeshF7uBc .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-tYeshF7uBc .card {
    margin-bottom: 2rem;
  }
  .cid-tYeshF7uBc .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYeshF7uBc .card-title,
.cid-tYeshF7uBc .card-box {
  color: #353535;
}
.cid-tYeshF7uBc .mbr-text,
.cid-tYeshF7uBc .mbr-section-btn {
  color: #232323;
}
.cid-tYe5PmCo5a {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYe5PmCo5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYe5PmCo5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYe5PmCo5a .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYe5PmCo5a .img-item {
  position: relative;
}
.cid-tYe5PmCo5a .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYe5PmCo5a .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYe5PmCo5a .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYesqAwifK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYesqAwifK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYesqAwifK .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-tYesqAwifK .card {
    margin-bottom: 2rem;
  }
  .cid-tYesqAwifK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYesqAwifK .card-title,
.cid-tYesqAwifK .card-box {
  color: #353535;
}
.cid-tYesqAwifK .mbr-text,
.cid-tYesqAwifK .mbr-section-btn {
  color: #232323;
}
.cid-tYeiNKkfii {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYeiNKkfii .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYeiNKkfii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYeiNKkfii .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYeiNKkfii .img-item {
  position: relative;
}
.cid-tYeiNKkfii .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYeiNKkfii .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYeiNKkfii .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu5S145y {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu5S145y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu5S145y .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-tYhu5S145y .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu5S145y .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu5S145y .card-title,
.cid-tYhu5S145y .card-box {
  color: #353535;
}
.cid-tYhu5S145y .mbr-text,
.cid-tYhu5S145y .mbr-section-btn {
  color: #232323;
}
.cid-tYpOw6yEJJ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYpOw6yEJJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYpOw6yEJJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYpOw6yEJJ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYpOw6yEJJ .img-item {
  position: relative;
}
.cid-tYpOw6yEJJ .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYpOw6yEJJ .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYpOw6yEJJ .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYesrwSbao {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYesrwSbao .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYesrwSbao .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-tYesrwSbao .card {
    margin-bottom: 2rem;
  }
  .cid-tYesrwSbao .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYesrwSbao .card-title,
.cid-tYesrwSbao .card-box {
  color: #353535;
}
.cid-tYesrwSbao .mbr-text,
.cid-tYesrwSbao .mbr-section-btn {
  color: #232323;
}
.cid-tYeiPa5oUf {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYeiPa5oUf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYeiPa5oUf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYeiPa5oUf .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYeiPa5oUf .img-item {
  position: relative;
}
.cid-tYeiPa5oUf .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYeiPa5oUf .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYeiPa5oUf .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu2sCluU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu2sCluU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu2sCluU .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-tYhu2sCluU .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu2sCluU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu2sCluU .card-title,
.cid-tYhu2sCluU .card-box {
  color: #353535;
}
.cid-tYhu2sCluU .mbr-text,
.cid-tYhu2sCluU .mbr-section-btn {
  color: #232323;
}
.cid-tYvHDkdeMO {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYvHDkdeMO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYvHDkdeMO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYvHDkdeMO .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYvHDkdeMO .img-item {
  position: relative;
}
.cid-tYvHDkdeMO .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYvHDkdeMO .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYvHDkdeMO .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu3WYui8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu3WYui8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu3WYui8 .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-tYhu3WYui8 .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu3WYui8 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu3WYui8 .card-title,
.cid-tYhu3WYui8 .card-box {
  color: #353535;
}
.cid-tYhu3WYui8 .mbr-text,
.cid-tYhu3WYui8 .mbr-section-btn {
  color: #232323;
}
.cid-tYvOMS07lu {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYvOMS07lu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYvOMS07lu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYvOMS07lu .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYvOMS07lu .img-item {
  position: relative;
}
.cid-tYvOMS07lu .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYvOMS07lu .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYvOMS07lu .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu5cuuoU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu5cuuoU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu5cuuoU .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-tYhu5cuuoU .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu5cuuoU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu5cuuoU .card-title,
.cid-tYhu5cuuoU .card-box {
  color: #353535;
}
.cid-tYhu5cuuoU .mbr-text,
.cid-tYhu5cuuoU .mbr-section-btn {
  color: #232323;
}
.cid-tYmMAK3Pyg {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYmMAK3Pyg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYmMAK3Pyg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYmMAK3Pyg .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYmMAK3Pyg .img-item {
  position: relative;
}
.cid-tYmMAK3Pyg .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYmMAK3Pyg .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYmMAK3Pyg .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu6wmIFP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu6wmIFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu6wmIFP .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-tYhu6wmIFP .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu6wmIFP .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu6wmIFP .card-title,
.cid-tYhu6wmIFP .card-box {
  color: #353535;
}
.cid-tYhu6wmIFP .mbr-text,
.cid-tYhu6wmIFP .mbr-section-btn {
  color: #232323;
}
.cid-tYvqE9FQlD {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYvqE9FQlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYvqE9FQlD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYvqE9FQlD .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYvqE9FQlD .img-item {
  position: relative;
}
.cid-tYvqE9FQlD .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYvqE9FQlD .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYvqE9FQlD .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu7bJTPK {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu7bJTPK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu7bJTPK .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-tYhu7bJTPK .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu7bJTPK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu7bJTPK .card-title,
.cid-tYhu7bJTPK .card-box {
  color: #353535;
}
.cid-tYhu7bJTPK .mbr-text,
.cid-tYhu7bJTPK .mbr-section-btn {
  color: #232323;
}
.cid-tYsZYFBmQK {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYsZYFBmQK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYsZYFBmQK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYsZYFBmQK .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYsZYFBmQK .img-item {
  position: relative;
}
.cid-tYsZYFBmQK .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYsZYFBmQK .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYsZYFBmQK .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu7QSFVw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu7QSFVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu7QSFVw .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-tYhu7QSFVw .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu7QSFVw .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu7QSFVw .card-title,
.cid-tYhu7QSFVw .card-box {
  color: #353535;
}
.cid-tYhu7QSFVw .mbr-text,
.cid-tYhu7QSFVw .mbr-section-btn {
  color: #232323;
}
.cid-tYwIdZLNwS {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYwIdZLNwS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYwIdZLNwS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYwIdZLNwS .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYwIdZLNwS .img-item {
  position: relative;
}
.cid-tYwIdZLNwS .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYwIdZLNwS .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYwIdZLNwS .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu8uEJuQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu8uEJuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu8uEJuQ .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-tYhu8uEJuQ .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu8uEJuQ .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu8uEJuQ .card-title,
.cid-tYhu8uEJuQ .card-box {
  color: #353535;
}
.cid-tYhu8uEJuQ .mbr-text,
.cid-tYhu8uEJuQ .mbr-section-btn {
  color: #232323;
}
.cid-tYt5pZO5r2 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYt5pZO5r2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYt5pZO5r2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYt5pZO5r2 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYt5pZO5r2 .img-item {
  position: relative;
}
.cid-tYt5pZO5r2 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYt5pZO5r2 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYt5pZO5r2 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu9eV9nW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu9eV9nW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu9eV9nW .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-tYhu9eV9nW .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu9eV9nW .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu9eV9nW .card-title,
.cid-tYhu9eV9nW .card-box {
  color: #353535;
}
.cid-tYhu9eV9nW .mbr-text,
.cid-tYhu9eV9nW .mbr-section-btn {
  color: #232323;
}
.cid-tYt4jke4hJ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYt4jke4hJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYt4jke4hJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYt4jke4hJ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYt4jke4hJ .img-item {
  position: relative;
}
.cid-tYt4jke4hJ .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYt4jke4hJ .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYt4jke4hJ .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhu9VLHrS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhu9VLHrS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhu9VLHrS .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-tYhu9VLHrS .card {
    margin-bottom: 2rem;
  }
  .cid-tYhu9VLHrS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhu9VLHrS .card-title,
.cid-tYhu9VLHrS .card-box {
  color: #353535;
}
.cid-tYhu9VLHrS .mbr-text,
.cid-tYhu9VLHrS .mbr-section-btn {
  color: #232323;
}
.cid-tYwpszpzrj {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYwpszpzrj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYwpszpzrj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYwpszpzrj .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYwpszpzrj .img-item {
  position: relative;
}
.cid-tYwpszpzrj .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYwpszpzrj .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYwpszpzrj .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhuaDrcPD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhuaDrcPD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhuaDrcPD .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-tYhuaDrcPD .card {
    margin-bottom: 2rem;
  }
  .cid-tYhuaDrcPD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhuaDrcPD .card-title,
.cid-tYhuaDrcPD .card-box {
  color: #353535;
}
.cid-tYhuaDrcPD .mbr-text,
.cid-tYhuaDrcPD .mbr-section-btn {
  color: #232323;
}
.cid-tYvkp1Z7sw {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYvkp1Z7sw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYvkp1Z7sw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYvkp1Z7sw .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYvkp1Z7sw .img-item {
  position: relative;
}
.cid-tYvkp1Z7sw .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYvkp1Z7sw .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYvkp1Z7sw .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYhubnbt5z {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYhubnbt5z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYhubnbt5z .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-tYhubnbt5z .card {
    margin-bottom: 2rem;
  }
  .cid-tYhubnbt5z .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYhubnbt5z .card-title,
.cid-tYhubnbt5z .card-box {
  color: #353535;
}
.cid-tYhubnbt5z .mbr-text,
.cid-tYhubnbt5z .mbr-section-btn {
  color: #232323;
}
.cid-tYt3HFVAl8 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYt3HFVAl8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYt3HFVAl8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYt3HFVAl8 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYt3HFVAl8 .img-item {
  position: relative;
}
.cid-tYt3HFVAl8 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYt3HFVAl8 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYt3HFVAl8 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tYlSdGyYfi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tYlSdGyYfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYlSdGyYfi .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-tYlSdGyYfi .card {
    margin-bottom: 2rem;
  }
  .cid-tYlSdGyYfi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tYlSdGyYfi .card-title,
.cid-tYlSdGyYfi .card-box {
  color: #353535;
}
.cid-tYlSdGyYfi .mbr-text,
.cid-tYlSdGyYfi .mbr-section-btn {
  color: #232323;
}
.cid-tYwkitfdTZ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tYwkitfdTZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYwkitfdTZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYwkitfdTZ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-tYwkitfdTZ .img-item {
  position: relative;
}
.cid-tYwkitfdTZ .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-tYwkitfdTZ .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-tYwkitfdTZ .img-item .img-description p {
  margin-bottom: 0;
}
.cid-tXQqgpmHbi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tXQqgpmHbi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXQqgpmHbi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXQqgpmHbi .mbr-section-title {
  color: #666666;
}
.cid-tXQqgpmHbi .mbr-section-subtitle {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2BV4nr8OL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/halftone-background-14.svg");
}
.cid-u2BV4nr8OL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2BV4nr8OL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2BV4nr8OL P {
  text-align: center;
  color: #ffffff;
}
.cid-u2BV4nr8OL .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-u2BV5tcyrx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-u2BV5tcyrx #modalSheet {
  top: 70px !important;
}
.cid-u2BV5tcyrx .crumbs {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin: 0.6rem 0.3rem;
}
.cid-u2BV5tcyrx .item:focus,
.cid-u2BV5tcyrx span:focus {
  outline: none;
}
.cid-u2BV5tcyrx .item {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u2BV5tcyrx .mbr-section-btn {
    text-align: center;
  }
  .cid-u2BV5tcyrx .item-content {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-u2BV5tcyrx .mbr-section-btn {
    text-align: right;
  }
  .cid-u2BV5tcyrx .item-content {
    text-align: left;
  }
}
.cid-u2BV5tcyrx .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-u2BV5tcyrx .mbr-iconfont {
  order: 0;
  margin-left: 0;
  margin-right: 0.5rem;
}
.cid-u2BV5tcyrx .mbr-iconfont2 {
  order: 1;
  margin-left: 0.5rem;
  margin-right: 0;
}
.cid-u2BV5tcyrx .btn1 {
  display: none;
}
.cid-u2BV5tcyrx .mbr-section-title,
.cid-u2BV5tcyrx h2 {
  color: #ffffff;
}
.cid-u2BV5tcyrx .mbr-text {
  text-align: center;
}
.cid-u2BV5tcyrx H2 {
  text-align: right;
}
.cid-u2BV5tcyrx .mbr-section-title {
  text-align: center;
}
.cid-u2BV5tcyrx .item-cccontent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-u2BV5tcyrx .item-content .btn {
  padding: 0.3rem 0.6rem;
}
.cid-u2BV5tcyrx .mbr-name {
  margin: 0 20px 0 0;
}
.cid-u2BV5tcyrx P {
  color: #ffffff;
}
.cid-u2BV5tcyrx .form-control {
  font-size: 1rem;
  padding: 0.4rem;
  min-height: 0;
}
.cid-u2BV5tcyrx .form-group {
  margin-bottom: 0;
}
.cid-u2BV5tcyrx option {
  font-size: 1rem;
}
.cid-u2BV6lkfUE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #baae9d;
}
.cid-u2BV6lkfUE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2BV6lkfUE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2BV6lkfUE .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u2BV6lkfUE .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-u2BV6lkfUE .card-box2 {
  background-color: #e4dacd;
}
.cid-u2BV6lkfUE .image-wrapper img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.cid-u2BV6lkfUE .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-u2BV6lkfUE .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-u2BV6lkfUE .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-u2BV6lkfUE .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2BV6lkfUE .card-box {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2BV6lkfUE .card-box {
    padding-right: 4rem;
    padding-left: 0rem;
  }
  .cid-u2BV6lkfUE .image-wrapper img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
}
.cid-u2BV6lkfUE .depts {
  text-align: left;
  font-size: 0.9rem;
  line-height: 50px;
}
.cid-u2BV6lkfUE .depts img {
  width: 50px;
  vertical-align: middle;
  margin-right: 15px;
}
.cid-u2BV6lkfUE .list {
  text-align: left;
  color: #000000;
  padding-left: 0;
  margin-bottom: 0.5rem;
}
.cid-u2BV6lkfUE .list li {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-u2BV6lkfUE .desc {
  font-size: 1rem;
}
.cid-u2BV6lkfUE .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2BV6lkfUE .btn {
  padding: 0.4rem 0.8rem;
  margin: 0 0.6rem 0 0;
}
.cid-u2BV6lkfUE .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-u2BV6lkfUE .btn-black-outline:hover {
  border-color: #575757 !important;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
.cid-u2BV6lkfUE .loadingwrapper {
  position: relative;
  height: 60px;
}
.cid-u2BV6lkfUE .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}
.cid-u2BV6lkfUE .loading .spinner {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 26px;
  height: 26px;
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
.cid-u2BV6lkfUE .loading .mask {
  width: 12px;
  height: 12px;
  overflow: hidden;
}
.cid-u2BV6lkfUE .loading .maskedCircle {
  width: 20px;
  height: 20px;
  border-radius: 12px;
  border: 3px solid #666;
}
.cid-u2BV6lkfUE .text-primary {
  text-decoration: underline;
}
.cid-u2BV6lkfUE .availability {
  background-color: #f1f1f1;
  padding: 1rem 2rem;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u2N3bZk27t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/halftone-background-14.svg");
}
.cid-u2N3bZk27t .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N3bZk27t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N3bZk27t P {
  text-align: center;
  color: #ffffff;
}
.cid-u2N3bZk27t .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-u2N3bZFw7A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-u2N3bZFw7A #modalSheet {
  top: 70px !important;
}
.cid-u2N3bZFw7A .crumbs {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1;
  margin: 0.6rem 0.3rem;
}
.cid-u2N3bZFw7A .item:focus,
.cid-u2N3bZFw7A span:focus {
  outline: none;
}
.cid-u2N3bZFw7A .item {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-u2N3bZFw7A .mbr-section-btn {
    text-align: center;
  }
  .cid-u2N3bZFw7A .item-content {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .cid-u2N3bZFw7A .mbr-section-btn {
    text-align: right;
  }
  .cid-u2N3bZFw7A .item-content {
    text-align: left;
  }
}
.cid-u2N3bZFw7A .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-u2N3bZFw7A .mbr-iconfont {
  order: 0;
  margin-left: 0;
  margin-right: 0.5rem;
}
.cid-u2N3bZFw7A .mbr-iconfont2 {
  order: 1;
  margin-left: 0.5rem;
  margin-right: 0;
}
.cid-u2N3bZFw7A .btn1 {
  display: none;
}
.cid-u2N3bZFw7A .mbr-section-title,
.cid-u2N3bZFw7A h2 {
  color: #ffffff;
}
.cid-u2N3bZFw7A .mbr-text {
  text-align: center;
}
.cid-u2N3bZFw7A H2 {
  text-align: right;
}
.cid-u2N3bZFw7A .mbr-section-title {
  text-align: center;
}
.cid-u2N3bZFw7A .item-cccontent {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-u2N3bZFw7A .item-content .btn {
  padding: 0.3rem 0.6rem;
}
.cid-u2N3bZFw7A .mbr-name {
  margin: 0 20px 0 0;
}
.cid-u2N3bZFw7A P {
  color: #ffffff;
}
.cid-u2N3bZFw7A .form-control {
  font-size: 1rem;
  padding: 0.4rem;
  min-height: 0;
}
.cid-u2N3bZFw7A .form-group {
  margin-bottom: 0;
}
.cid-u2N3bZFw7A option {
  font-size: 1rem;
}
.cid-u2N3bZOmK7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #baae9d;
}
.cid-u2N3bZOmK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2N3bZOmK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2N3bZOmK7 .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-u2N3bZOmK7 .card-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
}
.cid-u2N3bZOmK7 .card-box2 {
  background-color: #e4dacd;
}
.cid-u2N3bZOmK7 .image-wrapper img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.cid-u2N3bZOmK7 .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-u2N3bZOmK7 .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-u2N3bZOmK7 .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-u2N3bZOmK7 .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u2N3bZOmK7 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u2N3bZOmK7 .card-box {
    padding-right: 4rem;
    padding-left: 0rem;
  }
  .cid-u2N3bZOmK7 .image-wrapper img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }
}
.cid-u2N3bZOmK7 .depts {
  text-align: left;
  font-size: 0.9rem;
  line-height: 50px;
}
.cid-u2N3bZOmK7 .depts img {
  width: 50px;
  vertical-align: middle;
  margin-right: 15px;
}
.cid-u2N3bZOmK7 .list {
  text-align: left;
  color: #000000;
  padding-left: 0;
  margin-bottom: 0.5rem;
}
.cid-u2N3bZOmK7 .list li {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-u2N3bZOmK7 .desc {
  font-size: 1rem;
}
.cid-u2N3bZOmK7 .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-u2N3bZOmK7 .btn {
  padding: 0.4rem 0.8rem;
  margin: 0 0.6rem 0 0;
}
.cid-u2N3bZOmK7 .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-u2N3bZOmK7 .btn-black-outline:hover {
  border-color: #575757 !important;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
  }
}
.cid-u2N3bZOmK7 .loadingwrapper {
  position: relative;
  height: 60px;
}
.cid-u2N3bZOmK7 .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
}
.cid-u2N3bZOmK7 .loading .spinner {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 26px;
  height: 26px;
  -webkit-animation: spin 1s infinite linear;
  -moz-animation: spin 1s infinite linear;
  -o-animation: spin 1s infinite linear;
  animation: spin 1s infinite linear;
}
.cid-u2N3bZOmK7 .loading .mask {
  width: 12px;
  height: 12px;
  overflow: hidden;
}
.cid-u2N3bZOmK7 .loading .maskedCircle {
  width: 20px;
  height: 20px;
  border-radius: 12px;
  border: 3px solid #666;
}
.cid-u2N3bZOmK7 .text-primary {
  text-decoration: underline;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3HJvx89ZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-u3HJvx89ZX {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-u3HJvx89ZX .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-u3HJvx89ZX picture {
  height: 100%;
  object-fit: cover;
}
.cid-u3HJvx89ZX picture source {
  height: 100%;
  object-fit: cover;
}
.cid-u3HJvx89ZX picture img {
  height: 100%;
  object-fit: cover;
}
.cid-u3HJvx89ZX .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3HJvx89ZX .mbr-section-title {
  color: #ffffff;
}
.cid-u3HJvx89ZX .mbr-text,
.cid-u3HJvx89ZX .mbr-section-btn {
  color: #ffffff;
}
.cid-u3HJvxoR8E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3HJvxoR8E .mbr-section-title {
  text-align: center;
}
.cid-u3HJvxoR8E .mbr-section-subtitle {
  text-align: center;
}
.cid-u3HJvxoR8E .mbr-text {
  text-align: center;
}
.cid-u3HJvxoR8E .list {
  text-align: center;
}
.cid-u3HJvxoR8E P {
  text-align: center;
}
.cid-u3JKMl46Bb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3JKMl46Bb .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-u3JKMl46Bb .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-u3JKMl46Bb .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-u3JKMl46Bb .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #6592e6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3JMFvB9hB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u3JMFvB9hB .mbr-section-title {
  text-align: center;
}
.cid-u3JMFvB9hB .mbr-section-subtitle {
  text-align: center;
}
.cid-u3JMFvB9hB .mbr-text {
  text-align: center;
}
.cid-u3JMFvB9hB .list {
  text-align: center;
}
.cid-u3JMFvB9hB P {
  text-align: center;
}
.cid-u3HJvxxuXW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-u3HJvxxuXW #modalSheet {
  top: 70px !important;
}
.cid-u3HJvxxuXW .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-u3HJvxxuXW img,
.cid-u3HJvxxuXW .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-u3HJvxxuXW .item:focus,
.cid-u3HJvxxuXW span:focus {
  outline: none;
}
.cid-u3HJvxxuXW .item {
  margin-bottom: 2rem;
}
.cid-u3HJvxxuXW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u3HJvxxuXW .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-u3HJvxxuXW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u3HJvxxuXW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-u3HJvxxuXW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-u3HJvxxuXW .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-u3HJvxxuXW .mbr-section-title {
  color: #ffffff;
}
.cid-u3HJvxxuXW .mbr-text,
.cid-u3HJvxxuXW .mbr-section-btn {
  text-align: left;
}
.cid-u3HJvxxuXW .item-title {
  text-align: left;
  color: #353535;
}
.cid-u3HJvxxuXW .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-u3HJvxxuXW .item-img {
  position: relative;
  justify-content: center;
}
.cid-u3HJvxxuXW .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-u3HJvxxuXW .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-u3HJvxxuXW .item-img .img-description p {
  margin-bottom: 0;
}
.cid-u3HJvxxuXW .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-u3HJvxxuXW .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-u3HJvxxuXW .btn::after {
  content: ">";
}
.cid-u3HJvykUiB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u3HJvykUiB .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-u3HJvykUiB .card {
  padding: 0 15px;
  height: auto;
  position: relative;
}
.cid-u3HJvykUiB .item-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-u3HJvykUiB .card-wrapper {
  background-color: #9b9287;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6em;
}
.cid-u3HJvykUiB .card-linkk {
  position: relative;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.cid-u3HJvykUiB .mbr-number {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #fff;
}
.cid-u3HJvykUiB .mbr-title {
  pointer-events: visible;
  color: #fff;
}
.cid-u3HJvykUiB .mbr-title::after {
  position: absolute;
  content: ">";
}
.cid-u3HJvykUiB .card-wrapper:hover {
  background-color: #afa496;
}
.cid-u3HJvykUiB .card-wrapper:hover .mbr-title::after {
  content: ">";
  transform: translate(0.25em, 0);
}
.cid-u3HJvykUiB .mbr-text {
  margin: 0;
  opacity: 0;
  pointer-events: visible;
  color: #EAEAEA;
}
.cid-u3HJvykUiB H2 {
  text-align: center;
  color: #353535;
}
.cid-u3HJvykUiB H3 {
  text-align: center;
}
.cid-u3HJvyQ1g6 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u3HJvyQ1g6 .list {
  color: #0059ff;
}
.cid-u3HJvzdsFz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u3HJvzdsFz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u3HJvzdsFz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3HJvzdsFz .mbr-section-title {
  color: #666666;
}
.cid-u3HJvzdsFz .mbr-section-subtitle {
  color: #000000;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucW1IUmGgI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucW1IUmGgI .mbr-section-subtitle {
  text-align: center;
}
.cid-ucW1IUmGgI .mbr-text {
  text-align: center;
}
.cid-ucW1IUmGgI .mbr-section-title {
  text-align: left;
}
.cid-ucW1IUx98w {
  padding-top: 10rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucW1IUx98w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucW1IUx98w img {
  width: 100%;
}
.cid-ucW1IUx98w picture {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IUx98w picture source {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IUx98w picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ucW1IUx98w .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-ucW1IUx98w .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ucW1IUx98w .mbr-section-title {
  color: #232323;
}
.cid-ucW1IUx98w .mbr-text {
  color: #000000;
}
.cid-ucW1IUx98w .mbr-description {
  color: #000000;
}
.cid-ucW1IUNl80 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucW1IUNl80 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucW1IUNl80 img {
  width: 100%;
}
.cid-ucW1IUNl80 picture {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IUNl80 picture source {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IUNl80 picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ucW1IUNl80 .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-ucW1IUNl80 .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ucW1IUNl80 .mbr-section-title {
  color: #232323;
}
.cid-ucW1IUNl80 .mbr-text {
  color: #000000;
}
.cid-ucW1IUNl80 .mbr-description {
  color: #000000;
}
.cid-ucW1IV2kGT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ucW1IV2kGT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ucW1IV2kGT img {
  width: 100%;
}
.cid-ucW1IV2kGT picture {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IV2kGT picture source {
  height: 100%;
  object-fit: cover;
}
.cid-ucW1IV2kGT picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-ucW1IV2kGT .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-ucW1IV2kGT .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ucW1IV2kGT .mbr-section-title {
  color: #232323;
}
.cid-ucW1IV2kGT .mbr-text {
  color: #000000;
}
.cid-ucW1IV2kGT .mbr-description {
  color: #000000;
}
.cid-ucW1IXZCJ5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucW1IXZCJ5 .row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.cid-ucW1IXZCJ5 .row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucW1IXZCJ5 .mbr-text {
  text-align: center;
}
.cid-ucW1IXZCJ5 .ol-text {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-ucW1IXZCJ5 .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ucW1IXZCJ5 .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ucW1IXZCJ5 .ol-text {
    padding: 0rem 8rem;
  }
}
.cid-ucW1IXZCJ5 ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-ucW1IXZCJ5 ol li {
  margin-bottom: 1rem;
}
.cid-ucW1IXZCJ5 ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-ucW1IXZCJ5 ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucW1IXZCJ5 H2 {
  text-align: center;
}
.cid-ucW1J2cGvu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-ucW1J2cGvu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucW1J2cGvu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucW1J2cGvu .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucW1J2cGvu .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ucW1J2cGvu .row {
    text-align: center;
  }
  .cid-ucW1J2cGvu .row > div {
    margin: auto;
  }
  .cid-ucW1J2cGvu .social-row {
    justify-content: center;
  }
}
.cid-ucW1J2cGvu .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-ucW1J2cGvu .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-ucW1J2cGvu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ucW1J2cGvu .list {
    margin-bottom: 0rem;
  }
}
.cid-ucW1J2cGvu .mbr-text {
  color: #bbbbbb;
}
.cid-ucW1J2cGvu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-ucW1J2cGvu .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-ucW1J2cGvu div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uexou6LAco {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uexou6LAco .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-uexou6LAco #first-part-mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-uexou6LAco #first-part-desktop {
    display: none;
  }
}
.cid-uexou6LAco button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ue0po3BrNE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eeecea;
}
.cid-ue0po3BrNE #modalSheet {
  top: 70px !important;
}
.cid-ue0po3BrNE .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-ue0po3BrNE img,
.cid-ue0po3BrNE .item-img {
  width: 100%;
}
.cid-ue0po3BrNE .item:focus,
.cid-ue0po3BrNE span:focus {
  outline: none;
}
.cid-ue0po3BrNE .item {
  margin-bottom: 2rem;
}
.cid-ue0po3BrNE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ue0po3BrNE .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-ue0po3BrNE .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue0po3BrNE .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ue0po3BrNE .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ue0po3BrNE .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-ue0po3BrNE .mbr-section-title {
  color: #ffffff;
}
.cid-ue0po3BrNE .mbr-text,
.cid-ue0po3BrNE .mbr-section-btn {
  text-align: left;
}
.cid-ue0po3BrNE .item-title {
  text-align: left;
  color: #353535;
}
.cid-ue0po3BrNE .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-ue0po3BrNE .item-img {
  position: relative;
  justify-content: center;
}
.cid-ue0po3BrNE .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-ue0po3BrNE .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-ue0po3BrNE .item-img .img-description p {
  margin-bottom: 0;
}
.cid-ue0po3BrNE .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-ue0po3BrNE .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ue0po3BrNE .btn::after {
  content: ">";
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uey47GkBFd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uey47GkBFd img,
.cid-uey47GkBFd .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uey47GkBFd .item:focus,
.cid-uey47GkBFd span:focus {
  outline: none;
}
.cid-uey47GkBFd .item-wrapper {
  position: relative;
}
.cid-uey47GkBFd .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uey47GkBFd .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.cid-uey47GkBFd .slide-content .item-link {
  text-decoration: none;
  color: #232323;
}
@media (min-width: 992px) {
  .cid-uey47GkBFd .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-uey47GkBFd .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-uey47GkBFd .text1 {
  zoom: 1.25;
}
.cid-uey47GkBFd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uey47GkBFd .mbr-section-title {
  color: #232323;
}
.cid-uey47GkBFd .mbr-text,
.cid-uey47GkBFd .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uey47GkBFd .item-title {
  text-align: left;
}
.cid-uey47GkBFd .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uey47GkBFd .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-uey47GkBFd .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-uey47GkBFd .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-uey47GkBFd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-uey47GkBFd .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-uey47GkBFd .embla__button--next,
.cid-uey47GkBFd .embla__button--prev {
  display: flex;
}
.cid-uey47GkBFd .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-uey47GkBFd .embla__button {
    display: none;
  }
}
.cid-uey47GkBFd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uey47GkBFd .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uey47GkBFd .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uey47GkBFd .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uey47GkBFd .embla__button {
    topx: auto;
  }
}
.cid-uey47GkBFd .embla {
  position: relative;
  width: 100%;
}
.cid-uey47GkBFd .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uey47GkBFd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uey47GkBFd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uey47GkBFd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uey47GkBFd .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-uey47GkBFd .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-uey47GkBFd .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugIH1SJVtw {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ugIH1SJVtw {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-ugIH1SJVtw picture {
  height: 100%;
  object-fit: cover;
}
.cid-ugIH1SJVtw picture source {
  height: 100%;
  object-fit: cover;
}
.cid-ugIH1SJVtw picture img {
  height: 100%;
  object-fit: cover;
}
.cid-ugIH1SJVtw .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugIH1SJVtw .mbr-section-title {
  color: #ffffff;
}
.cid-ugIH2SvmZv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ugIH2SvmZv .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-ugIH2SvmZv #first-part-mobile {
    display: none;
  }
  .cid-ugIH2SvmZv #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-ugIH2SvmZv #first-part-desktop {
    display: none;
  }
}
.cid-ugIH2SvmZv button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-ugIH2SvmZv .mbr-section-title {
  text-align: left;
}
.cid-ugIH3UHki9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugIH3UHki9 li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ugIH3UHki9 li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-ugKcjIpvFv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugKcjIpvFv img,
.cid-ugKcjIpvFv .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugKcjIpvFv .item:focus,
.cid-ugKcjIpvFv span:focus {
  outline: none;
}
.cid-ugKcjIpvFv .item-wrapper {
  position: relative;
}
.cid-ugKcjIpvFv .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugKcjIpvFv .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugKcjIpvFv .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugKcjIpvFv .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugKcjIpvFv .text1 {
  zoom: 1.25;
}
.cid-ugKcjIpvFv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugKcjIpvFv .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugKcjIpvFv .mbr-text,
.cid-ugKcjIpvFv .mbr-section-btn {
  text-align: left;
}
.cid-ugKcjIpvFv .item-title {
  text-align: left;
}
.cid-ugKcjIpvFv .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugKcjIpvFv .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugKcjIpvFv .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugKcjIpvFv .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugKcjIpvFv .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugKcjIpvFv .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugKcjIpvFv .embla__button--next,
.cid-ugKcjIpvFv .embla__button--prev {
  display: flex;
}
.cid-ugKcjIpvFv .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-ugKcjIpvFv .embla__button {
    display: none;
  }
}
.cid-ugKcjIpvFv .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugKcjIpvFv .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugKcjIpvFv .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugKcjIpvFv .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugKcjIpvFv .embla__button {
    topx: auto;
  }
}
.cid-ugKcjIpvFv .embla {
  position: relative;
  width: 100%;
}
.cid-ugKcjIpvFv .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugKcjIpvFv .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugKcjIpvFv .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugKcjIpvFv .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugKcjIpvFv .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugKcjIpvFv .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugKcjIpvFv .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugKcjIpvFv .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugKcjIpvFv .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugKcjIpvFv .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugKcjIpvFv .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugKcjIpvFv H3 {
  color: #232323;
}
.cid-ugKcjIpvFv P {
  color: #000000;
}
.cid-ugIH7uBLzJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugIH7uBLzJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugIH7uBLzJ .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-ugIH7uBLzJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugIH7uBLzJ img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugIH7uBLzJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugIH7uBLzJ .mbr-section-title {
  color: #232323;
}
.cid-ugIH8j37B4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugIH8j37B4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugIH8j37B4 .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-ugIH8j37B4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugIH8j37B4 img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugIH8j37B4 .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ugIH8j37B4 .mbr-section-title {
  color: #232323;
}
.cid-ugIH9bMc3z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugIH9bMc3z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugIH9bMc3z .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-ugIH9bMc3z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugIH9bMc3z img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugIH9bMc3z .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugIH9bMc3z .mbr-section-title {
  color: #232323;
}
.cid-ugIH9XF4I2 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugIH9XF4I2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugIH9XF4I2 .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-ugIH9XF4I2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugIH9XF4I2 img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugIH9XF4I2 .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ugIH9XF4I2 .mbr-section-title {
  color: #232323;
}
.cid-ugKhBO8XOr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugKhBO8XOr img,
.cid-ugKhBO8XOr .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugKhBO8XOr .item:focus,
.cid-ugKhBO8XOr span:focus {
  outline: none;
}
.cid-ugKhBO8XOr .item-wrapper {
  position: relative;
}
.cid-ugKhBO8XOr .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugKhBO8XOr .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugKhBO8XOr .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugKhBO8XOr .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugKhBO8XOr .text1 {
  zoom: 1.25;
}
.cid-ugKhBO8XOr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugKhBO8XOr .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugKhBO8XOr .mbr-text,
.cid-ugKhBO8XOr .mbr-section-btn {
  text-align: left;
}
.cid-ugKhBO8XOr .item-title {
  text-align: left;
}
.cid-ugKhBO8XOr .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugKhBO8XOr .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugKhBO8XOr .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugKhBO8XOr .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugKhBO8XOr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugKhBO8XOr .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugKhBO8XOr .embla__button--next,
.cid-ugKhBO8XOr .embla__button--prev {
  display: flex;
}
.cid-ugKhBO8XOr .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-ugKhBO8XOr .embla__button {
    display: none;
  }
}
.cid-ugKhBO8XOr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugKhBO8XOr .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugKhBO8XOr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugKhBO8XOr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugKhBO8XOr .embla__button {
    topx: auto;
  }
}
.cid-ugKhBO8XOr .embla {
  position: relative;
  width: 100%;
}
.cid-ugKhBO8XOr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugKhBO8XOr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugKhBO8XOr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugKhBO8XOr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugKhBO8XOr .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugKhBO8XOr .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugKhBO8XOr .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugKhBO8XOr .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugKhBO8XOr .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugKhBO8XOr .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugKhBO8XOr .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugKhBO8XOr P {
  color: #000000;
}
.cid-ugKhBO8XOr H3 {
  color: #232323;
}
.cid-ugKhCLtTNW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugKhCLtTNW img,
.cid-ugKhCLtTNW .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugKhCLtTNW .item:focus,
.cid-ugKhCLtTNW span:focus {
  outline: none;
}
.cid-ugKhCLtTNW .item-wrapper {
  position: relative;
}
.cid-ugKhCLtTNW .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugKhCLtTNW .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugKhCLtTNW .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugKhCLtTNW .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugKhCLtTNW .text1 {
  zoom: 1.25;
}
.cid-ugKhCLtTNW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugKhCLtTNW .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugKhCLtTNW .mbr-text,
.cid-ugKhCLtTNW .mbr-section-btn {
  text-align: left;
}
.cid-ugKhCLtTNW .item-title {
  text-align: left;
}
.cid-ugKhCLtTNW .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugKhCLtTNW .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugKhCLtTNW .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugKhCLtTNW .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugKhCLtTNW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugKhCLtTNW .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugKhCLtTNW .embla__button--next,
.cid-ugKhCLtTNW .embla__button--prev {
  display: flex;
}
.cid-ugKhCLtTNW .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-ugKhCLtTNW .embla__button {
    display: none;
  }
}
.cid-ugKhCLtTNW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugKhCLtTNW .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugKhCLtTNW .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugKhCLtTNW .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugKhCLtTNW .embla__button {
    topx: auto;
  }
}
.cid-ugKhCLtTNW .embla {
  position: relative;
  width: 100%;
}
.cid-ugKhCLtTNW .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugKhCLtTNW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugKhCLtTNW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugKhCLtTNW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugKhCLtTNW .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugKhCLtTNW .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugKhCLtTNW .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugKhCLtTNW .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugKhCLtTNW .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugKhCLtTNW .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugKhCLtTNW .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugKhCLtTNW P {
  color: #000000;
}
.cid-ugKhCLtTNW H3 {
  color: #232323;
}
.cid-ugNiHh3YJa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNiHh3YJa img,
.cid-ugNiHh3YJa .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugNiHh3YJa .item:focus,
.cid-ugNiHh3YJa span:focus {
  outline: none;
}
.cid-ugNiHh3YJa .item-wrapper {
  position: relative;
}
.cid-ugNiHh3YJa .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugNiHh3YJa .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugNiHh3YJa .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugNiHh3YJa .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugNiHh3YJa .text1 {
  zoom: 1.25;
}
.cid-ugNiHh3YJa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNiHh3YJa .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugNiHh3YJa .mbr-text,
.cid-ugNiHh3YJa .mbr-section-btn {
  text-align: left;
}
.cid-ugNiHh3YJa .item-title {
  text-align: left;
}
.cid-ugNiHh3YJa .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugNiHh3YJa .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugNiHh3YJa .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugNiHh3YJa .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugNiHh3YJa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugNiHh3YJa .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugNiHh3YJa .embla__button--next,
.cid-ugNiHh3YJa .embla__button--prev {
  display: flex;
}
.cid-ugNiHh3YJa .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-ugNiHh3YJa .embla__button {
    display: none;
  }
}
.cid-ugNiHh3YJa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugNiHh3YJa .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugNiHh3YJa .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugNiHh3YJa .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugNiHh3YJa .embla__button {
    topx: auto;
  }
}
.cid-ugNiHh3YJa .embla {
  position: relative;
  width: 100%;
}
.cid-ugNiHh3YJa .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugNiHh3YJa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugNiHh3YJa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugNiHh3YJa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugNiHh3YJa .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugNiHh3YJa .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugNiHh3YJa .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugNiHh3YJa .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugNiHh3YJa .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugNiHh3YJa .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugNiHh3YJa .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugNiHh3YJa H3 {
  color: #232323;
}
.cid-ugNiHh3YJa P {
  color: #000000;
}
.cid-ugNwkXTvD2 .navbar-dropdown {
  position: relative !important;
}
.cid-ugNwkXTvD2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugNwkXTvD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugNwkXTvD2 .dropdown-item:hover,
.cid-ugNwkXTvD2 .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-ugNwkXTvD2 .dropdown-item:hover span {
  color: white;
}
.cid-ugNwkXTvD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugNwkXTvD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugNwkXTvD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugNwkXTvD2 .nav-link {
  position: relative;
}
.cid-ugNwkXTvD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugNwkXTvD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-ugNwkXTvD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugNwkXTvD2 .dropdown-menu,
.cid-ugNwkXTvD2 .navbar.opened {
  background: #353535 !important;
}
.cid-ugNwkXTvD2 .nav-item:focus,
.cid-ugNwkXTvD2 .nav-link:focus {
  outline: none;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugNwkXTvD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugNwkXTvD2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-ugNwkXTvD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugNwkXTvD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugNwkXTvD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugNwkXTvD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugNwkXTvD2 .navbar.collapsed {
  justify-content: center;
}
.cid-ugNwkXTvD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugNwkXTvD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugNwkXTvD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugNwkXTvD2 .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-ugNwkXTvD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugNwkXTvD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugNwkXTvD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugNwkXTvD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugNwkXTvD2 .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-ugNwkXTvD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugNwkXTvD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugNwkXTvD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugNwkXTvD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugNwkXTvD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugNwkXTvD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugNwkXTvD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugNwkXTvD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugNwkXTvD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugNwkXTvD2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugNwkXTvD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugNwkXTvD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugNwkXTvD2 .dropdown-item.active,
.cid-ugNwkXTvD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugNwkXTvD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugNwkXTvD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-ugNwkXTvD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugNwkXTvD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugNwkXTvD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugNwkXTvD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugNwkXTvD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ugNwkXTvD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugNwkXTvD2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugNwkXTvD2 .navbar {
    height: 70px;
  }
  .cid-ugNwkXTvD2 .navbar.opened {
    height: auto;
  }
  .cid-ugNwkXTvD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ugNwkYfgQj {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ugNwkYfgQj {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-ugNwkYfgQj picture {
  height: 100%;
  object-fit: cover;
}
.cid-ugNwkYfgQj picture source {
  height: 100%;
  object-fit: cover;
}
.cid-ugNwkYfgQj picture img {
  height: 100%;
  object-fit: cover;
}
.cid-ugNwkYfgQj .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugNwkYfgQj .mbr-section-title {
  color: #ffffff;
}
.cid-ugNwkYuYB8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ugNwkYuYB8 .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-ugNwkYuYB8 #first-part-mobile {
    display: none;
  }
  .cid-ugNwkYuYB8 #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-ugNwkYuYB8 #first-part-desktop {
    display: none;
  }
}
.cid-ugNwkYuYB8 button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-ugNwkYuYB8 .mbr-section-title {
  text-align: left;
}
.cid-ugNwkYJiCH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNwkYJiCH li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ugNwkYJiCH li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-ugNwkYYwOd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNwkYYwOd img,
.cid-ugNwkYYwOd .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugNwkYYwOd .item:focus,
.cid-ugNwkYYwOd span:focus {
  outline: none;
}
.cid-ugNwkYYwOd .item-wrapper {
  position: relative;
}
.cid-ugNwkYYwOd .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugNwkYYwOd .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugNwkYYwOd .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugNwkYYwOd .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugNwkYYwOd .text1 {
  zoom: 1.25;
}
.cid-ugNwkYYwOd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNwkYYwOd .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugNwkYYwOd .mbr-text,
.cid-ugNwkYYwOd .mbr-section-btn {
  text-align: left;
}
.cid-ugNwkYYwOd .item-title {
  text-align: left;
}
.cid-ugNwkYYwOd .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugNwkYYwOd .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugNwkYYwOd .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugNwkYYwOd .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugNwkYYwOd .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugNwkYYwOd .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugNwkYYwOd .embla__button--next,
.cid-ugNwkYYwOd .embla__button--prev {
  display: flex;
}
.cid-ugNwkYYwOd .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-ugNwkYYwOd .embla__button {
    display: none;
  }
}
.cid-ugNwkYYwOd .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugNwkYYwOd .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugNwkYYwOd .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugNwkYYwOd .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugNwkYYwOd .embla__button {
    topx: auto;
  }
}
.cid-ugNwkYYwOd .embla {
  position: relative;
  width: 100%;
}
.cid-ugNwkYYwOd .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugNwkYYwOd .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugNwkYYwOd .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugNwkYYwOd .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugNwkYYwOd .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugNwkYYwOd .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugNwkYYwOd .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugNwkYYwOd .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugNwkYYwOd .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugNwkYYwOd .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugNwkYYwOd .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugNwkZSjJp {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugNwkZSjJp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNwkZSjJp .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-ugNwkZSjJp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugNwkZSjJp img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugNwkZSjJp .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugNwkZSjJp .mbr-section-title {
  color: #232323;
}
.cid-ugNwl08LXz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugNwl08LXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNwl08LXz .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-ugNwl08LXz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugNwl08LXz img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugNwl08LXz .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ugNwl08LXz .mbr-section-title {
  color: #232323;
}
.cid-ugNwl0n2VA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugNwl0n2VA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNwl0n2VA .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-ugNwl0n2VA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugNwl0n2VA img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugNwl0n2VA .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugNwl0n2VA .mbr-section-title {
  color: #232323;
}
.cid-ugNwl0E907 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugNwl0E907 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugNwl0E907 .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-ugNwl0E907 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugNwl0E907 img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-ugNwl0E907 .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-ugNwl0E907 .mbr-section-title {
  color: #232323;
}
.cid-ugNwl0TIfY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNwl0TIfY img,
.cid-ugNwl0TIfY .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugNwl0TIfY .item:focus,
.cid-ugNwl0TIfY span:focus {
  outline: none;
}
.cid-ugNwl0TIfY .item-wrapper {
  position: relative;
}
.cid-ugNwl0TIfY .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugNwl0TIfY .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugNwl0TIfY .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugNwl0TIfY .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugNwl0TIfY .text1 {
  zoom: 1.25;
}
.cid-ugNwl0TIfY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNwl0TIfY .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugNwl0TIfY .mbr-text,
.cid-ugNwl0TIfY .mbr-section-btn {
  text-align: left;
}
.cid-ugNwl0TIfY .item-title {
  text-align: left;
}
.cid-ugNwl0TIfY .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugNwl0TIfY .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugNwl0TIfY .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugNwl0TIfY .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugNwl0TIfY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugNwl0TIfY .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugNwl0TIfY .embla__button--next,
.cid-ugNwl0TIfY .embla__button--prev {
  display: flex;
}
.cid-ugNwl0TIfY .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-ugNwl0TIfY .embla__button {
    display: none;
  }
}
.cid-ugNwl0TIfY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugNwl0TIfY .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugNwl0TIfY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugNwl0TIfY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugNwl0TIfY .embla__button {
    topx: auto;
  }
}
.cid-ugNwl0TIfY .embla {
  position: relative;
  width: 100%;
}
.cid-ugNwl0TIfY .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugNwl0TIfY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugNwl0TIfY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugNwl0TIfY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugNwl0TIfY .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugNwl0TIfY .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugNwl0TIfY .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugNwl0TIfY .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugNwl0TIfY .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugNwl0TIfY .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugNwl0TIfY .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugNwl0TIfY P {
  color: #232323;
}
.cid-ugNwl0TIfY H3 {
  color: #232323;
}
.cid-ugNwl209kr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNwl209kr img,
.cid-ugNwl209kr .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugNwl209kr .item:focus,
.cid-ugNwl209kr span:focus {
  outline: none;
}
.cid-ugNwl209kr .item-wrapper {
  position: relative;
}
.cid-ugNwl209kr .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugNwl209kr .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugNwl209kr .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugNwl209kr .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugNwl209kr .text1 {
  zoom: 1.25;
}
.cid-ugNwl209kr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNwl209kr .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugNwl209kr .mbr-text,
.cid-ugNwl209kr .mbr-section-btn {
  text-align: left;
}
.cid-ugNwl209kr .item-title {
  text-align: left;
}
.cid-ugNwl209kr .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugNwl209kr .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugNwl209kr .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugNwl209kr .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugNwl209kr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugNwl209kr .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugNwl209kr .embla__button--next,
.cid-ugNwl209kr .embla__button--prev {
  display: flex;
}
.cid-ugNwl209kr .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-ugNwl209kr .embla__button {
    display: none;
  }
}
.cid-ugNwl209kr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugNwl209kr .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugNwl209kr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugNwl209kr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugNwl209kr .embla__button {
    topx: auto;
  }
}
.cid-ugNwl209kr .embla {
  position: relative;
  width: 100%;
}
.cid-ugNwl209kr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugNwl209kr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugNwl209kr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugNwl209kr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugNwl209kr .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugNwl209kr .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugNwl209kr .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugNwl209kr .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugNwl209kr .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugNwl209kr .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugNwl209kr .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugNwl209kr P {
  color: #232323;
}
.cid-ugNwl209kr H3 {
  color: #232323;
}
.cid-ugNwl2XqaR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugNwl2XqaR img,
.cid-ugNwl2XqaR .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-ugNwl2XqaR .item:focus,
.cid-ugNwl2XqaR span:focus {
  outline: none;
}
.cid-ugNwl2XqaR .item-wrapper {
  position: relative;
}
.cid-ugNwl2XqaR .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-ugNwl2XqaR .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-ugNwl2XqaR .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-ugNwl2XqaR .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-ugNwl2XqaR .text1 {
  zoom: 1.25;
}
.cid-ugNwl2XqaR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugNwl2XqaR .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-ugNwl2XqaR .mbr-text,
.cid-ugNwl2XqaR .mbr-section-btn {
  text-align: left;
}
.cid-ugNwl2XqaR .item-title {
  text-align: left;
}
.cid-ugNwl2XqaR .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-ugNwl2XqaR .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-ugNwl2XqaR .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-ugNwl2XqaR .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-ugNwl2XqaR .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-ugNwl2XqaR .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-ugNwl2XqaR .embla__button--next,
.cid-ugNwl2XqaR .embla__button--prev {
  display: flex;
}
.cid-ugNwl2XqaR .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-ugNwl2XqaR .embla__button {
    display: none;
  }
}
.cid-ugNwl2XqaR .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-ugNwl2XqaR .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-ugNwl2XqaR .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ugNwl2XqaR .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ugNwl2XqaR .embla__button {
    topx: auto;
  }
}
.cid-ugNwl2XqaR .embla {
  position: relative;
  width: 100%;
}
.cid-ugNwl2XqaR .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-ugNwl2XqaR .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-ugNwl2XqaR .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-ugNwl2XqaR .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-ugNwl2XqaR .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-ugNwl2XqaR .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-ugNwl2XqaR .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-ugNwl2XqaR .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-ugNwl2XqaR .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-ugNwl2XqaR .mbr-section-more .btn::after {
  content: ">";
}
.cid-ugNwl2XqaR .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-ugNwl2XqaR H3 {
  color: #232323;
}
.cid-ugNwl2XqaR P {
  color: #232323;
}
.cid-udHVXyjt3i .navbar-dropdown {
  position: relative !important;
}
.cid-udHVXyjt3i .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-udHVXyjt3i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-udHVXyjt3i .dropdown-item:hover,
.cid-udHVXyjt3i .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-udHVXyjt3i .dropdown-item:hover span {
  color: white;
}
.cid-udHVXyjt3i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-udHVXyjt3i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-udHVXyjt3i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-udHVXyjt3i .nav-link {
  position: relative;
}
.cid-udHVXyjt3i .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .container {
    flex-wrap: nowrap;
  }
}
.cid-udHVXyjt3i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown-menu,
.cid-udHVXyjt3i .navbar.opened {
  background: #353535 !important;
}
.cid-udHVXyjt3i .nav-item:focus,
.cid-udHVXyjt3i .nav-link:focus {
  outline: none;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-udHVXyjt3i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-udHVXyjt3i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-udHVXyjt3i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-udHVXyjt3i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-udHVXyjt3i .navbar.opened {
  transition: all 0.3s;
}
.cid-udHVXyjt3i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-udHVXyjt3i .navbar .navbar-logo img {
  width: auto;
}
.cid-udHVXyjt3i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar.collapsed {
  justify-content: center;
}
.cid-udHVXyjt3i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-udHVXyjt3i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-udHVXyjt3i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-udHVXyjt3i .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-udHVXyjt3i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-udHVXyjt3i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-udHVXyjt3i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-udHVXyjt3i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-udHVXyjt3i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-udHVXyjt3i .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-udHVXyjt3i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-udHVXyjt3i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-udHVXyjt3i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-udHVXyjt3i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-udHVXyjt3i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-udHVXyjt3i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-udHVXyjt3i .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-udHVXyjt3i .navbar.navbar-short {
  min-height: 60px;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-udHVXyjt3i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-udHVXyjt3i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-udHVXyjt3i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-udHVXyjt3i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-udHVXyjt3i .dropdown-item.active,
.cid-udHVXyjt3i .dropdown-item:active {
  background-color: transparent;
}
.cid-udHVXyjt3i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-udHVXyjt3i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-udHVXyjt3i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-udHVXyjt3i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-udHVXyjt3i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-udHVXyjt3i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-udHVXyjt3i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-udHVXyjt3i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-udHVXyjt3i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-udHVXyjt3i .navbar-dropdown {
  padding: 0 1rem;
}
.cid-udHVXyjt3i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-udHVXyjt3i .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udHVXyjt3i .navbar {
    height: 70px;
  }
  .cid-udHVXyjt3i .navbar.opened {
    height: auto;
  }
  .cid-udHVXyjt3i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umVhs51FDW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-umVhs51FDW .carousel {
  height: 233px;
}
.cid-umVhs51FDW .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umVhs51FDW .carousel-item,
.cid-umVhs51FDW .carousel-inner {
  height: 100%;
}
.cid-umVhs51FDW .carousel-caption {
  bottom: 40px;
}
.cid-umVhs51FDW .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-umVhs51FDW .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-umVhs51FDW .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-umVhs51FDW .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-umVhs51FDW .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-umVhs51FDW .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-umVhs51FDW .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-umVhs51FDW .carousel-control {
  top: 40%;
  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-umVhs51FDW .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umVhs51FDW .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umVhs51FDW .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umVhs51FDW .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-umVhs51FDW .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-umVhs51FDW .carousel-indicators li.active,
.cid-umVhs51FDW .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umVhs51FDW .carousel-indicators li::after,
.cid-umVhs51FDW .carousel-indicators li::before {
  content: none;
}
.cid-umVhs51FDW .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umVhs51FDW .carousel-indicators {
    display: none !important;
  }
}
.cid-umVd5P3wE5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umVd5P3wE5 .ratingstar {
  display: inline-block;
  margin-right: .25em;
  color: #f5793b;
  font-size: 2em;
}
.cid-umVJP3PqFX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-umVJP3PqFX .mbr-section-title {
  text-align: left;
}
.cid-umVJP3PqFX .mbr-section-subtitle {
  text-align: center;
  color: #080808;
}
.cid-umVJP3PqFX .mbr-text {
  text-align: left;
  color: #333333;
}
.cid-umVJP3PqFX .container-fluid {
  padding: 0 36px;
}
.cid-umVJP3PqFX .row {
  justify-content: space-between;
}
.cid-umVJP3PqFX .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-umVJP3PqFX .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-umVJP3PqFX .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-umVJP3PqFX .embla {
  position: relative;
  width: 100%;
}
.cid-umVJP3PqFX .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-umVJP3PqFX .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
  box-shadow: 0 7px 20px #333333;
  border-radius: .5em;
}
.cid-umVJP3PqFX .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-umVJP3PqFX .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
.cid-umVJP3PqFX .embla__slide .slide-content {
  width: 100%;
}
.cid-umVJP3PqFX .embla__slide .slide-content .item-wrapper .item-img img {
  height: 520px;
  object-fit: cover;
  border-radius: 0 !important;
}
.cid-umVJP3PqFX .embla__button.embla__button--prev {
  right: 6rem;
}
.cid-umVJP3PqFX .embla__button.embla__button--next {
  right: 0;
}
.cid-umVJP3PqFX .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 26px;
  background-color: transparent !important;
  color: #080808 !important;
  border: none;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-umVJP3PqFX .embla__button:hover {
  color: #3898ec !important;
}
.cid-umVJP3PqFX .embla__button--next,
.cid-umVJP3PqFX .cid-tXLHmqsIVK .embla__button--prev {
  display: flex;
}
.cid-umVdoFRjo9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umVdoFRjo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umVdoFRjo9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umVdoFRjo9 .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-umVdoFRjo9 .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-umVdoFRjo9 .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-umVdoFRjo9 .card {
    margin-bottom: 2rem;
  }
  .cid-umVdoFRjo9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-umVdoFRjo9 .icon-title {
  color: #353535;
}
.cid-umVdoFRjo9 .card-title,
.cid-umVdoFRjo9 .card-box {
  color: #353535;
}
.cid-umVdoFRjo9 .mbr-text,
.cid-umVdoFRjo9 .mbr-section-btn {
  color: #232323;
}
.cid-umVdoFRjo9 .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-umVdoFRjo9 .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-umVdoFRjo9 .btn::after {
  content: ">";
}
.cid-umYpIWdQjj .navbar-dropdown {
  position: relative !important;
}
.cid-umYpIWdQjj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umYpIWdQjj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umYpIWdQjj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umYpIWdQjj .dropdown-item:hover,
.cid-umYpIWdQjj .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-umYpIWdQjj .dropdown-item:hover span {
  color: white;
}
.cid-umYpIWdQjj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umYpIWdQjj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umYpIWdQjj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umYpIWdQjj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umYpIWdQjj .nav-link {
  position: relative;
}
.cid-umYpIWdQjj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umYpIWdQjj .container {
    flex-wrap: nowrap;
  }
}
.cid-umYpIWdQjj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umYpIWdQjj .dropdown-menu,
.cid-umYpIWdQjj .navbar.opened {
  background: #353535 !important;
}
.cid-umYpIWdQjj .nav-item:focus,
.cid-umYpIWdQjj .nav-link:focus {
  outline: none;
}
.cid-umYpIWdQjj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umYpIWdQjj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umYpIWdQjj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umYpIWdQjj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umYpIWdQjj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umYpIWdQjj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umYpIWdQjj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-umYpIWdQjj .navbar.opened {
  transition: all 0.3s;
}
.cid-umYpIWdQjj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umYpIWdQjj .navbar .navbar-logo img {
  width: auto;
}
.cid-umYpIWdQjj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umYpIWdQjj .navbar.collapsed {
  justify-content: center;
}
.cid-umYpIWdQjj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umYpIWdQjj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umYpIWdQjj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-umYpIWdQjj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umYpIWdQjj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umYpIWdQjj .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-umYpIWdQjj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umYpIWdQjj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umYpIWdQjj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umYpIWdQjj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umYpIWdQjj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umYpIWdQjj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umYpIWdQjj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umYpIWdQjj .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-umYpIWdQjj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umYpIWdQjj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umYpIWdQjj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umYpIWdQjj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umYpIWdQjj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umYpIWdQjj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-umYpIWdQjj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-umYpIWdQjj .navbar.navbar-short {
  min-height: 60px;
}
.cid-umYpIWdQjj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umYpIWdQjj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umYpIWdQjj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umYpIWdQjj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umYpIWdQjj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umYpIWdQjj .dropdown-item.active,
.cid-umYpIWdQjj .dropdown-item:active {
  background-color: transparent;
}
.cid-umYpIWdQjj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umYpIWdQjj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umYpIWdQjj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umYpIWdQjj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-umYpIWdQjj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umYpIWdQjj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umYpIWdQjj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umYpIWdQjj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umYpIWdQjj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umYpIWdQjj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-umYpIWdQjj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umYpIWdQjj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umYpIWdQjj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umYpIWdQjj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umYpIWdQjj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umYpIWdQjj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umYpIWdQjj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umYpIWdQjj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umYpIWdQjj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umYpIWdQjj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umYpIWdQjj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umYpIWdQjj .navbar {
    height: 70px;
  }
  .cid-umYpIWdQjj .navbar.opened {
    height: auto;
  }
  .cid-umYpIWdQjj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umYpIWGnww {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-umYpIWGnww .carousel {
  height: 233px;
}
.cid-umYpIWGnww .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-umYpIWGnww .carousel-item,
.cid-umYpIWGnww .carousel-inner {
  height: 100%;
}
.cid-umYpIWGnww .carousel-caption {
  bottom: 40px;
}
.cid-umYpIWGnww .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-umYpIWGnww .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-umYpIWGnww .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-umYpIWGnww .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-umYpIWGnww .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-umYpIWGnww .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-umYpIWGnww .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-umYpIWGnww .carousel-control {
  top: 40%;
  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-umYpIWGnww .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umYpIWGnww .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umYpIWGnww .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umYpIWGnww .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-umYpIWGnww .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-umYpIWGnww .carousel-indicators li.active,
.cid-umYpIWGnww .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-umYpIWGnww .carousel-indicators li::after,
.cid-umYpIWGnww .carousel-indicators li::before {
  content: none;
}
.cid-umYpIWGnww .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-umYpIWGnww .carousel-indicators {
    display: none !important;
  }
}
.cid-umYpIX3xnh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umYpIX3xnh .ratingstar {
  display: inline-block;
  margin-right: .25em;
  color: #f5793b;
  font-size: 2em;
}
.cid-umYpIXhB2y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-umYpIXhB2y .mbr-section-title {
  text-align: left;
}
.cid-umYpIXhB2y .mbr-section-subtitle {
  text-align: left;
  color: #080808;
}
.cid-umYpIXhB2y .mbr-text {
  text-align: left;
  color: #333333;
}
.cid-umYpIXhB2y .container-fluid {
  padding: 0 36px;
}
.cid-umYpIXhB2y .row {
  justify-content: space-between;
}
.cid-umYpIXhB2y .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-umYpIXhB2y .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-umYpIXhB2y .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-umYpIXhB2y .embla {
  position: relative;
  width: 100%;
}
.cid-umYpIXhB2y .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-umYpIXhB2y .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-umYpIXhB2y .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-umYpIXhB2y .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
.cid-umYpIXhB2y .embla__slide .slide-content {
  width: 100%;
}
.cid-umYpIXhB2y .embla__slide .slide-content .item-wrapper .item-img img {
  height: 520px;
  object-fit: cover;
}
.cid-umYpIXhB2y .embla__button {
  position: absolute;
  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;
  opacity: 0.5;
  color: #fff;
}
.cid-umYpIXhB2y .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umYpIXhB2y .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-umYpIXhB2y .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umYpIXhB2y .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-umYpIXhB2y .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-umYpIXhB2y .embla__button:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-umYpIXhB2y .usp li {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-umYpIXhB2y H3 {
  text-align: left;
}
.cid-uq2Du42zzZ {
  padding-top: 2rem;
  padding-bottom: 5rem;
}
.cid-uq2Du42zzZ .mbr-section-title {
  text-align: left;
}
.cid-uq2Du42zzZ .mbr-section-subtitle {
  text-align: center;
}
.cid-uq2Du42zzZ .mbr-text {
  text-align: left;
}
.cid-uq2Du42zzZ .oneven {
  background-color: #ffefe3;
}
.cid-uq2DZvDur6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uq2DZvDur6 .kenmerken {
  -webkit-column-count: 3;
  column-count: 3;
}
.cid-uq2DZvDur6 ul {
  list-style-type: none;
  padding-left: 0;
}
.cid-uq2DZvDur6 .mbr-category {
  break-inside: avoid-column;
}
.cid-uq2E7LFk4T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq2E7LFk4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uq2E7LFk4T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uq2E7LFk4T .card-wrapper {
  background: #fff9ef;
  border-radius: 8px;
  border: solid #8f928c;
}
@media (max-width: 767px) {
  .cid-uq2E7LFk4T .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uq2E7LFk4T .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uq2E7LFk4T .card-wrapper {
    padding: 4rem;
  }
}
.cid-uq2E7LFk4T .jw {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uq2E7LFk4T .jw {
    margin-bottom: 2rem;
  }
}
.cid-uq2E7LFk4T .mbr-iconfont {
  font-size: 2rem;
  color: #232323;
  padding-right: 1.5rem;
}
.cid-uq2E7LFk4T .mbr-text,
.cid-uq2E7LFk4T .mbr-section-btn {
  color: #000000;
}
.cid-uq2E7LFk4T .card-title,
.cid-uq2E7LFk4T .card-box {
  text-align: left;
}
.cid-uq2E7LFk4T .mbr-section-subtitle {
  text-align: left;
}
.cid-uq2E7LFk4T .mbr-section-title {
  text-align: left;
}
.cid-undjCP3qNe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-undjCP3qNe .carousel {
  height: 233px;
}
.cid-undjCP3qNe .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-undjCP3qNe .carousel-item,
.cid-undjCP3qNe .carousel-inner {
  height: 100%;
}
@media (min-width: 768px) {
  .cid-undjCP3qNe .carousel {
    display: none;
  }
}
@media (max-width: 767px) {
  .cid-undjCP3qNe .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-undjCP3qNe .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-undjCP3qNe .carousel-caption {
  bottom: 40px;
}
.cid-undjCP3qNe .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-undjCP3qNe .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-undjCP3qNe .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-undjCP3qNe .item-wrapper {
  width: 100%;
}
.cid-undjCP3qNe .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-undjCP3qNe .carousel-control {
  top: 40%;
  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-undjCP3qNe .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-undjCP3qNe .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-undjCP3qNe .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-undjCP3qNe .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-undjCP3qNe .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-undjCP3qNe .carousel-indicators li.active,
.cid-undjCP3qNe .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-undjCP3qNe .carousel-indicators li::after,
.cid-undjCP3qNe .carousel-indicators li::before {
  content: none;
}
.cid-undjCP3qNe .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-undjCP3qNe .carousel-indicators {
    display: none !important;
  }
}
.cid-unSkZmHeUt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unSkZmHeUt .carousel {
  height: 233px;
}
.cid-unSkZmHeUt .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-unSkZmHeUt .carousel-item,
.cid-unSkZmHeUt .carousel-inner {
  height: 100%;
}
.cid-unSkZmHeUt .carousel-caption {
  bottom: 40px;
}
.cid-unSkZmHeUt .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-unSkZmHeUt .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-unSkZmHeUt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-unSkZmHeUt .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-unSkZmHeUt .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-unSkZmHeUt .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-unSkZmHeUt .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-unSkZmHeUt .carousel-control {
  top: 40%;
  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-unSkZmHeUt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unSkZmHeUt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unSkZmHeUt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unSkZmHeUt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-unSkZmHeUt .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-unSkZmHeUt .carousel-indicators li.active,
.cid-unSkZmHeUt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unSkZmHeUt .carousel-indicators li::after,
.cid-unSkZmHeUt .carousel-indicators li::before {
  content: none;
}
.cid-unSkZmHeUt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unSkZmHeUt .carousel-indicators {
    display: none !important;
  }
}
.cid-undjCPoEbg {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-undjCPoEbg .ratingstar {
  display: inline-block;
  margin-right: .25em;
  color: #f5793b;
  font-size: 2em;
}
.cid-undjCPxtEO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-undjCPxtEO .mbr-section-title {
  text-align: left;
}
.cid-undjCPxtEO .mbr-section-subtitle {
  text-align: left;
  color: #080808;
}
.cid-undjCPxtEO .mbr-text {
  text-align: left;
  color: #333333;
}
.cid-undjCPxtEO .container-fluid {
  padding: 0 36px;
}
.cid-undjCPxtEO .row {
  justify-content: space-between;
}
.cid-undjCPxtEO .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-undjCPxtEO .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-undjCPxtEO .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-undjCPxtEO .embla {
  position: relative;
  width: 100%;
}
.cid-undjCPxtEO .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-undjCPxtEO .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-undjCPxtEO .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-undjCPxtEO .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
.cid-undjCPxtEO .embla__slide .slide-content {
  width: 100%;
}
.cid-undjCPxtEO .embla__slide .slide-content .item-wrapper .item-img img {
  height: 520px;
  object-fit: cover;
}
.cid-undjCPxtEO .embla__button {
  position: absolute;
  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;
  opacity: 0.5;
  color: #fff;
}
.cid-undjCPxtEO .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-undjCPxtEO .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-undjCPxtEO .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-undjCPxtEO .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-undjCPxtEO .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-undjCPxtEO .embla__button:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-undjCPxtEO .usp li {
  padding-left: 1.5em;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
  font-weight: bold;
}
.cid-undjCPxtEO H3 {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-undjCPxtEO #first-part-mobile {
    display: none;
  }
  .cid-undjCPxtEO #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-undjCPxtEO #first-part-desktop {
    display: none;
  }
}
.cid-undjCPxtEO button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-undjCPxtEO a.text-primary {
  text-decoration: underline;
}
.cid-unABGHgDKa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-unABGHgDKa .kenmerken {
  -webkit-column-count: 3;
  column-count: 3;
}
.cid-unABGHgDKa ul {
  list-style-type: none;
  padding-left: 0;
}
.cid-unABGHgDKa .mbr-category {
  break-inside: avoid-column;
}
.cid-unlwKB5xdu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-unlwKB5xdu .google-map1 {
  height: 30rem;
  position: relative;
}
.cid-unlwKB5xdu .google-map1 iframe {
  height: 100%;
  width: 100%;
}
.cid-unlwKB5xdu .google-map1 [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-unlwKB5xdu .google-map1[data-state] {
  background: #e9e5dc;
}
.cid-unlwKB5xdu .google-map1[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-unlwKB5xdu :root {
  --building-color: #FF9800;
  --house-color: #0288D1;
  --shop-color: #7B1FA2;
  --warehouse-color: #558B2F;
}
.cid-unlwKB5xdu #map {
  height: 30rem;
  width: 100%;
}
.cid-unlwKB5xdu .property {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #263238;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 30px;
  justify-content: center;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease-out;
  width: 30px;
}
.cid-unlwKB5xdu .property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}
.cid-unlwKB5xdu .property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
}
.cid-unlwKB5xdu .property .icon svg {
  height: 20px;
  width: auto;
}
.cid-unlwKB5xdu .property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}
.cid-unlwKB5xdu .property .address {
  color: #9E9E9E;
  font-size: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.cid-unlwKB5xdu .property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cid-unlwKB5xdu .property .features > div {
  align-items: center;
  background: #F5F5F5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}
.cid-unlwKB5xdu .property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 80px;
  padding: 8px 15px;
  width: auto;
}
.cid-unlwKB5xdu .property.highlight::after {
  border-top: 9px solid #FFFFFF;
}
.cid-unlwKB5xdu .property.highlight .details {
  display: flex;
}
.cid-unlwKB5xdu .property.highlight .icon svg {
  width: 50px;
  height: 50px;
}
.cid-unlwKB5xdu .property .bed {
  color: #FFA000;
}
.cid-unlwKB5xdu .property .bath {
  color: #03A9F4;
}
.cid-unlwKB5xdu .property .size {
  color: #388E3C;
}
.cid-unlwKB5xdu .property.highlight:has(.fa-house) .icon {
  color: var(--house-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-house) {
  background-color: var(--house-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-house)::after {
  border-top: 9px solid var(--house-color);
}
.cid-unlwKB5xdu .property.highlight:has(.fa-building) .icon {
  color: var(--building-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-building) {
  background-color: var(--building-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-building)::after {
  border-top: 9px solid var(--building-color);
}
.cid-unlwKB5xdu .property.highlight:has(.fa-warehouse) .icon {
  color: var(--warehouse-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-warehouse) {
  background-color: var(--warehouse-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-warehouse)::after {
  border-top: 9px solid var(--warehouse-color);
}
.cid-unlwKB5xdu .property.highlight:has(.fa-shop) .icon {
  color: var(--shop-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-shop) {
  background-color: var(--shop-color);
}
.cid-unlwKB5xdu .property:not(.highlight):has(.fa-shop)::after {
  border-top: 9px solid var(--shop-color);
}
.cid-undjCPZJCU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-undjCPZJCU .mbr-fallback-image.disabled {
  display: none;
}
.cid-undjCPZJCU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-undjCPZJCU .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-undjCPZJCU .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-undjCPZJCU .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-undjCPZJCU .card {
    margin-bottom: 2rem;
  }
  .cid-undjCPZJCU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-undjCPZJCU .icon-title {
  color: #353535;
}
.cid-undjCPZJCU .card-title,
.cid-undjCPZJCU .card-box {
  color: #353535;
}
.cid-undjCPZJCU .mbr-text,
.cid-undjCPZJCU .mbr-section-btn {
  color: #232323;
}
.cid-undjCPZJCU .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-undjCPZJCU .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-undjCPZJCU .btn::after {
  content: ">";
}
.cid-unxxKqYYmt {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/campingzuidfrankrijk.webp");
}
.cid-unxxKqYYmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKqYYmt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKqYYmt .mbr-text,
.cid-unxxKqYYmt .mbr-section-btn {
  color: #232323;
}
.cid-unxxKqYYmt .card-title,
.cid-unxxKqYYmt .card-box {
  color: #ffffff;
}
.cid-unxxKqYYmt .mbr-text,
.cid-unxxKqYYmt .link-wrap {
  color: #ffffff;
}
.cid-unxxKreaFD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-unxxKreaFD li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-unxxKreaFD li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-unxxKrrpfk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-unxxKrrpfk .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-unxxKrrpfk #first-part-mobile {
    display: none;
  }
  .cid-unxxKrrpfk #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-unxxKrrpfk #first-part-desktop {
    display: none;
  }
}
.cid-unxxKrrpfk button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-unxxKrrpfk .mbr-section-title {
  text-align: left;
}
.cid-unxxKrHF4I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unxxKrHF4I img,
.cid-unxxKrHF4I .item-img {
  width: 100%;
}
.cid-unxxKrHF4I .item:focus,
.cid-unxxKrHF4I span:focus {
  outline: none;
}
.cid-unxxKrHF4I .item {
  margin-bottom: 2rem;
}
.cid-unxxKrHF4I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-unxxKrHF4I .item-wrapper .item-content {
  padding: 0.2rem 1rem;
}
.cid-unxxKrHF4I .mbr-section-title {
  color: #232323;
}
.cid-unxxKrHF4I .item-title {
  text-align: center;
  color: #232323;
}
.cid-unxxKrHF4I .item-title:hover {
  text-decoration: underline;
  color: #0059ff;
}
.cid-unxxKrHF4I .item-subtitle {
  text-align: center;
}
.cid-unxxKrHF4I .mbr-text {
  text-align: center;
}
.cid-unxxKs4yAr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unxxKs4yAr .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-unxxKs4yAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKs4yAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKs4yAr .item {
  padding-bottom: 0.6rem;
}
.cid-unxxKs4yAr .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unxxKs4yAr .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-unxxKs4yAr .image-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-unxxKs4yAr .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-unxxKs4yAr .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-unxxKs4yAr .gallery-image:hover img {
  transform: scale(1.1, 1.1);
}
.cid-unxxKs4yAr .carousel-control,
.cid-unxxKs4yAr .close {
  background: #1b1b1b;
}
.cid-unxxKs4yAr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-unxxKs4yAr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-unxxKs4yAr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-unxxKs4yAr .carousel-control-next span {
  margin-left: 5px;
}
.cid-unxxKs4yAr .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-unxxKs4yAr .close::before {
  content: '\e91a';
}
.cid-unxxKs4yAr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-unxxKs4yAr .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-unxxKs4yAr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unxxKs4yAr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unxxKs4yAr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unxxKs4yAr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-unxxKs4yAr .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-unxxKs4yAr .carousel-indicators li.active,
.cid-unxxKs4yAr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unxxKs4yAr .carousel-indicators li::after,
.cid-unxxKs4yAr .carousel-indicators li::before {
  content: none;
}
.cid-unxxKs4yAr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unxxKs4yAr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-unxxKs4yAr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-unxxKs4yAr .carousel-indicators {
    display: none;
  }
}
.cid-unxxKs4yAr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-unxxKs4yAr .carousel-inner > .active {
  display: block;
}
.cid-unxxKs4yAr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unxxKs4yAr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-unxxKs4yAr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-unxxKs4yAr .carousel-control,
  .cid-unxxKs4yAr .carousel-indicators,
  .cid-unxxKs4yAr .modal .close {
    position: fixed;
  }
}
.cid-unxxKs4yAr .carousel-indicators .active,
.cid-unxxKs4yAr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-unxxKs4yAr .carousel-indicators .active {
  background: #fff;
}
.cid-unxxKs4yAr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-unxxKs4yAr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-unxxKs4yAr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-unxxKs4yAr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-unxxKs4yAr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-unxxKs4yAr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-unxxKs4yAr .carousel {
  width: 100%;
}
.cid-unxxKs4yAr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-unxxKs4yAr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-unxxKs4yAr .modal.fade .modal-dialog,
.cid-unxxKs4yAr .modal.in .modal-dialog {
  transform: none;
}
.cid-unxxKs4yAr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-unxxKs4yAr H3 {
  text-align: center;
  color: #ffffff;
}
.cid-unxxKs4yAr .mbr-text {
  text-align: left;
}
.cid-unxxKs4yAr H2 {
  text-align: left;
}
.cid-unxxKsx3QG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-unxxKsx3QG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unxxKsx3QG img {
  width: 100%;
}
.cid-unxxKsx3QG picture {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKsx3QG picture source {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKsx3QG picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-unxxKsx3QG .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-unxxKsx3QG .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-unxxKsx3QG .mbr-section-title {
  color: #232323;
}
.cid-unxxKsx3QG .mbr-text {
  color: #000000;
}
.cid-unxxKsx3QG .mbr-description {
  color: #000000;
}
.cid-unxxKsNDMh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-unxxKsNDMh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unxxKsNDMh img {
  width: 100%;
}
.cid-unxxKsNDMh picture {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKsNDMh picture source {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKsNDMh picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-unxxKsNDMh .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-unxxKsNDMh .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-unxxKsNDMh .mbr-section-title {
  color: #232323;
}
.cid-unxxKsNDMh .mbr-text {
  color: #000000;
}
.cid-unxxKsNDMh .mbr-description {
  color: #000000;
}
.cid-unxxKt2mpa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unxxKt2mpa .mbr-section-subtitle {
  text-align: center;
}
.cid-unxxKt2mpa .mbr-text {
  text-align: center;
}
.cid-unxxKt2mpa .mbr-section-title {
  text-align: center;
}
.cid-unxxKteJEK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unxxKteJEK .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKteJEK .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-unxxKteJEK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-unxxKteJEK .row {
  flex-direction: row-reverse;
}
.cid-unxxKteJEK img {
  width: 100%;
}
.cid-unxxKtqLeR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2.webp");
}
.cid-unxxKtqLeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKtqLeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKtqLeR .mbr-text,
.cid-unxxKtqLeR .mbr-section-btn {
  color: #232323;
}
.cid-unxxKtqLeR .card-title,
.cid-unxxKtqLeR .card-box {
  color: #ffffff;
}
.cid-unxxKtqLeR .mbr-text,
.cid-unxxKtqLeR .link-wrap {
  color: #ffffff;
}
.cid-unxxKtqLeR .form-control {
  font-size: 1.2rem;
}
.cid-unxxKtEYbk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-unxxKtEYbk #modalSheet {
  top: 70px !important;
}
.cid-unxxKtEYbk .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-unxxKtEYbk img,
.cid-unxxKtEYbk .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-unxxKtEYbk .item:focus,
.cid-unxxKtEYbk span:focus {
  outline: none;
}
.cid-unxxKtEYbk .item {
  margin-bottom: 2rem;
}
.cid-unxxKtEYbk .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-unxxKtEYbk .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-unxxKtEYbk .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-unxxKtEYbk .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-unxxKtEYbk .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-unxxKtEYbk .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-unxxKtEYbk .mbr-section-title {
  color: #ffffff;
}
.cid-unxxKtEYbk .mbr-text,
.cid-unxxKtEYbk .mbr-section-btn {
  text-align: left;
}
.cid-unxxKtEYbk .item-title {
  text-align: left;
  color: #353535;
}
.cid-unxxKtEYbk .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-unxxKtEYbk .item-img {
  position: relative;
  justify-content: center;
}
.cid-unxxKtEYbk .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-unxxKtEYbk .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-unxxKtEYbk .item-img .img-description p {
  margin-bottom: 0;
}
.cid-unxxKtEYbk .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-unxxKtEYbk .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-unxxKtEYbk .btn::after {
  content: ">";
}
.cid-unxxKtEYbk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unxxKvGdoR {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unxxKvGdoR .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKvGdoR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKvGdoR .card-wrapper {
  background: none;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-unxxKvGdoR .card-wrapper {
    padding: 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unxxKvGdoR .card-wrapper {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-unxxKvGdoR .card-wrapper {
    padding: 1rem;
  }
}
.cid-unxxKvGdoR .mbr-text,
.cid-unxxKvGdoR .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-unxxKvGdoR .card-title,
.cid-unxxKvGdoR .card-box {
  text-align: center;
  color: #232323;
}
.cid-unxxKvGdoR .svgmap path {
  transition: .6s fill;
  fill: #90a58a;
  stroke: #f6f7f0;
  stroke-width: 0.8;
}
.cid-unxxKvGdoR .svgmap path:hover {
  fill: #ED6B1C;
}
.cid-unxxKvGdoR .svg-container {
  width: 100%;
  min-height: 300px;
}
.cid-unxxKw1iYI {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-unxxKw1iYI .row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.cid-unxxKw1iYI .row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-unxxKw1iYI .mbr-text {
  text-align: center;
}
.cid-unxxKw1iYI .ol-text {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-unxxKw1iYI .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-unxxKw1iYI .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-unxxKw1iYI .ol-text {
    padding: 0rem 8rem;
  }
}
.cid-unxxKw1iYI ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-unxxKw1iYI ol li {
  margin-bottom: 1rem;
}
.cid-unxxKw1iYI ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-unxxKw1iYI ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unxxKwfHuR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unxxKwfHuR .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-unxxKwfHuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKwfHuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKwfHuR .item {
  padding-bottom: 0.6rem;
}
.cid-unxxKwfHuR .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unxxKwfHuR .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-unxxKwfHuR .image-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-unxxKwfHuR .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-unxxKwfHuR .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-unxxKwfHuR .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-unxxKwfHuR .carousel-control,
.cid-unxxKwfHuR .close {
  background: #1b1b1b;
}
.cid-unxxKwfHuR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-unxxKwfHuR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-unxxKwfHuR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-unxxKwfHuR .carousel-control-next span {
  margin-left: 5px;
}
.cid-unxxKwfHuR .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-unxxKwfHuR .close::before {
  content: '\e91a';
}
.cid-unxxKwfHuR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-unxxKwfHuR .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-unxxKwfHuR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unxxKwfHuR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unxxKwfHuR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unxxKwfHuR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-unxxKwfHuR .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-unxxKwfHuR .carousel-indicators li.active,
.cid-unxxKwfHuR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unxxKwfHuR .carousel-indicators li::after,
.cid-unxxKwfHuR .carousel-indicators li::before {
  content: none;
}
.cid-unxxKwfHuR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unxxKwfHuR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-unxxKwfHuR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-unxxKwfHuR .carousel-indicators {
    display: none;
  }
}
.cid-unxxKwfHuR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-unxxKwfHuR .carousel-inner > .active {
  display: block;
}
.cid-unxxKwfHuR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unxxKwfHuR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-unxxKwfHuR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-unxxKwfHuR .carousel-control,
  .cid-unxxKwfHuR .carousel-indicators,
  .cid-unxxKwfHuR .modal .close {
    position: fixed;
  }
}
.cid-unxxKwfHuR .carousel-indicators .active,
.cid-unxxKwfHuR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-unxxKwfHuR .carousel-indicators .active {
  background: #fff;
}
.cid-unxxKwfHuR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-unxxKwfHuR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-unxxKwfHuR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-unxxKwfHuR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-unxxKwfHuR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-unxxKwfHuR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-unxxKwfHuR .carousel {
  width: 100%;
}
.cid-unxxKwfHuR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-unxxKwfHuR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-unxxKwfHuR .modal.fade .modal-dialog,
.cid-unxxKwfHuR .modal.in .modal-dialog {
  transform: none;
}
.cid-unxxKwfHuR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-unxxKwfHuR H3 {
  text-align: center;
  color: #ffffff;
}
.cid-unxxKwIrCb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-unxxKwIrCb .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKwIrCb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKwIrCb .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-unxxKwIrCb .currentcost {
  color: #232323;
}
.cid-unxxKwIrCb .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-unxxKwIrCb .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-unxxKwIrCb .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-unxxKwIrCb .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-unxxKwIrCb .text-box {
    padding: 4rem;
  }
  .cid-unxxKwIrCb .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-unxxKwIrCb .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unxxKwIrCb .text-box {
    padding: 1rem;
  }
}
.cid-unxxKwIrCb .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-unxxKwIrCb .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unxxKwIrCb .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-unxxKwIrCb .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-unxxKwIrCb .img-description p {
  margin-bottom: 0;
}
.cid-unxxKwIrCb H5 {
  color: #414a54;
}
.cid-unxxKwIrCb .mbr-section-subtitle {
  text-align: left;
}
.cid-unxxKwIrCb H2 {
  color: #353535;
}
.cid-unxxKwIrCb .mbr-text,
.cid-unxxKwIrCb .cost,
.cid-unxxKwIrCb .mbr-section-btn {
  color: #353535;
}
.cid-unxxKwIrCb .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-unxxKwIrCb .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-unxxKwIrCb .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-unxxKwIrCb .btn::after {
  content: ">";
}
.cid-unxxKwIrCb picture {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKwIrCb picture source {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKwIrCb picture img {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKxSucN {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unxxKxSucN .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-unxxKxSucN .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-unxxKxSucN .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-unxxKxSucN .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unxxKxSucN .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-unxxKxSucN .text-primary {
  font-size: 1rem;
}
.cid-unxxKxSucN .text-primary:hover {
  text-decoration: underline;
}
.cid-unxxKy9PHC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-unxxKy9PHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKy9PHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKy9PHC .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-unxxKy9PHC .currentcost {
  color: #232323;
}
.cid-unxxKy9PHC .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-unxxKy9PHC .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-unxxKy9PHC .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-unxxKy9PHC .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-unxxKy9PHC .text-box {
    padding: 4rem;
  }
  .cid-unxxKy9PHC .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-unxxKy9PHC .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unxxKy9PHC .text-box {
    padding: 1rem;
  }
}
.cid-unxxKy9PHC .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-unxxKy9PHC .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unxxKy9PHC .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-unxxKy9PHC .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-unxxKy9PHC .img-description p {
  margin-bottom: 0;
}
.cid-unxxKy9PHC H5 {
  color: #414a54;
}
.cid-unxxKy9PHC .mbr-section-subtitle {
  text-align: left;
}
.cid-unxxKy9PHC H2 {
  color: #353535;
}
.cid-unxxKy9PHC .mbr-text,
.cid-unxxKy9PHC .cost,
.cid-unxxKy9PHC .mbr-section-btn {
  color: #353535;
}
.cid-unxxKy9PHC .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-unxxKy9PHC .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-unxxKy9PHC .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-unxxKy9PHC .btn::after {
  content: ">";
}
.cid-unxxKy9PHC picture {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKy9PHC picture source {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKy9PHC picture img {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKysuk6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unxxKysuk6 .counter-container {
  zoom: 0.9;
  -moz-transform: scale(0.9);
}
.cid-unxxKysuk6 .coltitle {
  text-align: left;
}
.cid-unxxKysuk6 .mbr-section-title {
  color: #353535;
  text-align: center;
  margin-bottom: 1rem;
  zoom: 1.1;
  -moz-transform: scale(1.1);
}
.cid-unxxKysuk6 .col {
  margin-bottom: 4rem;
}
.cid-unxxKysuk6 .mbr-text DIV {
  text-align: left;
}
.cid-unxxKysuk6 .mbr-text {
  color: #353535;
}
.cid-unxxKysuk6 .text-primary:hover {
  text-decoration: underline;
}
.cid-unxxKyI2eD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-unxxKyI2eD .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKyI2eD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKyI2eD .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-unxxKyI2eD .currentcost {
  color: #232323;
}
.cid-unxxKyI2eD .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-unxxKyI2eD .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-unxxKyI2eD .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-unxxKyI2eD .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-unxxKyI2eD .text-box {
    padding: 4rem;
  }
  .cid-unxxKyI2eD .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-unxxKyI2eD .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-unxxKyI2eD .text-box {
    padding: 1rem;
  }
}
.cid-unxxKyI2eD .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-unxxKyI2eD .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unxxKyI2eD .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-unxxKyI2eD .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-unxxKyI2eD .img-description p {
  margin-bottom: 0;
}
.cid-unxxKyI2eD H5 {
  color: #414a54;
}
.cid-unxxKyI2eD .mbr-section-subtitle {
  text-align: left;
}
.cid-unxxKyI2eD H2 {
  color: #353535;
}
.cid-unxxKyI2eD .mbr-text,
.cid-unxxKyI2eD .cost,
.cid-unxxKyI2eD .mbr-section-btn {
  color: #353535;
}
.cid-unxxKyI2eD .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-unxxKyI2eD .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-unxxKyI2eD .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-unxxKyI2eD .btn::after {
  content: ">";
}
.cid-unxxKyI2eD picture {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKyI2eD picture source {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKyI2eD picture img {
  height: 100%;
  object-fit: cover;
}
.cid-unxxKz4oim {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unxxKz4oim .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxxKz4oim .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxxKz4oim .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-unxxKz4oim .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-unxxKz4oim .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-unxxKz4oim .card {
    margin-bottom: 2rem;
  }
  .cid-unxxKz4oim .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-unxxKz4oim .icon-title {
  color: #353535;
}
.cid-unxxKz4oim .card-title,
.cid-unxxKz4oim .card-box {
  color: #353535;
}
.cid-unxxKz4oim .mbr-text,
.cid-unxxKz4oim .mbr-section-btn {
  color: #232323;
}
.cid-unxxKz4oim .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-unxxKz4oim .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-unxxKz4oim .btn::after {
  content: ">";
}
.cid-unxxKzoVUL .navbar-dropdown {
  position: relative !important;
}
.cid-unxxKzoVUL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unxxKzoVUL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unxxKzoVUL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unxxKzoVUL .dropdown-item:hover,
.cid-unxxKzoVUL .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-unxxKzoVUL .dropdown-item:hover span {
  color: white;
}
.cid-unxxKzoVUL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unxxKzoVUL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unxxKzoVUL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unxxKzoVUL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unxxKzoVUL .nav-link {
  position: relative;
}
.cid-unxxKzoVUL .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-unxxKzoVUL .container {
    flex-wrap: nowrap;
  }
}
.cid-unxxKzoVUL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unxxKzoVUL .dropdown-menu,
.cid-unxxKzoVUL .navbar.opened {
  background: #353535 !important;
}
.cid-unxxKzoVUL .nav-item:focus,
.cid-unxxKzoVUL .nav-link:focus {
  outline: none;
}
.cid-unxxKzoVUL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unxxKzoVUL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unxxKzoVUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unxxKzoVUL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unxxKzoVUL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unxxKzoVUL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unxxKzoVUL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-unxxKzoVUL .navbar.opened {
  transition: all 0.3s;
}
.cid-unxxKzoVUL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unxxKzoVUL .navbar .navbar-logo img {
  width: auto;
}
.cid-unxxKzoVUL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unxxKzoVUL .navbar.collapsed {
  justify-content: center;
}
.cid-unxxKzoVUL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unxxKzoVUL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unxxKzoVUL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-unxxKzoVUL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unxxKzoVUL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unxxKzoVUL .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-unxxKzoVUL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unxxKzoVUL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unxxKzoVUL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unxxKzoVUL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unxxKzoVUL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unxxKzoVUL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unxxKzoVUL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unxxKzoVUL .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-unxxKzoVUL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unxxKzoVUL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unxxKzoVUL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unxxKzoVUL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unxxKzoVUL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unxxKzoVUL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-unxxKzoVUL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-unxxKzoVUL .navbar.navbar-short {
  min-height: 60px;
}
.cid-unxxKzoVUL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unxxKzoVUL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unxxKzoVUL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unxxKzoVUL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unxxKzoVUL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unxxKzoVUL .dropdown-item.active,
.cid-unxxKzoVUL .dropdown-item:active {
  background-color: transparent;
}
.cid-unxxKzoVUL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unxxKzoVUL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unxxKzoVUL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unxxKzoVUL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-unxxKzoVUL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unxxKzoVUL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unxxKzoVUL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unxxKzoVUL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unxxKzoVUL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unxxKzoVUL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-unxxKzoVUL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unxxKzoVUL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unxxKzoVUL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unxxKzoVUL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unxxKzoVUL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unxxKzoVUL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unxxKzoVUL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unxxKzoVUL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unxxKzoVUL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-unxxKzoVUL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unxxKzoVUL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unxxKzoVUL .navbar {
    height: 70px;
  }
  .cid-unxxKzoVUL .navbar.opened {
    height: auto;
  }
  .cid-unxxKzoVUL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unxxKzObPU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-unxxKzObPU li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-unxxKzObPU li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-unStuD7jgX .navbar-dropdown {
  position: relative !important;
}
.cid-unStuD7jgX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unStuD7jgX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unStuD7jgX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unStuD7jgX .dropdown-item:hover,
.cid-unStuD7jgX .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-unStuD7jgX .dropdown-item:hover span {
  color: white;
}
.cid-unStuD7jgX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unStuD7jgX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unStuD7jgX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unStuD7jgX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unStuD7jgX .nav-link {
  position: relative;
}
.cid-unStuD7jgX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-unStuD7jgX .container {
    flex-wrap: nowrap;
  }
}
.cid-unStuD7jgX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unStuD7jgX .dropdown-menu,
.cid-unStuD7jgX .navbar.opened {
  background: #353535 !important;
}
.cid-unStuD7jgX .nav-item:focus,
.cid-unStuD7jgX .nav-link:focus {
  outline: none;
}
.cid-unStuD7jgX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unStuD7jgX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unStuD7jgX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unStuD7jgX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unStuD7jgX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unStuD7jgX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unStuD7jgX .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-unStuD7jgX .navbar.opened {
  transition: all 0.3s;
}
.cid-unStuD7jgX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unStuD7jgX .navbar .navbar-logo img {
  width: auto;
}
.cid-unStuD7jgX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-unStuD7jgX .navbar.collapsed {
  justify-content: center;
}
.cid-unStuD7jgX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unStuD7jgX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unStuD7jgX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-unStuD7jgX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unStuD7jgX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unStuD7jgX .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-unStuD7jgX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-unStuD7jgX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unStuD7jgX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unStuD7jgX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unStuD7jgX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unStuD7jgX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unStuD7jgX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unStuD7jgX .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-unStuD7jgX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unStuD7jgX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unStuD7jgX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unStuD7jgX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unStuD7jgX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unStuD7jgX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-unStuD7jgX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-unStuD7jgX .navbar.navbar-short {
  min-height: 60px;
}
.cid-unStuD7jgX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unStuD7jgX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-unStuD7jgX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-unStuD7jgX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-unStuD7jgX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unStuD7jgX .dropdown-item.active,
.cid-unStuD7jgX .dropdown-item:active {
  background-color: transparent;
}
.cid-unStuD7jgX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unStuD7jgX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unStuD7jgX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unStuD7jgX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-unStuD7jgX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unStuD7jgX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unStuD7jgX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-unStuD7jgX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-unStuD7jgX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-unStuD7jgX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-unStuD7jgX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unStuD7jgX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unStuD7jgX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-unStuD7jgX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-unStuD7jgX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unStuD7jgX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-unStuD7jgX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-unStuD7jgX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unStuD7jgX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-unStuD7jgX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unStuD7jgX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unStuD7jgX .navbar {
    height: 70px;
  }
  .cid-unStuD7jgX .navbar.opened {
    height: auto;
  }
  .cid-unStuD7jgX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unStuDF3RN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-unStuDF3RN .carousel {
  height: 233px;
}
.cid-unStuDF3RN .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-unStuDF3RN .carousel-item,
.cid-unStuDF3RN .carousel-inner {
  height: 100%;
}
.cid-unStuDF3RN .carousel-caption {
  bottom: 40px;
}
.cid-unStuDF3RN .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-unStuDF3RN .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-unStuDF3RN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-unStuDF3RN .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-unStuDF3RN .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-unStuDF3RN .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-unStuDF3RN .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-unStuDF3RN .carousel-control {
  top: 40%;
  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-unStuDF3RN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unStuDF3RN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unStuDF3RN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unStuDF3RN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-unStuDF3RN .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-unStuDF3RN .carousel-indicators li.active,
.cid-unStuDF3RN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unStuDF3RN .carousel-indicators li::after,
.cid-unStuDF3RN .carousel-indicators li::before {
  content: none;
}
.cid-unStuDF3RN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unStuDF3RN .carousel-indicators {
    display: none !important;
  }
}
.cid-unStuDF3RN .showthis {
  display: block !important;
}
.cid-unSutHQV75 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-unSutHQV75 .ratingstar {
  display: inline-block;
  margin-right: .25em;
  color: #f5793b;
  font-size: 2em;
}
.cid-unStPHkTii {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-unStPHkTii .mbr-section-title {
  text-align: left;
}
.cid-unStPHkTii .mbr-section-subtitle {
  text-align: left;
  color: #080808;
}
.cid-unStPHkTii .mbr-text {
  text-align: left;
  color: #333333;
}
.cid-unStPHkTii .container-fluid {
  padding: 0 36px;
}
.cid-unStPHkTii .row {
  justify-content: space-between;
}
.cid-unStPHkTii .title-wrapper .mbr-section-title {
  margin-bottom: 80px;
}
.cid-unStPHkTii .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-unStPHkTii .content-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-unStPHkTii .embla {
  position: relative;
  width: 100%;
}
.cid-unStPHkTii .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-unStPHkTii .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-unStPHkTii .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-unStPHkTii .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
.cid-unStPHkTii .embla__slide .slide-content {
  width: 100%;
}
.cid-unStPHkTii .embla__slide .slide-content .item-wrapper .item-img img {
  height: 520px;
  object-fit: cover;
}
.cid-unStPHkTii .embla__button {
  position: absolute;
  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;
  opacity: 0.5;
  color: #fff;
}
.cid-unStPHkTii .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unStPHkTii .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unStPHkTii .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unStPHkTii .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-unStPHkTii .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-unStPHkTii .embla__button:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-unStPHkTii .usp li {
  padding-left: 1.5em;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
  font-weight: bold;
}
.cid-unStPHkTii H3 {
  text-align: left;
}
@media (min-width: 992px) {
  .cid-unStPHkTii #first-part-mobile {
    display: none;
  }
  .cid-unStPHkTii #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-unStPHkTii #first-part-desktop {
    display: none;
  }
}
.cid-unStPHkTii button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-unStPHkTii a.text-primary {
  text-decoration: underline;
}
.cid-unStPHkTii .boeken {
  -webkit-column-count: 3;
  column-count: 3;
}
.cid-unStPHkTii .boeken img {
  max-width: 40%;
}
.cid-unSuhe5hYd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-unSuhe5hYd .kenmerken {
  -webkit-column-count: 3;
  column-count: 3;
}
.cid-unSuhe5hYd ul {
  list-style-type: none;
  padding-left: 0;
}
.cid-unSuhe5hYd .mbr-category {
  break-inside: avoid-column;
}
.cid-uol69WDsDr {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uol69WDsDr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uol69WDsDr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uol69WDsDr .nav-tabs .nav-item.open .nav-link:focus,
.cid-uol69WDsDr .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uol69WDsDr .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #4479d9;
}
.cid-uol69WDsDr .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0 !important;
}
.cid-uol69WDsDr .nav-tabs .nav-link:not(.active) {
  color: #000000;
}
.cid-uol69WDsDr .nav-tabs .nav-item {
  margin-right: 1.5rem;
}
.cid-uol69WDsDr .nav-link,
.cid-uol69WDsDr .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uol69WDsDr .nav-tabs .nav-link.active {
  color: #4479d9;
  border-bottom: 3px solid #4479d9;
}
.cid-uol69WDsDr H4 {
  text-align: center;
}
.cid-uol69WDsDr H3 {
  text-align: left;
}
.cid-uvaxrH6cGN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #96b780;
}
.cid-uvaxrH6cGN .google-map1 {
  height: 30rem;
  position: relative;
}
.cid-uvaxrH6cGN .google-map1 iframe {
  height: 100%;
  width: 100%;
}
.cid-uvaxrH6cGN .google-map1 [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-uvaxrH6cGN .google-map1[data-state] {
  background: #e9e5dc;
}
.cid-uvaxrH6cGN .google-map1[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uvaxrH6cGN :root {
  --building-color: #FF9800;
  --house-color: #0288D1;
  --shop-color: #7B1FA2;
  --warehouse-color: #558B2F;
}
.cid-uvaxrH6cGN #map {
  height: 30rem;
  width: 100%;
}
.cid-uvaxrH6cGN .property {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #f0be1a;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 30px;
  justify-content: center;
  padding: 4px;
  position: relative;
  transition: all 0.3s ease-out;
  width: 30px;
}
.cid-uvaxrH6cGN .property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}
.cid-uvaxrH6cGN .property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #f0950e;
}
.cid-uvaxrH6cGN .property .icon svg {
  height: 20px;
  width: auto;
}
.cid-uvaxrH6cGN .property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}
.cid-uvaxrH6cGN .property .address {
  color: #9E9E9E;
  font-size: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.cid-uvaxrH6cGN .property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cid-uvaxrH6cGN .property .features > div {
  align-items: center;
  background: #F5F5F5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}
.cid-uvaxrH6cGN .property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 80px;
  padding: 8px 15px;
  width: auto;
}
.cid-uvaxrH6cGN .property.highlight::after {
  border-top: 9px solid #FFFFFF;
}
.cid-uvaxrH6cGN .property.highlight .details {
  display: flex;
}
.cid-uvaxrH6cGN .property.highlight .icon svg {
  width: 50px;
  height: 50px;
}
.cid-uvaxrH6cGN .property .bed {
  color: #FFA000;
}
.cid-uvaxrH6cGN .property .bath {
  color: #03A9F4;
}
.cid-uvaxrH6cGN .property .size {
  color: #388E3C;
}
.cid-uvaxrH6cGN .property.highlight:has(.fa-house) .icon {
  color: var(--house-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-house) {
  background-color: var(--house-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-house)::after {
  border-top: 9px solid var(--house-color);
}
.cid-uvaxrH6cGN .property.highlight:has(.fa-campground) .icon {
  color: var(--building-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-campground) {
  background-color: var(--building-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-campground)::after {
  border-top: 9px solid var(--building-color);
}
.cid-uvaxrH6cGN .property.highlight:has(.fa-warehouse) .icon {
  color: var(--warehouse-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-warehouse) {
  background-color: var(--warehouse-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-warehouse)::after {
  border-top: 9px solid var(--warehouse-color);
}
.cid-uvaxrH6cGN .property.highlight:has(.fa-shop) .icon {
  color: var(--shop-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-shop) {
  background-color: var(--shop-color);
}
.cid-uvaxrH6cGN .property:not(.highlight):has(.fa-shop)::after {
  border-top: 9px solid var(--shop-color);
}
.cid-upqD1eLmNE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-upqD1eLmNE .mbr-fallback-image.disabled {
  display: none;
}
.cid-upqD1eLmNE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-upqD1eLmNE .card-wrapper {
  background: #ffffff;
  border-radius: 8px;
  border: solid #8f928c;
}
@media (max-width: 767px) {
  .cid-upqD1eLmNE .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-upqD1eLmNE .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-upqD1eLmNE .card-wrapper {
    padding: 2rem;
  }
}
.cid-upqD1eLmNE .jw {
  display: flex;
}
@media (max-width: 991px) {
  .cid-upqD1eLmNE .jw {
    margin-bottom: 2rem;
  }
}
.cid-upqD1eLmNE .mbr-iconfont {
  font-size: 2rem;
  color: #232323;
  padding-right: 1.5rem;
}
.cid-upqD1eLmNE .mbr-text,
.cid-upqD1eLmNE .mbr-section-btn {
  color: #000000;
}
.cid-upqD1eLmNE .card-title,
.cid-upqD1eLmNE .card-box {
  text-align: left;
}
.cid-upqD1eLmNE .mbr-section-subtitle {
  text-align: left;
}
.cid-upqD1eLmNE .mbr-section-title {
  text-align: left;
}
.cid-uAbmPLAyvZ {
  background-image: url("../../../assets/images/lavender-3764937.webp");
}
.cid-uAbmPLAyvZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAbmPLAyvZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAbmPLAyvZ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-uAbmPLAyvZ .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffffff;
  transition: all 0.3s;
  color: #ffffff;
}
.cid-uAbmPLAyvZ .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .cid-uAbmPLAyvZ .hidemob {
    display: none !important;
  }
}
.cid-uAbmPLAyvZ .mbr-section-title {
  color: #ffffff;
}
.cid-uAbmPLAyvZ .stroke {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0px 20px 0px 20px;
}
.cid-uAbmPLAyvZ .mbr-text,
.cid-uAbmPLAyvZ .mbr-section-btn,
.cid-uAbmPLAyvZ .social-row {
  color: #ffffff;
}
.cid-uAbmPLAyvZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAbmPLAyvZ .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uAbmPLAyvZ .btn::after {
  content: ">";
}
.cid-uAbm0eunhM .navbar-dropdown {
  position: relative !important;
}
.cid-uAbm0eunhM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAbm0eunhM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uAbm0eunhM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uAbm0eunhM .dropdown-item:hover,
.cid-uAbm0eunhM .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uAbm0eunhM .dropdown-item:hover span {
  color: white;
}
.cid-uAbm0eunhM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uAbm0eunhM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uAbm0eunhM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uAbm0eunhM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uAbm0eunhM .nav-link {
  position: relative;
}
.cid-uAbm0eunhM .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uAbm0eunhM .container {
    flex-wrap: nowrap;
  }
}
.cid-uAbm0eunhM .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uAbm0eunhM .dropdown-menu,
.cid-uAbm0eunhM .navbar.opened {
  background: #353535 !important;
}
.cid-uAbm0eunhM .nav-item:focus,
.cid-uAbm0eunhM .nav-link:focus {
  outline: none;
}
.cid-uAbm0eunhM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAbm0eunhM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAbm0eunhM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAbm0eunhM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAbm0eunhM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAbm0eunhM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAbm0eunhM .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uAbm0eunhM .navbar.opened {
  transition: all 0.3s;
}
.cid-uAbm0eunhM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAbm0eunhM .navbar .navbar-logo img {
  width: auto;
}
.cid-uAbm0eunhM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uAbm0eunhM .navbar.collapsed {
  justify-content: center;
}
.cid-uAbm0eunhM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAbm0eunhM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAbm0eunhM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uAbm0eunhM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAbm0eunhM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAbm0eunhM .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-uAbm0eunhM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAbm0eunhM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAbm0eunhM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uAbm0eunhM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAbm0eunhM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAbm0eunhM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAbm0eunhM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAbm0eunhM .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-uAbm0eunhM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uAbm0eunhM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uAbm0eunhM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAbm0eunhM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uAbm0eunhM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAbm0eunhM .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uAbm0eunhM .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uAbm0eunhM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uAbm0eunhM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uAbm0eunhM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uAbm0eunhM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAbm0eunhM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAbm0eunhM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAbm0eunhM .dropdown-item.active,
.cid-uAbm0eunhM .dropdown-item:active {
  background-color: transparent;
}
.cid-uAbm0eunhM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAbm0eunhM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAbm0eunhM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAbm0eunhM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uAbm0eunhM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uAbm0eunhM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uAbm0eunhM ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAbm0eunhM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uAbm0eunhM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAbm0eunhM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uAbm0eunhM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAbm0eunhM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAbm0eunhM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAbm0eunhM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAbm0eunhM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAbm0eunhM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAbm0eunhM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAbm0eunhM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAbm0eunhM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAbm0eunhM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAbm0eunhM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAbm0eunhM .navbar {
    height: 70px;
  }
  .cid-uAbm0eunhM .navbar.opened {
    height: auto;
  }
  .cid-uAbm0eunhM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uArC0ZbtaH {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/campingfrankrijk-1400x582.webp");
}
.cid-uArC0ZbtaH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC0ZbtaH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC0ZbtaH .mbr-text,
.cid-uArC0ZbtaH .mbr-section-btn {
  color: #232323;
}
.cid-uArC0ZbtaH .card-title,
.cid-uArC0ZbtaH .card-box {
  color: #ffffff;
}
.cid-uArC0ZbtaH .mbr-text,
.cid-uArC0ZbtaH .link-wrap {
  color: #ffffff;
}
.cid-uArC0Zs870 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uArC0Zs870 li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uArC0Zs870 li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-uArC0ZIYqM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uArC0ZIYqM .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-uArC0ZIYqM #first-part-mobile {
    display: none;
  }
  .cid-uArC0ZIYqM #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uArC0ZIYqM #first-part-desktop {
    display: none;
  }
}
.cid-uArC0ZIYqM button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-uArC0ZIYqM .mbr-section-title {
  text-align: left;
}
.cid-uArC104C8G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uArC104C8G img,
.cid-uArC104C8G .item-img {
  width: 100%;
}
.cid-uArC104C8G .item:focus,
.cid-uArC104C8G span:focus {
  outline: none;
}
.cid-uArC104C8G .item {
  margin-bottom: 2rem;
}
.cid-uArC104C8G .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uArC104C8G .item-wrapper .item-content {
  padding: 0.2rem 1rem;
}
.cid-uArC104C8G .mbr-section-title {
  color: #232323;
}
.cid-uArC104C8G .item-title {
  text-align: center;
  color: #232323;
}
.cid-uArC104C8G .item-title:hover {
  text-decoration: underline;
  color: #0059ff;
}
.cid-uArC104C8G .item-subtitle {
  text-align: center;
}
.cid-uArC104C8G .mbr-text {
  text-align: center;
}
.cid-uArC10uVY9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uArC10uVY9 .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-uArC10uVY9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC10uVY9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC10uVY9 .item {
  padding-bottom: 0.6rem;
}
.cid-uArC10uVY9 .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uArC10uVY9 .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-uArC10uVY9 .image-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-uArC10uVY9 .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uArC10uVY9 .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uArC10uVY9 .gallery-image:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uArC10uVY9 .carousel-control,
.cid-uArC10uVY9 .close {
  background: #1b1b1b;
}
.cid-uArC10uVY9 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uArC10uVY9 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uArC10uVY9 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uArC10uVY9 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uArC10uVY9 .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-uArC10uVY9 .close::before {
  content: '\e91a';
}
.cid-uArC10uVY9 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uArC10uVY9 .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-uArC10uVY9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uArC10uVY9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uArC10uVY9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uArC10uVY9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uArC10uVY9 .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-uArC10uVY9 .carousel-indicators li.active,
.cid-uArC10uVY9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uArC10uVY9 .carousel-indicators li::after,
.cid-uArC10uVY9 .carousel-indicators li::before {
  content: none;
}
.cid-uArC10uVY9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uArC10uVY9 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uArC10uVY9 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uArC10uVY9 .carousel-indicators {
    display: none;
  }
}
.cid-uArC10uVY9 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uArC10uVY9 .carousel-inner > .active {
  display: block;
}
.cid-uArC10uVY9 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uArC10uVY9 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uArC10uVY9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uArC10uVY9 .carousel-control,
  .cid-uArC10uVY9 .carousel-indicators,
  .cid-uArC10uVY9 .modal .close {
    position: fixed;
  }
}
.cid-uArC10uVY9 .carousel-indicators .active,
.cid-uArC10uVY9 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uArC10uVY9 .carousel-indicators .active {
  background: #fff;
}
.cid-uArC10uVY9 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uArC10uVY9 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uArC10uVY9 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uArC10uVY9 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uArC10uVY9 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uArC10uVY9 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uArC10uVY9 .carousel {
  width: 100%;
}
.cid-uArC10uVY9 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uArC10uVY9 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uArC10uVY9 .modal.fade .modal-dialog,
.cid-uArC10uVY9 .modal.in .modal-dialog {
  transform: none;
}
.cid-uArC10uVY9 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uArC10uVY9 .display-5 {
  text-align: center;
  color: #ffffff;
}
.cid-uArC10uVY9 .mbr-text {
  text-align: left;
}
.cid-uArC10uVY9 H2 {
  text-align: left;
}
.cid-uArC10VnI3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uArC10VnI3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uArC10VnI3 img {
  width: 100%;
}
.cid-uArC10VnI3 picture {
  height: 100%;
  object-fit: cover;
}
.cid-uArC10VnI3 picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uArC10VnI3 picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uArC10VnI3 .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-uArC10VnI3 .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-uArC10VnI3 .mbr-section-title {
  color: #232323;
}
.cid-uArC10VnI3 .mbr-text {
  color: #000000;
}
.cid-uArC10VnI3 .mbr-description {
  color: #000000;
}
.cid-uArC11fIQZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uArC11fIQZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uArC11fIQZ img {
  width: 100%;
}
.cid-uArC11fIQZ picture {
  height: 100%;
  object-fit: cover;
}
.cid-uArC11fIQZ picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uArC11fIQZ picture img {
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uArC11fIQZ .text-wrapper {
    padding: 2rem 0 2rem 2rem;
  }
  .cid-uArC11fIQZ .flex-row-reverse .text-wrapper {
    padding: 2rem 2rem 2rem 0;
  }
}
.cid-uArC11fIQZ .mbr-section-title {
  color: #232323;
}
.cid-uArC11fIQZ .mbr-text {
  color: #000000;
}
.cid-uArC11fIQZ .mbr-description {
  color: #000000;
}
.cid-uArC11CQSF {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uArC11CQSF .mbr-section-subtitle {
  text-align: center;
}
.cid-uArC11CQSF .mbr-text {
  text-align: center;
}
.cid-uArC11CQSF .mbr-section-title {
  text-align: center;
}
.cid-uArC11PsVN {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uArC11PsVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC11PsVN .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-uArC11PsVN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uArC11PsVN .row {
  flex-direction: row-reverse;
}
.cid-uArC11PsVN img {
  width: 100%;
}
.cid-uArC124zgL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2.webp");
}
.cid-uArC124zgL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC124zgL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC124zgL .mbr-text,
.cid-uArC124zgL .mbr-section-btn {
  color: #232323;
}
.cid-uArC124zgL .card-title,
.cid-uArC124zgL .card-box {
  color: #ffffff;
}
.cid-uArC124zgL .mbr-text,
.cid-uArC124zgL .link-wrap {
  color: #ffffff;
}
.cid-uArC124zgL .form-control {
  font-size: 1.2rem;
}
.cid-uArC12jl3b {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #baae9d;
}
.cid-uArC12jl3b #modalSheet {
  top: 70px !important;
}
.cid-uArC12jl3b .crumbs {
  font-family: 'Raleway', sans-serif;
  color: #353535;
  font-size: 0.8rem;
  line-height: 1;
}
.cid-uArC12jl3b img,
.cid-uArC12jl3b .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uArC12jl3b .item:focus,
.cid-uArC12jl3b span:focus {
  outline: none;
}
.cid-uArC12jl3b .item {
  margin-bottom: 2rem;
}
.cid-uArC12jl3b .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uArC12jl3b .item-wrapper .item-content {
    padding: 1rem 2rem 0;
  }
  .cid-uArC12jl3b .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uArC12jl3b .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uArC12jl3b .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uArC12jl3b .mbr-section-btn {
  margin-top: auto !important;
  position: relative;
}
.cid-uArC12jl3b .mbr-section-title {
  color: #ffffff;
}
.cid-uArC12jl3b .mbr-text,
.cid-uArC12jl3b .mbr-section-btn {
  text-align: left;
}
.cid-uArC12jl3b .item-title {
  text-align: left;
  color: #353535;
}
.cid-uArC12jl3b .item-subtitle {
  text-align: left;
  color: #e6c63b;
}
.cid-uArC12jl3b .item-img {
  position: relative;
  justify-content: center;
}
.cid-uArC12jl3b .item-img img {
  width: 100%;
  object-fit: cover;
}
.cid-uArC12jl3b .item-img .img-description {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uArC12jl3b .item-img .img-description p {
  margin-bottom: 0;
}
.cid-uArC12jl3b .item-img .img-description:hover {
  zoom: 1.2;
}
.cid-uArC12jl3b .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uArC12jl3b .btn::after {
  content: ">";
}
.cid-uArC12jl3b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uArC146rhG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uArC146rhG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC146rhG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC146rhG .card-wrapper {
  background: none;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-uArC146rhG .card-wrapper {
    padding: 0.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uArC146rhG .card-wrapper {
    padding: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-uArC146rhG .card-wrapper {
    padding: 1rem;
  }
}
.cid-uArC146rhG .mbr-text,
.cid-uArC146rhG .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uArC146rhG .card-title,
.cid-uArC146rhG .card-box {
  text-align: center;
  color: #232323;
}
.cid-uArC146rhG .svgmap path {
  transition: .6s fill;
  fill: #90a58a;
  stroke: #f6f7f0;
  stroke-width: 0.8;
}
.cid-uArC146rhG .svgmap path:hover {
  fill: #ED6B1C;
}
.cid-uArC146rhG .svg-container {
  width: 100%;
  min-height: 300px;
}
.cid-uArC14r23L {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uArC14r23L .row {
  margin-left: -1rem;
  margin-right: -1rem;
  justify-content: center;
}
.cid-uArC14r23L .row > [class*="col"] {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uArC14r23L .mbr-text {
  text-align: center;
}
.cid-uArC14r23L .ol-text {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uArC14r23L .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uArC14r23L .ol-text {
    padding: 0rem 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uArC14r23L .ol-text {
    padding: 0rem 8rem;
  }
}
.cid-uArC14r23L ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uArC14r23L ol li {
  margin-bottom: 1rem;
}
.cid-uArC14r23L ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uArC14r23L ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uArC14GTzY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uArC14GTzY .mbr-item-subtitle {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.cid-uArC14GTzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC14GTzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC14GTzY .item {
  padding-bottom: 0.6rem;
}
.cid-uArC14GTzY .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uArC14GTzY .image-wrapper img {
  height: 120px;
  object-fit: cover;
}
.cid-uArC14GTzY .image-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-uArC14GTzY .image-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uArC14GTzY .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uArC14GTzY .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uArC14GTzY .carousel-control,
.cid-uArC14GTzY .close {
  background: #1b1b1b;
}
.cid-uArC14GTzY .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uArC14GTzY .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uArC14GTzY .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uArC14GTzY .carousel-control-next span {
  margin-left: 5px;
}
.cid-uArC14GTzY .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-uArC14GTzY .close::before {
  content: '\e91a';
}
.cid-uArC14GTzY .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uArC14GTzY .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-uArC14GTzY .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uArC14GTzY .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uArC14GTzY .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uArC14GTzY .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uArC14GTzY .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-uArC14GTzY .carousel-indicators li.active,
.cid-uArC14GTzY .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uArC14GTzY .carousel-indicators li::after,
.cid-uArC14GTzY .carousel-indicators li::before {
  content: none;
}
.cid-uArC14GTzY .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uArC14GTzY .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uArC14GTzY .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uArC14GTzY .carousel-indicators {
    display: none;
  }
}
.cid-uArC14GTzY .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uArC14GTzY .carousel-inner > .active {
  display: block;
}
.cid-uArC14GTzY .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uArC14GTzY .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uArC14GTzY .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uArC14GTzY .carousel-control,
  .cid-uArC14GTzY .carousel-indicators,
  .cid-uArC14GTzY .modal .close {
    position: fixed;
  }
}
.cid-uArC14GTzY .carousel-indicators .active,
.cid-uArC14GTzY .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uArC14GTzY .carousel-indicators .active {
  background: #fff;
}
.cid-uArC14GTzY .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uArC14GTzY .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uArC14GTzY .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uArC14GTzY .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uArC14GTzY .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uArC14GTzY .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uArC14GTzY .carousel {
  width: 100%;
}
.cid-uArC14GTzY .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uArC14GTzY .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uArC14GTzY .modal.fade .modal-dialog,
.cid-uArC14GTzY .modal.in .modal-dialog {
  transform: none;
}
.cid-uArC14GTzY .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uArC14GTzY H3 {
  text-align: center;
  color: #ffffff;
}
.cid-uArC159gLC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-uArC159gLC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC159gLC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC159gLC .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uArC159gLC .currentcost {
  color: #232323;
}
.cid-uArC159gLC .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-uArC159gLC .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uArC159gLC .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uArC159gLC .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-uArC159gLC .text-box {
    padding: 4rem;
  }
  .cid-uArC159gLC .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-uArC159gLC .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uArC159gLC .text-box {
    padding: 1rem;
  }
}
.cid-uArC159gLC .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uArC159gLC .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uArC159gLC .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uArC159gLC .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-uArC159gLC .img-description p {
  margin-bottom: 0;
}
.cid-uArC159gLC H5 {
  color: #414a54;
}
.cid-uArC159gLC .mbr-section-subtitle {
  text-align: left;
}
.cid-uArC159gLC H2 {
  color: #353535;
}
.cid-uArC159gLC .mbr-text,
.cid-uArC159gLC .cost,
.cid-uArC159gLC .mbr-section-btn {
  color: #353535;
}
.cid-uArC159gLC .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-uArC159gLC .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-uArC159gLC .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uArC159gLC .btn::after {
  content: ">";
}
.cid-uArC159gLC picture {
  height: 100%;
  object-fit: cover;
}
.cid-uArC159gLC picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uArC159gLC picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uArC16iFlS {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uArC16iFlS .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uArC16iFlS .counter-container ol li {
  margin-bottom: 0rem;
  line-height: 50px;
}
.cid-uArC16iFlS .counter-container ol li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-uArC16iFlS .counter-container ol li:before {
  position: absolute;
  left: -40px;
  margin-top: 5px;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #000000;
  background: #e9e1d6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uArC16iFlS .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uArC16iFlS .text-primary {
  font-size: 1rem;
}
.cid-uArC16iFlS .text-primary:hover {
  text-decoration: underline;
}
.cid-uArC16CtPV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-uArC16CtPV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC16CtPV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC16CtPV .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uArC16CtPV .currentcost {
  color: #232323;
}
.cid-uArC16CtPV .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-uArC16CtPV .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uArC16CtPV .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uArC16CtPV .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-uArC16CtPV .text-box {
    padding: 4rem;
  }
  .cid-uArC16CtPV .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-uArC16CtPV .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uArC16CtPV .text-box {
    padding: 1rem;
  }
}
.cid-uArC16CtPV .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uArC16CtPV .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uArC16CtPV .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uArC16CtPV .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-uArC16CtPV .img-description p {
  margin-bottom: 0;
}
.cid-uArC16CtPV H5 {
  color: #414a54;
}
.cid-uArC16CtPV .mbr-section-subtitle {
  text-align: left;
}
.cid-uArC16CtPV H2 {
  color: #353535;
}
.cid-uArC16CtPV .mbr-text,
.cid-uArC16CtPV .cost,
.cid-uArC16CtPV .mbr-section-btn {
  color: #353535;
}
.cid-uArC16CtPV .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-uArC16CtPV .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-uArC16CtPV .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uArC16CtPV .btn::after {
  content: ">";
}
.cid-uArC16CtPV picture {
  height: 100%;
  object-fit: cover;
}
.cid-uArC16CtPV picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uArC16CtPV picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uArC16YlYA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uArC16YlYA .counter-container {
  zoom: 0.9;
  -moz-transform: scale(0.9);
}
.cid-uArC16YlYA .coltitle {
  text-align: left;
}
.cid-uArC16YlYA .mbr-section-title {
  color: #353535;
  text-align: center;
  margin-bottom: 1rem;
  zoom: 1.1;
  -moz-transform: scale(1.1);
}
.cid-uArC16YlYA .col {
  margin-bottom: 4rem;
}
.cid-uArC16YlYA .mbr-text DIV {
  text-align: left;
}
.cid-uArC16YlYA .mbr-text {
  color: #353535;
}
.cid-uArC16YlYA .text-primary:hover {
  text-decoration: underline;
}
.cid-uArC17keTu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e9e1d6;
}
.cid-uArC17keTu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC17keTu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC17keTu .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uArC17keTu .currentcost {
  color: #232323;
}
.cid-uArC17keTu .card-wrapper {
  border-radius: 4px;
  background: #e9e1d6;
}
.cid-uArC17keTu .card-wrapper .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uArC17keTu .col-12 {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uArC17keTu .container-fluid {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (min-width: 992px) {
  .cid-uArC17keTu .text-box {
    padding: 4rem;
  }
  .cid-uArC17keTu .img-description {
    zoom: 1.3;
    -moz-transform: scale(1.3);
  }
}
@media (max-width: 991px) {
  .cid-uArC17keTu .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uArC17keTu .text-box {
    padding: 1rem;
  }
}
.cid-uArC17keTu .image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: all .3s ease;
}
.cid-uArC17keTu .image-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uArC17keTu .image-wrapper:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uArC17keTu .img-description {
  position: absolute;
  top: 10px;
  right: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
  zoom: 1.3;
  -moz-transform: scale(1.3);
  -moz-transform-origin: 0 0;
}
.cid-uArC17keTu .img-description p {
  margin-bottom: 0;
}
.cid-uArC17keTu H5 {
  color: #414a54;
}
.cid-uArC17keTu .mbr-section-subtitle {
  text-align: left;
}
.cid-uArC17keTu H2 {
  color: #353535;
}
.cid-uArC17keTu .mbr-text,
.cid-uArC17keTu .cost,
.cid-uArC17keTu .mbr-section-btn {
  color: #353535;
}
.cid-uArC17keTu .crumbs {
  background-color: #a7a39d;
  color: white;
  padding: 5px;
}
.cid-uArC17keTu .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-uArC17keTu .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uArC17keTu .btn::after {
  content: ">";
}
.cid-uArC17keTu picture {
  height: 100%;
  object-fit: cover;
}
.cid-uArC17keTu picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uArC17keTu picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uArC17QiZo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uArC17QiZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArC17QiZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArC17QiZo .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uArC17QiZo .icon-box {
  background: #efefef;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uArC17QiZo .mbr-iconfont {
  font-size: 2rem;
  color: #707070;
}
@media (max-width: 991px) {
  .cid-uArC17QiZo .card {
    margin-bottom: 2rem;
  }
  .cid-uArC17QiZo .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uArC17QiZo .icon-title {
  color: #353535;
}
.cid-uArC17QiZo .card-title,
.cid-uArC17QiZo .card-box {
  color: #353535;
}
.cid-uArC17QiZo .mbr-text,
.cid-uArC17QiZo .mbr-section-btn {
  color: #232323;
}
.cid-uArC17QiZo .mbr-section-btn:hover .mbr-iconfont-btn {
  transform: translate(0.25em, 0);
}
.cid-uArC17QiZo .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uArC17QiZo .btn::after {
  content: ">";
}
.cid-uArC18sgZA .navbar-dropdown {
  position: relative !important;
}
.cid-uArC18sgZA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uArC18sgZA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uArC18sgZA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uArC18sgZA .dropdown-item:hover,
.cid-uArC18sgZA .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uArC18sgZA .dropdown-item:hover span {
  color: white;
}
.cid-uArC18sgZA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uArC18sgZA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uArC18sgZA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uArC18sgZA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uArC18sgZA .nav-link {
  position: relative;
}
.cid-uArC18sgZA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uArC18sgZA .container {
    flex-wrap: nowrap;
  }
}
.cid-uArC18sgZA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uArC18sgZA .dropdown-menu,
.cid-uArC18sgZA .navbar.opened {
  background: #353535 !important;
}
.cid-uArC18sgZA .nav-item:focus,
.cid-uArC18sgZA .nav-link:focus {
  outline: none;
}
.cid-uArC18sgZA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uArC18sgZA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uArC18sgZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uArC18sgZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uArC18sgZA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uArC18sgZA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uArC18sgZA .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uArC18sgZA .navbar.opened {
  transition: all 0.3s;
}
.cid-uArC18sgZA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uArC18sgZA .navbar .navbar-logo img {
  width: auto;
}
.cid-uArC18sgZA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uArC18sgZA .navbar.collapsed {
  justify-content: center;
}
.cid-uArC18sgZA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uArC18sgZA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uArC18sgZA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uArC18sgZA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uArC18sgZA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uArC18sgZA .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-uArC18sgZA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uArC18sgZA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uArC18sgZA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uArC18sgZA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uArC18sgZA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uArC18sgZA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uArC18sgZA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uArC18sgZA .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-uArC18sgZA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uArC18sgZA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uArC18sgZA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uArC18sgZA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uArC18sgZA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uArC18sgZA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uArC18sgZA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uArC18sgZA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uArC18sgZA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uArC18sgZA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uArC18sgZA .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uArC18sgZA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uArC18sgZA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uArC18sgZA .dropdown-item.active,
.cid-uArC18sgZA .dropdown-item:active {
  background-color: transparent;
}
.cid-uArC18sgZA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uArC18sgZA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uArC18sgZA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uArC18sgZA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uArC18sgZA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uArC18sgZA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uArC18sgZA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uArC18sgZA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uArC18sgZA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uArC18sgZA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uArC18sgZA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uArC18sgZA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uArC18sgZA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uArC18sgZA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uArC18sgZA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uArC18sgZA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uArC18sgZA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uArC18sgZA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uArC18sgZA .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uArC18sgZA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uArC18sgZA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uArC18sgZA .navbar {
    height: 70px;
  }
  .cid-uArC18sgZA .navbar.opened {
    height: auto;
  }
  .cid-uArC18sgZA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uArC19cKVh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uArC19cKVh li {
  margin-bottom: 0.5rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uArC19cKVh li:before {
  position: absolute;
  top: -6px;
  left: -30px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #e37b14;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-top: 5px;
  background: none;
  border: 1px solid #e37b14;
  color: #e37b14;
  content: "✓";
}
.cid-ugNwkXTvD2 .navbar-dropdown {
  position: relative !important;
}
.cid-ugNwkXTvD2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ugNwkXTvD2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ugNwkXTvD2 .dropdown-item:hover,
.cid-ugNwkXTvD2 .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-ugNwkXTvD2 .dropdown-item:hover span {
  color: white;
}
.cid-ugNwkXTvD2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ugNwkXTvD2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ugNwkXTvD2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ugNwkXTvD2 .nav-link {
  position: relative;
}
.cid-ugNwkXTvD2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ugNwkXTvD2 .container {
    flex-wrap: nowrap;
  }
}
.cid-ugNwkXTvD2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ugNwkXTvD2 .dropdown-menu,
.cid-ugNwkXTvD2 .navbar.opened {
  background: #353535 !important;
}
.cid-ugNwkXTvD2 .nav-item:focus,
.cid-ugNwkXTvD2 .nav-link:focus {
  outline: none;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ugNwkXTvD2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ugNwkXTvD2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ugNwkXTvD2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ugNwkXTvD2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-ugNwkXTvD2 .navbar.opened {
  transition: all 0.3s;
}
.cid-ugNwkXTvD2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ugNwkXTvD2 .navbar .navbar-logo img {
  width: auto;
}
.cid-ugNwkXTvD2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ugNwkXTvD2 .navbar.collapsed {
  justify-content: center;
}
.cid-ugNwkXTvD2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ugNwkXTvD2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ugNwkXTvD2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ugNwkXTvD2 .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-ugNwkXTvD2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ugNwkXTvD2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ugNwkXTvD2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ugNwkXTvD2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ugNwkXTvD2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ugNwkXTvD2 .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-ugNwkXTvD2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ugNwkXTvD2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ugNwkXTvD2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ugNwkXTvD2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ugNwkXTvD2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ugNwkXTvD2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ugNwkXTvD2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ugNwkXTvD2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ugNwkXTvD2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ugNwkXTvD2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ugNwkXTvD2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ugNwkXTvD2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ugNwkXTvD2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ugNwkXTvD2 .dropdown-item.active,
.cid-ugNwkXTvD2 .dropdown-item:active {
  background-color: transparent;
}
.cid-ugNwkXTvD2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ugNwkXTvD2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ugNwkXTvD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-ugNwkXTvD2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ugNwkXTvD2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ugNwkXTvD2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ugNwkXTvD2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ugNwkXTvD2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ugNwkXTvD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ugNwkXTvD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ugNwkXTvD2 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ugNwkXTvD2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ugNwkXTvD2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ugNwkXTvD2 .navbar {
    height: 70px;
  }
  .cid-ugNwkXTvD2 .navbar.opened {
    height: auto;
  }
  .cid-ugNwkXTvD2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBE9VSMoJD {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uBE9VSMoJD {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uBE9VSMoJD .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uBE9VSMoJD picture {
  height: 100%;
  object-fit: cover;
}
.cid-uBE9VSMoJD picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uBE9VSMoJD picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uBE9VSMoJD .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBE9VSMoJD .mbr-section-title {
  color: #ffffff;
}
.cid-uBE9VSMoJD .mbr-text,
.cid-uBE9VSMoJD .mbr-section-btn {
  color: #ffffff;
}
.cid-uBF6HKB6mq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uBF6HKB6mq .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .cid-uBF6HKB6mq #first-part-mobile {
    display: none;
  }
  .cid-uBF6HKB6mq #first-part-desktop p {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uBF6HKB6mq #first-part-desktop {
    display: none;
  }
}
.cid-uBF6HKB6mq button.text-primary {
  text-decoration: underline;
  padding: 0;
}
.cid-uBF6HKB6mq .mbr-section-title {
  text-align: left;
}
.cid-uBEbhJy5QU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBEbhJy5QU img,
.cid-uBEbhJy5QU .item-img {
  width: 100%;
  min-width: 316px;
  max-width: 316px;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uBEbhJy5QU .item:focus,
.cid-uBEbhJy5QU span:focus {
  outline: none;
}
.cid-uBEbhJy5QU .item-wrapper {
  position: relative;
}
.cid-uBEbhJy5QU .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
.cid-uBEbhJy5QU .slide-content .item-content {
  border: 2px solid #f0f0f0;
  border-top: unset;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media (min-width: 992px) {
  .cid-uBEbhJy5QU .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
@media (max-width: 991px) {
  .cid-uBEbhJy5QU .slide-content .item-content {
    padding: 1rem;
    zoom: 0.75;
  }
}
.cid-uBEbhJy5QU .text1 {
  zoom: 1.25;
}
.cid-uBEbhJy5QU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uBEbhJy5QU .mbr-section-title {
  color: #232323;
  text-align: left;
}
.cid-uBEbhJy5QU .mbr-text,
.cid-uBEbhJy5QU .mbr-section-btn {
  text-align: left;
}
.cid-uBEbhJy5QU .item-title {
  text-align: left;
}
.cid-uBEbhJy5QU .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uBEbhJy5QU .bullet {
  padding-left: 1.5em;
  font-size: 1rem;
  overflow: hidden;
  background: url(https://www.go-france.nl/themanew/svg/black_check.svg) no-repeat left top 2px;
  background-size: 1em 1em;
}
.cid-uBEbhJy5QU .btn-black-outline {
  border-color: #dee2e6;
  color: #414a54;
}
.cid-uBEbhJy5QU .btn-black-outline:hover {
  border-color: #575757 !important;
}
.cid-uBEbhJy5QU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 316px;
  max-width: 316px;
}
@media (max-width: 768px) {
  .cid-uBEbhJy5QU .embla__slide {
    min-width: 90%px;
    max-width: initial;
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
}
.cid-uBEbhJy5QU .embla__button--next,
.cid-uBEbhJy5QU .embla__button--prev {
  display: flex;
}
.cid-uBEbhJy5QU .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-uBEbhJy5QU .embla__button {
    display: none;
  }
}
.cid-uBEbhJy5QU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uBEbhJy5QU .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uBEbhJy5QU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBEbhJy5QU .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBEbhJy5QU .embla__button {
    topx: auto;
  }
}
.cid-uBEbhJy5QU .embla {
  position: relative;
  width: 100%;
}
.cid-uBEbhJy5QU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uBEbhJy5QU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uBEbhJy5QU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uBEbhJy5QU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uBEbhJy5QU .embla__container {
    margin-left: 0rem;
    margin-right: 0rem;
  }
  .cid-uBEbhJy5QU .embla__container .embla__slide:first-child {
    margin-left: 0rem !important;
  }
  .cid-uBEbhJy5QU .embla__container .embla__slide:last-child {
    margin-right: 0rem !important;
  }
}
.cid-uBEbhJy5QU .mbr-section-more .btn {
  padding: 0;
  margin: 0;
}
.cid-uBEbhJy5QU .mbr-section-more .btn:hover {
  text-decoration: underline;
}
.cid-uBEbhJy5QU .mbr-section-more .btn::after {
  content: ">";
}
.cid-uBEbhJy5QU .mbr-section-more .btn:hover::after {
  transform: translate(0.25em, 0);
}
.cid-uBEbhJy5QU H3 {
  color: #232323;
}
.cid-uBEbhJy5QU P {
  color: #000000;
}
.cid-uBGERPgUMi {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBGJtr2WqU {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBGKnf09P6 {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uCrSdhoQ4p .navbar-dropdown {
  position: relative !important;
}
.cid-uCrSdhoQ4p .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCrSdhoQ4p .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCrSdhoQ4p .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCrSdhoQ4p .dropdown-item:hover,
.cid-uCrSdhoQ4p .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uCrSdhoQ4p .dropdown-item:hover span {
  color: white;
}
.cid-uCrSdhoQ4p .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCrSdhoQ4p .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCrSdhoQ4p .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCrSdhoQ4p .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCrSdhoQ4p .nav-link {
  position: relative;
}
.cid-uCrSdhoQ4p .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCrSdhoQ4p .container {
    flex-wrap: nowrap;
  }
}
.cid-uCrSdhoQ4p .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCrSdhoQ4p .dropdown-menu,
.cid-uCrSdhoQ4p .navbar.opened {
  background: #353535 !important;
}
.cid-uCrSdhoQ4p .nav-item:focus,
.cid-uCrSdhoQ4p .nav-link:focus {
  outline: none;
}
.cid-uCrSdhoQ4p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCrSdhoQ4p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCrSdhoQ4p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCrSdhoQ4p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCrSdhoQ4p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCrSdhoQ4p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCrSdhoQ4p .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uCrSdhoQ4p .navbar.opened {
  transition: all 0.3s;
}
.cid-uCrSdhoQ4p .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCrSdhoQ4p .navbar .navbar-logo img {
  width: auto;
}
.cid-uCrSdhoQ4p .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCrSdhoQ4p .navbar.collapsed {
  justify-content: center;
}
.cid-uCrSdhoQ4p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCrSdhoQ4p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCrSdhoQ4p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uCrSdhoQ4p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCrSdhoQ4p .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCrSdhoQ4p .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-uCrSdhoQ4p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCrSdhoQ4p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCrSdhoQ4p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCrSdhoQ4p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCrSdhoQ4p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCrSdhoQ4p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCrSdhoQ4p .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCrSdhoQ4p .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-uCrSdhoQ4p .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCrSdhoQ4p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCrSdhoQ4p .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCrSdhoQ4p .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCrSdhoQ4p .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCrSdhoQ4p .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCrSdhoQ4p .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCrSdhoQ4p .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCrSdhoQ4p .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCrSdhoQ4p .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCrSdhoQ4p .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCrSdhoQ4p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCrSdhoQ4p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCrSdhoQ4p .dropdown-item.active,
.cid-uCrSdhoQ4p .dropdown-item:active {
  background-color: transparent;
}
.cid-uCrSdhoQ4p .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCrSdhoQ4p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCrSdhoQ4p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCrSdhoQ4p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uCrSdhoQ4p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCrSdhoQ4p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCrSdhoQ4p ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCrSdhoQ4p .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCrSdhoQ4p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCrSdhoQ4p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCrSdhoQ4p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCrSdhoQ4p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCrSdhoQ4p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCrSdhoQ4p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCrSdhoQ4p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCrSdhoQ4p nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCrSdhoQ4p nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCrSdhoQ4p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCrSdhoQ4p .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uCrSdhoQ4p a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCrSdhoQ4p .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCrSdhoQ4p .navbar {
    height: 70px;
  }
  .cid-uCrSdhoQ4p .navbar.opened {
    height: auto;
  }
  .cid-uCrSdhoQ4p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCrSdhJXrq {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uCrSdhJXrq {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uCrSdhJXrq .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uCrSdhJXrq picture {
  height: 100%;
  object-fit: cover;
}
.cid-uCrSdhJXrq picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uCrSdhJXrq picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uCrSdhJXrq .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCrSdhJXrq .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCrSdhJXrq .mbr-text,
.cid-uCrSdhJXrq .mbr-section-btn {
  color: #ffffff;
}
.cid-uCs4zY5tPG {
  background-image: url("../../../assets/images/mbr-8.webp");
}
.cid-uCs4zY5tPG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCs4zY5tPG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCs4zY5tPG .mbr-text,
.cid-uCs4zY5tPG .mbr-section-btn {
  text-align: center;
}
.cid-uCs4zY5tPG .mbr-section-title {
  text-align: center;
}
.cid-uCubUt07r4 .navbar-dropdown {
  position: relative !important;
}
.cid-uCubUt07r4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCubUt07r4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCubUt07r4 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCubUt07r4 .dropdown-item:hover,
.cid-uCubUt07r4 .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uCubUt07r4 .dropdown-item:hover span {
  color: white;
}
.cid-uCubUt07r4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCubUt07r4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCubUt07r4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCubUt07r4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCubUt07r4 .nav-link {
  position: relative;
}
.cid-uCubUt07r4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCubUt07r4 .container {
    flex-wrap: nowrap;
  }
}
.cid-uCubUt07r4 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCubUt07r4 .dropdown-menu,
.cid-uCubUt07r4 .navbar.opened {
  background: #353535 !important;
}
.cid-uCubUt07r4 .nav-item:focus,
.cid-uCubUt07r4 .nav-link:focus {
  outline: none;
}
.cid-uCubUt07r4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCubUt07r4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCubUt07r4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCubUt07r4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCubUt07r4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCubUt07r4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCubUt07r4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uCubUt07r4 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCubUt07r4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCubUt07r4 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCubUt07r4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCubUt07r4 .navbar.collapsed {
  justify-content: center;
}
.cid-uCubUt07r4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCubUt07r4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCubUt07r4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uCubUt07r4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCubUt07r4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCubUt07r4 .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-uCubUt07r4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCubUt07r4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCubUt07r4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCubUt07r4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCubUt07r4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCubUt07r4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCubUt07r4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCubUt07r4 .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-uCubUt07r4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCubUt07r4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCubUt07r4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCubUt07r4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCubUt07r4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCubUt07r4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCubUt07r4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCubUt07r4 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCubUt07r4 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCubUt07r4 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCubUt07r4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCubUt07r4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCubUt07r4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCubUt07r4 .dropdown-item.active,
.cid-uCubUt07r4 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCubUt07r4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCubUt07r4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCubUt07r4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCubUt07r4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uCubUt07r4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCubUt07r4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCubUt07r4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCubUt07r4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCubUt07r4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCubUt07r4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCubUt07r4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCubUt07r4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCubUt07r4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCubUt07r4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCubUt07r4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCubUt07r4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCubUt07r4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCubUt07r4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCubUt07r4 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uCubUt07r4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCubUt07r4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCubUt07r4 .navbar {
    height: 70px;
  }
  .cid-uCubUt07r4 .navbar.opened {
    height: auto;
  }
  .cid-uCubUt07r4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCubUtudvR {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uCubUtudvR {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uCubUtudvR .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uCubUtudvR picture {
  height: 100%;
  object-fit: cover;
}
.cid-uCubUtudvR picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uCubUtudvR picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uCubUtudvR .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCubUtudvR .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCubUtudvR .mbr-text,
.cid-uCubUtudvR .mbr-section-btn {
  color: #ffffff;
}
.cid-uCubUtKHcj {
  background-image: url("../../../assets/images/mbr-8.webp");
}
.cid-uCubUtKHcj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCubUtKHcj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCubUtKHcj .mbr-text,
.cid-uCubUtKHcj .mbr-section-btn {
  text-align: center;
}
.cid-uCubUtKHcj .mbr-section-title {
  text-align: center;
}
.cid-uCucPa02Ur .navbar-dropdown {
  position: relative !important;
}
.cid-uCucPa02Ur .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCucPa02Ur .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCucPa02Ur .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCucPa02Ur .dropdown-item:hover,
.cid-uCucPa02Ur .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uCucPa02Ur .dropdown-item:hover span {
  color: white;
}
.cid-uCucPa02Ur .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCucPa02Ur .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCucPa02Ur .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCucPa02Ur .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCucPa02Ur .nav-link {
  position: relative;
}
.cid-uCucPa02Ur .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCucPa02Ur .container {
    flex-wrap: nowrap;
  }
}
.cid-uCucPa02Ur .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCucPa02Ur .dropdown-menu,
.cid-uCucPa02Ur .navbar.opened {
  background: #353535 !important;
}
.cid-uCucPa02Ur .nav-item:focus,
.cid-uCucPa02Ur .nav-link:focus {
  outline: none;
}
.cid-uCucPa02Ur .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCucPa02Ur .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCucPa02Ur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCucPa02Ur .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCucPa02Ur .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCucPa02Ur .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCucPa02Ur .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uCucPa02Ur .navbar.opened {
  transition: all 0.3s;
}
.cid-uCucPa02Ur .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCucPa02Ur .navbar .navbar-logo img {
  width: auto;
}
.cid-uCucPa02Ur .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCucPa02Ur .navbar.collapsed {
  justify-content: center;
}
.cid-uCucPa02Ur .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCucPa02Ur .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCucPa02Ur .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uCucPa02Ur .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCucPa02Ur .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCucPa02Ur .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-uCucPa02Ur .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCucPa02Ur .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCucPa02Ur .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCucPa02Ur .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCucPa02Ur .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCucPa02Ur .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCucPa02Ur .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCucPa02Ur .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-uCucPa02Ur .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCucPa02Ur .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCucPa02Ur .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCucPa02Ur .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCucPa02Ur .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCucPa02Ur .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCucPa02Ur .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCucPa02Ur .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCucPa02Ur .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCucPa02Ur .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCucPa02Ur .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCucPa02Ur .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCucPa02Ur .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCucPa02Ur .dropdown-item.active,
.cid-uCucPa02Ur .dropdown-item:active {
  background-color: transparent;
}
.cid-uCucPa02Ur .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCucPa02Ur .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCucPa02Ur .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCucPa02Ur .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uCucPa02Ur .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCucPa02Ur .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCucPa02Ur ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCucPa02Ur .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCucPa02Ur button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCucPa02Ur button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCucPa02Ur button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCucPa02Ur button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCucPa02Ur button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCucPa02Ur button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCucPa02Ur nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCucPa02Ur nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCucPa02Ur nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCucPa02Ur nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCucPa02Ur .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uCucPa02Ur a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCucPa02Ur .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCucPa02Ur .navbar {
    height: 70px;
  }
  .cid-uCucPa02Ur .navbar.opened {
    height: auto;
  }
  .cid-uCucPa02Ur .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCucPaqb6z {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uCucPaqb6z {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uCucPaqb6z .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uCucPaqb6z picture {
  height: 100%;
  object-fit: cover;
}
.cid-uCucPaqb6z picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uCucPaqb6z picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uCucPaqb6z .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCucPaqb6z .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCucPaqb6z .mbr-text,
.cid-uCucPaqb6z .mbr-section-btn {
  color: #ffffff;
}
.cid-uCucPaESxA {
  background-image: url("../../../assets/images/mbr-8.webp");
}
.cid-uCucPaESxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCucPaESxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCucPaESxA .mbr-text,
.cid-uCucPaESxA .mbr-section-btn {
  text-align: left;
}
.cid-uCucPaESxA .mbr-section-title {
  text-align: center;
}
.cid-uCuB6egvch .navbar-dropdown {
  position: relative !important;
}
.cid-uCuB6egvch .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCuB6egvch .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCuB6egvch .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCuB6egvch .dropdown-item:hover,
.cid-uCuB6egvch .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uCuB6egvch .dropdown-item:hover span {
  color: white;
}
.cid-uCuB6egvch .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCuB6egvch .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCuB6egvch .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCuB6egvch .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCuB6egvch .nav-link {
  position: relative;
}
.cid-uCuB6egvch .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCuB6egvch .container {
    flex-wrap: nowrap;
  }
}
.cid-uCuB6egvch .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCuB6egvch .dropdown-menu,
.cid-uCuB6egvch .navbar.opened {
  background: #353535 !important;
}
.cid-uCuB6egvch .nav-item:focus,
.cid-uCuB6egvch .nav-link:focus {
  outline: none;
}
.cid-uCuB6egvch .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCuB6egvch .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCuB6egvch .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCuB6egvch .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCuB6egvch .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCuB6egvch .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCuB6egvch .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uCuB6egvch .navbar.opened {
  transition: all 0.3s;
}
.cid-uCuB6egvch .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCuB6egvch .navbar .navbar-logo img {
  width: auto;
}
.cid-uCuB6egvch .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCuB6egvch .navbar.collapsed {
  justify-content: center;
}
.cid-uCuB6egvch .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCuB6egvch .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCuB6egvch .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uCuB6egvch .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCuB6egvch .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCuB6egvch .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-uCuB6egvch .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCuB6egvch .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCuB6egvch .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCuB6egvch .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCuB6egvch .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCuB6egvch .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCuB6egvch .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCuB6egvch .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-uCuB6egvch .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCuB6egvch .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCuB6egvch .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCuB6egvch .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCuB6egvch .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCuB6egvch .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCuB6egvch .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCuB6egvch .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCuB6egvch .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCuB6egvch .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCuB6egvch .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCuB6egvch .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCuB6egvch .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCuB6egvch .dropdown-item.active,
.cid-uCuB6egvch .dropdown-item:active {
  background-color: transparent;
}
.cid-uCuB6egvch .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCuB6egvch .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCuB6egvch .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCuB6egvch .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uCuB6egvch .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCuB6egvch .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCuB6egvch ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCuB6egvch .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCuB6egvch button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCuB6egvch button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCuB6egvch button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCuB6egvch button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCuB6egvch button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCuB6egvch button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCuB6egvch nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCuB6egvch nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCuB6egvch nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCuB6egvch nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCuB6egvch .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uCuB6egvch a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCuB6egvch .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCuB6egvch .navbar {
    height: 70px;
  }
  .cid-uCuB6egvch .navbar.opened {
    height: auto;
  }
  .cid-uCuB6egvch .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCuB6eEvQt {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uCuB6eEvQt {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uCuB6eEvQt .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uCuB6eEvQt picture {
  height: 100%;
  object-fit: cover;
}
.cid-uCuB6eEvQt picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uCuB6eEvQt picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uCuB6eEvQt .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCuB6eEvQt .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCuB6eEvQt .mbr-text,
.cid-uCuB6eEvQt .mbr-section-btn {
  color: #ffffff;
}
.cid-uCuB6eUuoY {
  background-image: url("../../../assets/images/mbr-8.webp");
}
.cid-uCuB6eUuoY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCuB6eUuoY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCuB6eUuoY .mbr-text,
.cid-uCuB6eUuoY .mbr-section-btn {
  text-align: left;
}
.cid-uCuB6eUuoY .mbr-section-title {
  text-align: center;
}
.cid-uCxFo10vIV .navbar-dropdown {
  position: relative !important;
}
.cid-uCxFo10vIV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCxFo10vIV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCxFo10vIV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCxFo10vIV .dropdown-item:hover,
.cid-uCxFo10vIV .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uCxFo10vIV .dropdown-item:hover span {
  color: white;
}
.cid-uCxFo10vIV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCxFo10vIV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCxFo10vIV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCxFo10vIV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCxFo10vIV .nav-link {
  position: relative;
}
.cid-uCxFo10vIV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCxFo10vIV .container {
    flex-wrap: nowrap;
  }
}
.cid-uCxFo10vIV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCxFo10vIV .dropdown-menu,
.cid-uCxFo10vIV .navbar.opened {
  background: #353535 !important;
}
.cid-uCxFo10vIV .nav-item:focus,
.cid-uCxFo10vIV .nav-link:focus {
  outline: none;
}
.cid-uCxFo10vIV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCxFo10vIV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCxFo10vIV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCxFo10vIV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCxFo10vIV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCxFo10vIV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCxFo10vIV .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uCxFo10vIV .navbar.opened {
  transition: all 0.3s;
}
.cid-uCxFo10vIV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCxFo10vIV .navbar .navbar-logo img {
  width: auto;
}
.cid-uCxFo10vIV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCxFo10vIV .navbar.collapsed {
  justify-content: center;
}
.cid-uCxFo10vIV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCxFo10vIV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCxFo10vIV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uCxFo10vIV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCxFo10vIV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCxFo10vIV .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-uCxFo10vIV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCxFo10vIV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCxFo10vIV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCxFo10vIV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCxFo10vIV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCxFo10vIV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCxFo10vIV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCxFo10vIV .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-uCxFo10vIV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCxFo10vIV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCxFo10vIV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCxFo10vIV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCxFo10vIV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCxFo10vIV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCxFo10vIV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCxFo10vIV .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCxFo10vIV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCxFo10vIV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCxFo10vIV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCxFo10vIV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCxFo10vIV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCxFo10vIV .dropdown-item.active,
.cid-uCxFo10vIV .dropdown-item:active {
  background-color: transparent;
}
.cid-uCxFo10vIV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCxFo10vIV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCxFo10vIV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCxFo10vIV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uCxFo10vIV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCxFo10vIV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCxFo10vIV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCxFo10vIV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCxFo10vIV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCxFo10vIV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCxFo10vIV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCxFo10vIV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCxFo10vIV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCxFo10vIV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCxFo10vIV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCxFo10vIV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCxFo10vIV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCxFo10vIV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCxFo10vIV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uCxFo10vIV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCxFo10vIV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCxFo10vIV .navbar {
    height: 70px;
  }
  .cid-uCxFo10vIV .navbar.opened {
    height: auto;
  }
  .cid-uCxFo10vIV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDg6iPhuCt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDg6iPhuCt .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDg6iPhuCt form.mbr-form {
  border-radius: 10px;
  background-color: #d8e1d1;
}
@media (min-width: 992px) {
  .cid-uDg6iPhuCt form.mbr-form {
    padding: 3rem 2rem;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-uDg6iPhuCt form.mbr-form {
    padding: 1rem;
  }
}
.cid-uDg6iPhuCt form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uDg6iPhuCt form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uDg6iPhuCt .content-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.cid-uDg6iPhuCt .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 45%;
  margin-right: auto;
}
.cid-uDg6iPhuCt .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  background-color: #d8e1d1;
  padding: 20px;
  border-radius: 2.08rem;
}
@media (max-width: 991px) {
  .cid-uDg6iPhuCt .content-container {
    flex-wrap: wrap;
  }
  .cid-uDg6iPhuCt .title-container {
    margin-right: auto;
    margin-left: 0;
    width: 100%;
    margin-bottom: 40px;
  }
  .cid-uDg6iPhuCt .form-container {
    flex-direction: column;
    align-items: center ;
    width: 100%;
    flex-wrap: nowrap;
    padding: 20px;
  }
  .cid-uDg6iPhuCt .form-subtitle {
    width: 100%;
    padding-right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-uDg6iPhuCt .form-subtitle {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center !important;
  }
}
.cid-uDg6iPhuCt .main-title {
  color: #232323;
  width: 100%;
  margin-bottom: 0;
}
.cid-uDg6iPhuCt .main-subtitle {
  color: #222222;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
.cid-uDg6iPhuCt .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uDg6iPhuCt .form-control-label {
  line-height: 1.8rem !important;
  font-size: 1.2rem !important;
}
.cid-uDg6iPhuCt .form-control {
  line-height: 1.8rem !important;
  font-size: 1.2rem !important;
}
.cid-uDg6iPhuCt H5 {
  color: #2299aa;
  text-align: left;
}
.cid-uDltUYITNl .navbar-dropdown {
  position: relative !important;
}
.cid-uDltUYITNl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDltUYITNl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDltUYITNl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDltUYITNl .dropdown-item:hover,
.cid-uDltUYITNl .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uDltUYITNl .dropdown-item:hover span {
  color: white;
}
.cid-uDltUYITNl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDltUYITNl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDltUYITNl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDltUYITNl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDltUYITNl .nav-link {
  position: relative;
}
.cid-uDltUYITNl .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uDltUYITNl .container {
    flex-wrap: nowrap;
  }
}
.cid-uDltUYITNl .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDltUYITNl .dropdown-menu,
.cid-uDltUYITNl .navbar.opened {
  background: #353535 !important;
}
.cid-uDltUYITNl .nav-item:focus,
.cid-uDltUYITNl .nav-link:focus {
  outline: none;
}
.cid-uDltUYITNl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDltUYITNl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDltUYITNl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDltUYITNl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDltUYITNl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDltUYITNl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDltUYITNl .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uDltUYITNl .navbar.opened {
  transition: all 0.3s;
}
.cid-uDltUYITNl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDltUYITNl .navbar .navbar-logo img {
  width: auto;
}
.cid-uDltUYITNl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDltUYITNl .navbar.collapsed {
  justify-content: center;
}
.cid-uDltUYITNl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDltUYITNl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDltUYITNl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uDltUYITNl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDltUYITNl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDltUYITNl .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-uDltUYITNl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDltUYITNl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDltUYITNl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDltUYITNl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDltUYITNl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDltUYITNl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDltUYITNl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDltUYITNl .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-uDltUYITNl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDltUYITNl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDltUYITNl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDltUYITNl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDltUYITNl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDltUYITNl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uDltUYITNl .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uDltUYITNl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uDltUYITNl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDltUYITNl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDltUYITNl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDltUYITNl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDltUYITNl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDltUYITNl .dropdown-item.active,
.cid-uDltUYITNl .dropdown-item:active {
  background-color: transparent;
}
.cid-uDltUYITNl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDltUYITNl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDltUYITNl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDltUYITNl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uDltUYITNl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDltUYITNl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDltUYITNl ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDltUYITNl .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDltUYITNl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDltUYITNl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uDltUYITNl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDltUYITNl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDltUYITNl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDltUYITNl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDltUYITNl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDltUYITNl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDltUYITNl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDltUYITNl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDltUYITNl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uDltUYITNl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDltUYITNl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDltUYITNl .navbar {
    height: 70px;
  }
  .cid-uDltUYITNl .navbar.opened {
    height: auto;
  }
  .cid-uDltUYITNl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDltUZ36SN {
  background-color: #ffe161;
}
@media (min-width: 991px) {
  .cid-uDltUZ36SN .container-fluid {
    padding-left: 0;
  }
}
.cid-uDltUZ36SN .mbr-text,
.cid-uDltUZ36SN .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-uDltUZ36SN .mbr-text,
  .cid-uDltUZ36SN .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uDltUZ36SN .mbr-text,
  .cid-uDltUZ36SN .mbr-section-title {
    text-align: center;
  }
}
.cid-uDltUZ36SN a.btn {
  height: 100%;
  margin: 0;
}
.cid-uDltUZ36SN .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-uDltUZ36SN .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uDltUZ36SN .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uDltUZ36SN .justify-content-center {
  align-items: center;
}
.cid-uDltUZ36SN .form-control {
  line-height: 1.8rem !important;
  font-size: 1.2rem !important;
}
.cid-uDltUZj04Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uDltUZj04Y .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uDltUZj04Y form.mbr-form {
  border-radius: 10px;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .cid-uDltUZj04Y form.mbr-form {
    padding: 3rem 2rem;
    width: 90%;
  }
}
@media (max-width: 991px) {
  .cid-uDltUZj04Y form.mbr-form {
    padding: 1rem;
  }
}
.cid-uDltUZj04Y form.mbr-form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uDltUZj04Y form.mbr-form .mbr-section-btn .btn {
  width: 100%;
}
.cid-uDltUZj04Y .content-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.cid-uDltUZj04Y .title-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  width: 45%;
  margin-right: auto;
}
.cid-uDltUZj04Y .main-title {
  color: #FFDD65;
  width: 100%;
  margin-bottom: 0;
}
.cid-uDltUZj04Y .main-subtitle {
  color: #f1f5f7;
  opacity: 0.8;
  width: 100%;
  margin-top: 24px;
}
.cid-uDltUZj04Y .form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  background-color: #ffdd65;
  padding: 20px;
  border-radius: 2.08rem;
}
.cid-uDltUZj04Y .mbr-section-title {
  text-align: left;
}
.cid-uFVi5HFFYo {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uFVi5HFFYo {
    padding-top: 7rem;
    padding-bottom: 10rem;
  }
}
.cid-uFVi5HFFYo .container-fluid {
  padding-left: 0px;
  padding-right: 0px;
}
.cid-uFVi5HFFYo picture {
  height: 100%;
  object-fit: cover;
}
.cid-uFVi5HFFYo picture source {
  height: 100%;
  object-fit: cover;
}
.cid-uFVi5HFFYo picture img {
  height: 100%;
  object-fit: cover;
}
.cid-uFVi5HFFYo .achtergrond {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5HFFYo .mbr-section-title {
  color: #ffffff;
}
.cid-uFVi5HFFYo .mbr-text,
.cid-uFVi5HFFYo .mbr-section-btn {
  color: #ffffff;
}
.cid-uFVi5HU4yM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5I4qMj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uFVi5I4qMj .mbr-section-title {
  text-align: left;
}
.cid-uFVi5I4qMj .mbr-section-subtitle {
  text-align: center;
}
.cid-uFVi5I4qMj .mbr-text {
  text-align: left;
}
.cid-uFVi5KcXYe {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5KcXYe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5KcXYe .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-uFVi5KcXYe .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5KcXYe .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5KcXYe .card-title,
.cid-uFVi5KcXYe .card-box {
  color: #353535;
}
.cid-uFVi5KcXYe .mbr-text,
.cid-uFVi5KcXYe .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5KqXOb {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5KqXOb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5KqXOb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5KqXOb .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5KqXOb .img-item {
  position: relative;
}
.cid-uFVi5KqXOb .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5KqXOb .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5KqXOb .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5Ipx5f {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5Ipx5f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5Ipx5f .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-uFVi5Ipx5f .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5Ipx5f .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5Ipx5f .card-title,
.cid-uFVi5Ipx5f .card-box {
  color: #353535;
}
.cid-uFVi5Ipx5f .mbr-text,
.cid-uFVi5Ipx5f .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5IEppa {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5IEppa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5IEppa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5IEppa .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5IEppa .img-item {
  position: relative;
}
.cid-uFVi5IEppa .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5IEppa .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5IEppa .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5ITPjz {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5ITPjz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5ITPjz .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-uFVi5ITPjz .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5ITPjz .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5ITPjz .card-title,
.cid-uFVi5ITPjz .card-box {
  color: #353535;
}
.cid-uFVi5ITPjz .mbr-text,
.cid-uFVi5ITPjz .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5J5gF6 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5J5gF6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5J5gF6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5J5gF6 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5J5gF6 .img-item {
  position: relative;
}
.cid-uFVi5J5gF6 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5J5gF6 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5J5gF6 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5JmrYL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5JmrYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5JmrYL .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-uFVi5JmrYL .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5JmrYL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5JmrYL .card-title,
.cid-uFVi5JmrYL .card-box {
  color: #353535;
}
.cid-uFVi5JmrYL .mbr-text,
.cid-uFVi5JmrYL .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5JxjxO {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5JxjxO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5JxjxO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5JxjxO .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5JxjxO .img-item {
  position: relative;
}
.cid-uFVi5JxjxO .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5JxjxO .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5JxjxO .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5JLGvA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5JLGvA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5JLGvA .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-uFVi5JLGvA .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5JLGvA .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5JLGvA .card-title,
.cid-uFVi5JLGvA .card-box {
  color: #353535;
}
.cid-uFVi5JLGvA .mbr-text,
.cid-uFVi5JLGvA .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5JYEs8 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5JYEs8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5JYEs8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5JYEs8 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5JYEs8 .img-item {
  position: relative;
}
.cid-uFVi5JYEs8 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5JYEs8 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5JYEs8 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5KHH7D {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5KHH7D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5KHH7D .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-uFVi5KHH7D .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5KHH7D .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5KHH7D .card-title,
.cid-uFVi5KHH7D .card-box {
  color: #353535;
}
.cid-uFVi5KHH7D .mbr-text,
.cid-uFVi5KHH7D .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5KUfoX {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5KUfoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5KUfoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5KUfoX .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5KUfoX .img-item {
  position: relative;
}
.cid-uFVi5KUfoX .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5KUfoX .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5KUfoX .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5L97CB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5L97CB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5L97CB .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-uFVi5L97CB .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5L97CB .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5L97CB .card-title,
.cid-uFVi5L97CB .card-box {
  color: #353535;
}
.cid-uFVi5L97CB .mbr-text,
.cid-uFVi5L97CB .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5LoHD8 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5LoHD8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5LoHD8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5LoHD8 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5LoHD8 .img-item {
  position: relative;
}
.cid-uFVi5LoHD8 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5LoHD8 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5LoHD8 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5LChdL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5LChdL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5LChdL .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-uFVi5LChdL .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5LChdL .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5LChdL .card-title,
.cid-uFVi5LChdL .card-box {
  color: #353535;
}
.cid-uFVi5LChdL .mbr-text,
.cid-uFVi5LChdL .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5LPlRv {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5LPlRv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5LPlRv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5LPlRv .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5LPlRv .img-item {
  position: relative;
}
.cid-uFVi5LPlRv .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5LPlRv .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5LPlRv .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5M5B2k {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5M5B2k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5M5B2k .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-uFVi5M5B2k .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5M5B2k .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5M5B2k .card-title,
.cid-uFVi5M5B2k .card-box {
  color: #353535;
}
.cid-uFVi5M5B2k .mbr-text,
.cid-uFVi5M5B2k .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5Mjm3L {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5Mjm3L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5Mjm3L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5Mjm3L .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5Mjm3L .img-item {
  position: relative;
}
.cid-uFVi5Mjm3L .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5Mjm3L .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5Mjm3L .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5Mw9Zb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5Mw9Zb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5Mw9Zb .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-uFVi5Mw9Zb .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5Mw9Zb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5Mw9Zb .card-title,
.cid-uFVi5Mw9Zb .card-box {
  color: #353535;
}
.cid-uFVi5Mw9Zb .mbr-text,
.cid-uFVi5Mw9Zb .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5MKRaW {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5MKRaW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5MKRaW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5MKRaW .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5MKRaW .img-item {
  position: relative;
}
.cid-uFVi5MKRaW .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5MKRaW .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5MKRaW .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5MYNQO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5MYNQO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5MYNQO .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-uFVi5MYNQO .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5MYNQO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5MYNQO .card-title,
.cid-uFVi5MYNQO .card-box {
  color: #353535;
}
.cid-uFVi5MYNQO .mbr-text,
.cid-uFVi5MYNQO .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5NdMKG {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5NdMKG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5NdMKG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5NdMKG .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5NdMKG .img-item {
  position: relative;
}
.cid-uFVi5NdMKG .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5NdMKG .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5NdMKG .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5Numdx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5Numdx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5Numdx .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-uFVi5Numdx .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5Numdx .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5Numdx .card-title,
.cid-uFVi5Numdx .card-box {
  color: #353535;
}
.cid-uFVi5Numdx .mbr-text,
.cid-uFVi5Numdx .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5NH5Yv {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5NH5Yv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5NH5Yv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5NH5Yv .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5NH5Yv .img-item {
  position: relative;
}
.cid-uFVi5NH5Yv .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5NH5Yv .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5NH5Yv .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5NW8dM {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5NW8dM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5NW8dM .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-uFVi5NW8dM .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5NW8dM .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5NW8dM .card-title,
.cid-uFVi5NW8dM .card-box {
  color: #353535;
}
.cid-uFVi5NW8dM .mbr-text,
.cid-uFVi5NW8dM .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5OarR4 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5OarR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5OarR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5OarR4 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5OarR4 .img-item {
  position: relative;
}
.cid-uFVi5OarR4 .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5OarR4 .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5OarR4 .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5OoSzS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uFVi5OoSzS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5OoSzS .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-uFVi5OoSzS .card {
    margin-bottom: 2rem;
  }
  .cid-uFVi5OoSzS .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uFVi5OoSzS .card-title,
.cid-uFVi5OoSzS .card-box {
  color: #353535;
}
.cid-uFVi5OoSzS .mbr-text,
.cid-uFVi5OoSzS .mbr-section-btn {
  color: #232323;
}
.cid-uFVi5OCYRQ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uFVi5OCYRQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5OCYRQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5OCYRQ .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uFVi5OCYRQ .img-item {
  position: relative;
}
.cid-uFVi5OCYRQ .img-item img {
  width: 100%;
  object-fit: cover;
}
.cid-uFVi5OCYRQ .img-item .img-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: .5rem 1rem .5rem;
  word-break: break-word;
}
.cid-uFVi5OCYRQ .img-item .img-description p {
  margin-bottom: 0;
}
.cid-uFVi5PTQkr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uFVi5PTQkr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFVi5PTQkr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFVi5PTQkr .mbr-section-title {
  color: #666666;
}
.cid-uFVi5PTQkr .mbr-section-subtitle {
  color: #000000;
}
.cid-uFVi5QaDUv .navbar-dropdown {
  position: relative !important;
}
.cid-uFVi5QaDUv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVi5QaDUv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFVi5QaDUv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFVi5QaDUv .dropdown-item:hover,
.cid-uFVi5QaDUv .dropdown-item:focus {
  background: #0059ff !important;
  color: white !important;
}
.cid-uFVi5QaDUv .dropdown-item:hover span {
  color: white;
}
.cid-uFVi5QaDUv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFVi5QaDUv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFVi5QaDUv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFVi5QaDUv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFVi5QaDUv .nav-link {
  position: relative;
}
.cid-uFVi5QaDUv .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uFVi5QaDUv .container {
    flex-wrap: nowrap;
  }
}
.cid-uFVi5QaDUv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFVi5QaDUv .dropdown-menu,
.cid-uFVi5QaDUv .navbar.opened {
  background: #353535 !important;
}
.cid-uFVi5QaDUv .nav-item:focus,
.cid-uFVi5QaDUv .nav-link:focus {
  outline: none;
}
.cid-uFVi5QaDUv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFVi5QaDUv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFVi5QaDUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFVi5QaDUv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFVi5QaDUv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFVi5QaDUv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFVi5QaDUv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #353535;
}
.cid-uFVi5QaDUv .navbar.opened {
  transition: all 0.3s;
}
.cid-uFVi5QaDUv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFVi5QaDUv .navbar .navbar-logo img {
  width: auto;
}
.cid-uFVi5QaDUv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFVi5QaDUv .navbar.collapsed {
  justify-content: center;
}
.cid-uFVi5QaDUv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFVi5QaDUv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFVi5QaDUv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.3rem);
  }
}
.cid-uFVi5QaDUv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFVi5QaDUv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFVi5QaDUv .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-uFVi5QaDUv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFVi5QaDUv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFVi5QaDUv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFVi5QaDUv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFVi5QaDUv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFVi5QaDUv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFVi5QaDUv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFVi5QaDUv .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-uFVi5QaDUv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFVi5QaDUv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFVi5QaDUv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFVi5QaDUv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFVi5QaDUv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFVi5QaDUv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFVi5QaDUv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFVi5QaDUv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFVi5QaDUv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFVi5QaDUv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFVi5QaDUv .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uFVi5QaDUv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFVi5QaDUv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFVi5QaDUv .dropdown-item.active,
.cid-uFVi5QaDUv .dropdown-item:active {
  background-color: transparent;
}
.cid-uFVi5QaDUv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFVi5QaDUv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFVi5QaDUv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFVi5QaDUv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #353535;
}
.cid-uFVi5QaDUv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFVi5QaDUv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFVi5QaDUv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFVi5QaDUv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFVi5QaDUv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFVi5QaDUv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uFVi5QaDUv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFVi5QaDUv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVi5QaDUv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFVi5QaDUv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFVi5QaDUv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVi5QaDUv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFVi5QaDUv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFVi5QaDUv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFVi5QaDUv .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uFVi5QaDUv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFVi5QaDUv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFVi5QaDUv .navbar {
    height: 70px;
  }
  .cid-uFVi5QaDUv .navbar.opened {
    height: auto;
  }
  .cid-uFVi5QaDUv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
