body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Russo One', sans-serif;
  font-size: 4.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Russo One', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0c2cb0 !important;
}
.bg-success {
  background-color: #f9f295 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0c2cb0 !important;
  border-color: #0c2cb0 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #071a68 !important;
  border-color: #071a68 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #071a68 !important;
  border-color: #071a68 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f01140 !important;
  border-color: #f01140 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #aa0b2c !important;
  border-color: #aa0b2c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #aa0b2c !important;
  border-color: #aa0b2c !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f9f295 !important;
  border-color: #f9f295 !important;
  color: #877e08 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #877e08 !important;
  background-color: #f5e94d !important;
  border-color: #f5e94d !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #877e08 !important;
  background-color: #f5e94d !important;
  border-color: #f5e94d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #051451;
  color: #051451;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0c2cb0;
  border-color: #0c2cb0;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0c2cb0 !important;
  border-color: #0c2cb0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #920926;
  color: #920926;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f01140;
  border-color: #f01140;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f01140 !important;
  border-color: #f01140 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #f4e634;
  color: #f4e634;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #877e08;
  background-color: #f9f295;
  border-color: #f9f295;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #877e08 !important;
  background-color: #f9f295 !important;
  border-color: #f9f295 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0c2cb0 !important;
}
.text-secondary {
  color: #f01140 !important;
}
.text-success {
  color: #f9f295 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #051451 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #920926 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f4e634 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c2cb0;
  border-color: #0c2cb0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0c2cb0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #496af3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #0c2cb0;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.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);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0c2cb0;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0c2cb0;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0c2cb0;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0c2cb0;
  border-bottom-color: #0c2cb0;
}
.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: #0c2cb0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #f01140 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%230c2cb0' %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.3;
}
.cid-qAWumt7llD .navbar {
  background: #7f1933;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-qAWumt7llD .navbar-dropdown.bg-color.transparent.opened {
  background: #7f1933;
}
.cid-qAWumt7llD a {
  font-style: normal;
}
.cid-qAWumt7llD .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qAWumt7llD .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qAWumt7llD .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qAWumt7llD .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qAWumt7llD .menu-logo {
  margin-right: auto;
}
.cid-qAWumt7llD .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: left;
}
.cid-qAWumt7llD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: left;
  align-items: left;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qAWumt7llD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.6rem !important;
  padding-right: 2rem;
}
.cid-qAWumt7llD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qAWumt7llD .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qAWumt7llD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qAWumt7llD .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qAWumt7llD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qAWumt7llD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qAWumt7llD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qAWumt7llD .dropdown .dropdown-menu {
  background: #7f1933;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qAWumt7llD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qAWumt7llD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qAWumt7llD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qAWumt7llD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qAWumt7llD .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qAWumt7llD .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qAWumt7llD .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qAWumt7llD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qAWumt7llD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qAWumt7llD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qAWumt7llD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qAWumt7llD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qAWumt7llD button.navbar-toggler:focus {
  outline: none;
}
.cid-qAWumt7llD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ff3366;
}
.cid-qAWumt7llD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qAWumt7llD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qAWumt7llD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qAWumt7llD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qAWumt7llD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qAWumt7llD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qAWumt7llD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qAWumt7llD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qAWumt7llD .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qAWumt7llD .collapsed .btn {
  display: flex;
}
.cid-qAWumt7llD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing,
.cid-qAWumt7llD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qAWumt7llD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qAWumt7llD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qAWumt7llD .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qAWumt7llD .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qAWumt7llD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qAWumt7llD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qAWumt7llD .collapsed button.navbar-toggler {
  display: block;
}
.cid-qAWumt7llD .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qAWumt7llD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qAWumt7llD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qAWumt7llD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qAWumt7llD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qAWumt7llD .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qAWumt7llD.navbar-expand {
    flex-direction: column;
  }
  .cid-qAWumt7llD img {
    height: 3.8rem !important;
  }
  .cid-qAWumt7llD .btn {
    display: flex;
  }
  .cid-qAWumt7llD button.navbar-toggler {
    display: block;
  }
  .cid-qAWumt7llD .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qAWumt7llD .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qAWumt7llD .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing,
  .cid-qAWumt7llD .navbar-collapse.show {
    display: block !important;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing .navbar-nav,
  .cid-qAWumt7llD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qAWumt7llD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qAWumt7llD .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing .navbar-buttons,
  .cid-qAWumt7llD .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qAWumt7llD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qAWumt7llD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qAWumt7llD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qAWumt7llD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qAWumt7llD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qAWumt7llD .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-qAWumt7llD .menu-logo {
    flex-shrink: 0;
  }
}
.cid-slGUAOFABM {
  padding-top: 120px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/tdw3d-td-overviewjpg-kopie-960x540.jpeg");
}
.cid-slGUAOFABM .mbr-section {
  text-align: center;
  color: #656565;
}
.cid-slGUAOFABM .banner-heading .cont {
  color: #ffffff ;
  font-size: 40px;
  font-weight: 500;
  box-shadow: 1em 0.4em 3em;
  display: block;
}
.cid-slGUAOFABM .banner-heading P {
  color: #ffffff;
  padding-bottom: 10px;
  font-size: 25px;
  font-weight: 400;
}
.cid-slGUAOFABM .banner-heading span p {
  color: #ffffff;
  box-shadow: 1em 0.4em 3em black
    ;
}
.cid-slGUAOFABM P {
  color: #ffffff;
}
.cid-smQiaeNGur {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.jpg");
}
@media (max-width: 500px) {
  .cid-smQiaeNGur .row {
    flex-direction: column-reverse;
  }
  .cid-smQiaeNGur .mbr-figure {
    margin-bottom: 1.5rem;
  }
}
.cid-smQiaeNGur .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-smQiaeNGur .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-smQiaeNGur .media-content,
.cid-smQiaeNGur .mbr-figure {
  align-self: center;
}
.cid-smQiaeNGur .mbr-figure iframe {
  width: 100%;
}
.cid-r7tiiGRlHB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #295896;
}
.cid-r7tiiGRlHB h4 {
  font-weight: 500;
  color: #ffffff;
}
.cid-r7tiiGRlHB p {
  color: #ffffff;
}
.cid-r7tiiGRlHB .card {
  margin-bottom: 2rem;
}
.cid-r7tiiGRlHB .card-img {
  border-radius: 7px;
  padding: 2rem 2rem 2rem 2rem;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #149dcc;
}
.cid-r7tiiGRlHB .card-img span {
  font-size: 100px;
  color: #ffffff;
}
.cid-r7tiiGRlHB .card-box {
  padding-bottom: 2rem;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
  background-color: #149dcc;
  background: linear-gradient(#149dcc, transparent);
}
.cid-r7tiiGRlHB .card-box .card-title {
  margin: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-r7tiiGRlHB .card-box .mbr-text {
  margin-bottom: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-r7tiiGRlHB .card-box .mbr-section-btn {
  padding-top: 2rem;
}
.cid-r7tiiGRlHB .card-box .mbr-section-btn a {
  margin-top: 2rem;
  margin-bottom: 1;
}
.cid-r7tiiGRlHB .card-title,
.cid-r7tiiGRlHB .card-img DIV {
  color: #55f917;
}
.cid-sTPk3sfuAc .divider-top {
  position: relative;
  padding: 2.5em;
  background: #295896;
}
.cid-sTPk3sfuAc .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #cc2929;
}
.cid-sTPk3sfuAc .divider-top::before,
.cid-sTPk3sfuAc .divider-bottom::before,
.cid-sTPk3sfuAc .divider-top::after,
.cid-sTPk3sfuAc .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-sTPk3sfuAc .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-sTPk3sfuAc .divider-triangles::before {
  top: -50px;
}
.cid-sTPk3sfuAc .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-sTPk3sfuAc .divider-halfcircle::before {
  top: -50px;
}
.cid-sTPk3sfuAc .divider-multitriangles::before,
.cid-sTPk3sfuAc .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-sTPk3sfuAc .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #295896, 50px -50px 0 #295896;
}
.cid-slh6bNb0LP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cc2929;
}
.cid-slh6bNb0LP P {
  color: #767676;
}
.cid-slh6bNb0LP hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-slh6bNb0LP .mbr-text,
.cid-slh6bNb0LP .mbr-section-btn {
  color: #232323;
}
.cid-slh6bNb0LP H1 {
  color: #232323;
}
.cid-qLcGcRR0G5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cc2929;
}
.cid-qLcGcRR0G5 h2 {
  text-align: center;
}
.cid-qLcGcRR0G5 h4 {
  text-align: center;
  z-index: 1;
  color: #ffffff;
}
.cid-qLcGcRR0G5 p {
  z-index: 1;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qLcGcRR0G5 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qLcGcRR0G5 .zoomEffect_1 img {
  max-width: 100%;
  height: auto;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cid-qLcGcRR0G5 .zoomEffect_1:hover img {
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-qLcGcRR0G5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qLcGcRR0G5 .card-img img {
  z-index: -1;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-qLcGcRR0G5 .mbr-section-title B {
  color: #12607b;
}
.cid-qLcGcRR0G5 .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-qLcGVlQUwl {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #cc2929;
}
.cid-qLcGVlQUwl h2 {
  text-align: center;
}
.cid-qLcGVlQUwl h4 {
  text-align: center;
  z-index: 1;
  color: #ffffff;
}
.cid-qLcGVlQUwl p {
  z-index: 1;
  margin-bottom: 0;
  color: #ffffff;
}
.cid-qLcGVlQUwl .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qLcGVlQUwl .zoomEffect_1 img {
  max-width: 100%;
  height: auto;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cid-qLcGVlQUwl .zoomEffect_1:hover img {
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-qLcGVlQUwl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qLcGVlQUwl .card-img img {
  z-index: -1;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-slKqwUapNn .divider-top {
  position: relative;
  padding: 2.5em;
  background: #cc2929;
}
.cid-slKqwUapNn .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #dc956e;
}
.cid-slKqwUapNn .divider-top::before,
.cid-slKqwUapNn .divider-bottom::before,
.cid-slKqwUapNn .divider-top::after,
.cid-slKqwUapNn .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-slKqwUapNn .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-slKqwUapNn .divider-triangles::before {
  top: -50px;
}
.cid-slKqwUapNn .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-slKqwUapNn .divider-halfcircle::before {
  top: -50px;
}
.cid-slKqwUapNn .divider-multitriangles::before,
.cid-slKqwUapNn .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-slKqwUapNn .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #cc2929, 50px -50px 0 #cc2929;
}
.cid-slgqOOOYxV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dc956e;
}
.cid-slgqOOOYxV P {
  color: #767676;
}
.cid-slgqOOOYxV hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-slgqOOOYxV .mbr-text,
.cid-slgqOOOYxV .mbr-section-btn {
  color: #232323;
}
.cid-slgqOOOYxV H1 {
  color: #232323;
}
.cid-qw6avYb8b2 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #dc956e;
}
.cid-qw6avYb8b2 .mbr-section-subtitle {
  color: #767676;
}
.cid-qw6avYb8b2 .mbr-text {
  color: #767676;
}
.cid-qw6avYb8b2 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qw6avYb8b2 .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qw6avYb8b2 .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qw6avYb8b2 .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-qw6avYb8b2 .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  margin: auto;
}
.cid-qw6avYb8b2 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qw6avYb8b2 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-qw6avYb8b2 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-qw6avYb8b2 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qw6avYb8b2 .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-qw6avYb8b2 .popup-btn .mbr-section-btn {
  display: block !important;
  opacity: 0;
}
.cid-qw6avYb8b2 .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-qw6avYb8b2 .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-qw6avYb8b2 .mbr-section-title {
  text-align: center;
}
.cid-qv6uTayUFl {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dc956e;
}
.cid-qv6uTayUFl .mbr-section-subtitle {
  color: #767676;
}
.cid-qv6uTayUFl .mbr-text {
  color: #767676;
}
.cid-qv6uTayUFl .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qv6uTayUFl .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qv6uTayUFl .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qv6uTayUFl .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-qv6uTayUFl .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  margin: auto;
}
.cid-qv6uTayUFl .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qv6uTayUFl .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-qv6uTayUFl .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-qv6uTayUFl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qv6uTayUFl .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-qv6uTayUFl .popup-btn .mbr-section-btn {
  display: block !important;
  opacity: 0;
}
.cid-qv6uTayUFl .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-qv6uTayUFl .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-qwbkqRArJa {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #dc956e;
}
.cid-qwbkqRArJa .mbr-section-subtitle {
  color: #767676;
}
.cid-qwbkqRArJa .mbr-text {
  color: #767676;
}
.cid-qwbkqRArJa .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qwbkqRArJa .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qwbkqRArJa .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qwbkqRArJa .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-qwbkqRArJa .card-wrapper .card-img .mbr-section-btn {
  position: absolute;
  transition: opacity .3s;
  margin: auto;
}
.cid-qwbkqRArJa .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-radius: 7px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4), 0px 10px 20px rgba(0, 0, 0, 0.4);
}
.cid-qwbkqRArJa .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-qwbkqRArJa .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-qwbkqRArJa .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qwbkqRArJa .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-qwbkqRArJa .popup-btn .mbr-section-btn {
  display: block !important;
  opacity: 0;
}
.cid-qwbkqRArJa .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-qwbkqRArJa .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-slKtyP4hM8 .divider-top {
  position: relative;
  padding: 2.5em;
  background: #dc956e;
}
.cid-slKtyP4hM8 .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #154a5c;
}
.cid-slKtyP4hM8 .divider-top::before,
.cid-slKtyP4hM8 .divider-bottom::before,
.cid-slKtyP4hM8 .divider-top::after,
.cid-slKtyP4hM8 .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-slKtyP4hM8 .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-slKtyP4hM8 .divider-triangles::before {
  top: -50px;
}
.cid-slKtyP4hM8 .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-slKtyP4hM8 .divider-halfcircle::before {
  top: -50px;
}
.cid-slKtyP4hM8 .divider-multitriangles::before,
.cid-slKtyP4hM8 .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-slKtyP4hM8 .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #dc956e, 50px -50px 0 #dc956e;
}
.cid-slhdztwvG5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #154a5c;
}
.cid-slhdztwvG5 P {
  color: #767676;
}
.cid-slhdztwvG5 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 10px 10px -10px #333333;
  margin: -50px auto 10px;
}
.cid-slhdztwvG5 .mbr-text,
.cid-slhdztwvG5 .mbr-section-btn {
  color: #232323;
}
.cid-slhdztwvG5 H1 {
  color: #ffffff;
}
.cid-qv6FN1qERJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/tdw3d-td-overviewjpg-kopie-960x540.jpg");
}
.cid-qv6FN1qERJ h2 {
  text-align: left;
}
.cid-qv6FN1qERJ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-qv6FN1qERJ p {
  color: #767676;
  text-align: left;
}
.cid-qv6FN1qERJ .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-qv6FN1qERJ .media {
  margin: initial;
  align-items: center;
}
.cid-qv6FN1qERJ .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-qv6FN1qERJ .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-qv6FN1qERJ .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qv6FN1qERJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qv6FN1qERJ .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-qv6FN1qERJ .card-img span {
    font-size: 40px !important;
  }
}
.cid-qv6FN1qERJ .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-qv6FN1qERJ .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-qv6FN1qERJ .mbr-text {
  color: #e4eff8;
}
.cid-qv6FN1qERJ P {
  color: #e4eff8;
}
.cid-qv6FN1qERJ B {
  color: #c1c1c1;
}
.cid-qv6FN1qERJ H4 {
  color: #e4eff8;
}
.cid-qv6FN1qERJ H2 {
  color: #c1c1c1;
}
.cid-slKrR5wQYS .divider-top {
  position: relative;
  padding: 0.0em;
  background: #149dcc;
}
.cid-slKrR5wQYS .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #f7ed4a;
}
.cid-slKrR5wQYS .divider-top::before,
.cid-slKrR5wQYS .divider-bottom::before,
.cid-slKrR5wQYS .divider-top::after,
.cid-slKrR5wQYS .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-slKrR5wQYS .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-slKrR5wQYS .divider-triangles::before {
  top: -50px;
}
.cid-slKrR5wQYS .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-slKrR5wQYS .divider-halfcircle::before {
  top: -50px;
}
.cid-slKrR5wQYS .divider-multitriangles::before,
.cid-slKrR5wQYS .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-slKrR5wQYS .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #149dcc, 50px -50px 0 #149dcc;
}
.cid-slh7Nh2MSB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f7ed4a;
}
.cid-slh7Nh2MSB P {
  color: #767676;
}
.cid-slh7Nh2MSB hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-slh7Nh2MSB .mbr-text,
.cid-slh7Nh2MSB .mbr-section-btn {
  color: #232323;
}
.cid-slh7Nh2MSB H1 {
  color: #232323;
}
.cid-sYfY12Lo0J {
  padding-top: 30px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #f7ed4a, #f7ed4a);
}
.cid-sYfY12Lo0J .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-sYfY12Lo0J .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-sYfY12Lo0J .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-sYfY12Lo0J .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-sYfY12Lo0J .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sYfY12Lo0J .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-sYfY12Lo0J .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-sYfY12Lo0J .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-sYfY12Lo0J .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-sYfY12Lo0J .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-sYfY12Lo0J .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sYfY12Lo0J .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sYfY12Lo0J .mbr-text {
  color: #232323;
}
.cid-sYfY12Lo0J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYfY12Lo0J H2 {
  color: #232323;
}
.cid-sYfY12Lo0J H4 {
  text-align: left;
}
.cid-t4DdG7U0gP {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #f7ed4a, #f7ed4a);
}
.cid-t4DdG7U0gP .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #c4cfd9;
}
.cid-t4DdG7U0gP .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4DdG7U0gP .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4DdG7U0gP .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4DdG7U0gP .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4DdG7U0gP .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4DdG7U0gP .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4DdG7U0gP .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4DdG7U0gP .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4DdG7U0gP .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4DdG7U0gP .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4DdG7U0gP .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4DdG7U0gP .mbr-text {
  color: #232323;
}
.cid-t4DdG7U0gP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4DdG7U0gP H2 {
  color: #232323;
}
.cid-t4DdG7U0gP H4 {
  text-align: left;
}
.cid-t4Di6GrWre {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #f7ed4a, #f7ed4a);
}
.cid-t4Di6GrWre .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #cebfaf;
}
.cid-t4Di6GrWre .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4Di6GrWre .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4Di6GrWre .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4Di6GrWre .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4Di6GrWre .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4Di6GrWre .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4Di6GrWre .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4Di6GrWre .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4Di6GrWre .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4Di6GrWre .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4Di6GrWre .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4Di6GrWre .mbr-text {
  color: #232323;
}
.cid-t4Di6GrWre .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4Di6GrWre H2 {
  color: #232323;
}
.cid-t4Di6GrWre H4 {
  text-align: left;
}
.cid-t4GwCas7ik {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #f7ed4a, #f7ed4a);
}
.cid-t4GwCas7ik .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #3fe86c;
}
.cid-t4GwCas7ik .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4GwCas7ik .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4GwCas7ik .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4GwCas7ik .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4GwCas7ik .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4GwCas7ik .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4GwCas7ik .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4GwCas7ik .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4GwCas7ik .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4GwCas7ik .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4GwCas7ik .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4GwCas7ik .mbr-text {
  color: #232323;
}
.cid-t4GwCas7ik .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4GwCas7ik H2 {
  color: #232323;
}
.cid-t4GwCas7ik H4 {
  text-align: left;
}
.cid-t4GxMZel29 {
  padding-top: 0px;
  padding-bottom: 30px;
  position: relative;
  background: linear-gradient(0deg, #f7ed4a, #f7ed4a);
}
.cid-t4GxMZel29 .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #149dcc;
}
.cid-t4GxMZel29 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4GxMZel29 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4GxMZel29 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4GxMZel29 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4GxMZel29 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4GxMZel29 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4GxMZel29 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4GxMZel29 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4GxMZel29 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4GxMZel29 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4GxMZel29 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4GxMZel29 .mbr-text {
  color: #232323;
}
.cid-t4GxMZel29 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4GxMZel29 H2 {
  color: #232323;
}
.cid-t4GxMZel29 H4 {
  text-align: left;
}
.cid-tciFBXKNjr .divider-top {
  position: relative;
  padding: 2.5em;
  background: #f7ed4a;
}
.cid-tciFBXKNjr .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #888fb2;
}
.cid-tciFBXKNjr .divider-top::before,
.cid-tciFBXKNjr .divider-bottom::before,
.cid-tciFBXKNjr .divider-top::after,
.cid-tciFBXKNjr .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tciFBXKNjr .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tciFBXKNjr .divider-triangles::before {
  top: -50px;
}
.cid-tciFBXKNjr .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tciFBXKNjr .divider-halfcircle::before {
  top: -50px;
}
.cid-tciFBXKNjr .divider-multitriangles::before,
.cid-tciFBXKNjr .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tciFBXKNjr .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #f7ed4a, 50px -50px 0 #f7ed4a;
}
.cid-slKspU9ezy .divider-top {
  position: relative;
  padding: 0.0em;
  background: #149dcc;
}
.cid-slKspU9ezy .divider-bottom {
  position: relative;
  padding: 0.0em;
  background: #4c5e6c;
}
.cid-slKspU9ezy .divider-top::before,
.cid-slKspU9ezy .divider-bottom::before,
.cid-slKspU9ezy .divider-top::after,
.cid-slKspU9ezy .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-slKspU9ezy .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-slKspU9ezy .divider-triangles::before {
  top: -50px;
}
.cid-slKspU9ezy .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-slKspU9ezy .divider-halfcircle::before {
  top: -50px;
}
.cid-slKspU9ezy .divider-multitriangles::before,
.cid-slKspU9ezy .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-slKspU9ezy .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #149dcc, 50px -50px 0 #149dcc;
}
.cid-sn5TAisezw {
  padding-top: 120px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/jumbotron.jpg");
}
.cid-t4OXl1G2Ej {
  padding-top: 105px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #2638dc, #000000);
}
.cid-t4OXl1G2Ej .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #cebfaf;
}
.cid-t4OXl1G2Ej .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4OXl1G2Ej .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4OXl1G2Ej .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4OXl1G2Ej .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4OXl1G2Ej .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4OXl1G2Ej .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4OXl1G2Ej .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4OXl1G2Ej .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4OXl1G2Ej .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4OXl1G2Ej .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4OXl1G2Ej .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4OXl1G2Ej .mbr-text {
  color: #232323;
}
.cid-t4OXl1G2Ej .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4OXl1G2Ej H2 {
  color: #232323;
}
.cid-t4OXl1G2Ej H4 {
  text-align: left;
}
.cid-t4OYkUlldu {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #2638dc, #2638dc);
}
.cid-t4OYkUlldu .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #ff3366;
}
.cid-t4OYkUlldu .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t4OYkUlldu .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t4OYkUlldu .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t4OYkUlldu .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t4OYkUlldu .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t4OYkUlldu .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t4OYkUlldu .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t4OYkUlldu .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t4OYkUlldu .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t4OYkUlldu .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t4OYkUlldu .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t4OYkUlldu .mbr-text {
  color: #073b4c;
}
.cid-t4OYkUlldu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4OYkUlldu H2 {
  color: #232323;
}
.cid-t4OYkUlldu H4 {
  text-align: left;
}
.cid-t9FFhf9uE3 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #2638dc, #2638dc);
}
.cid-t9FFhf9uE3 .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #ccb9f8;
}
.cid-t9FFhf9uE3 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-t9FFhf9uE3 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-t9FFhf9uE3 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-t9FFhf9uE3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-t9FFhf9uE3 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-t9FFhf9uE3 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-t9FFhf9uE3 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-t9FFhf9uE3 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-t9FFhf9uE3 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-t9FFhf9uE3 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-t9FFhf9uE3 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-t9FFhf9uE3 .mbr-text {
  color: #232323;
}
.cid-t9FFhf9uE3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t9FFhf9uE3 H2 {
  color: #232323;
}
.cid-t9FFhf9uE3 H4 {
  text-align: left;
}
.cid-taLrtc7NZl {
  padding-top: 0px;
  padding-bottom: 30px;
  position: relative;
  background: linear-gradient(0deg, #2638dc, #2638dc);
}
.cid-taLrtc7NZl .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #2441bb;
  background: #149dcc;
}
.cid-taLrtc7NZl .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-taLrtc7NZl .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-taLrtc7NZl .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taLrtc7NZl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taLrtc7NZl .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #2441bb;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taLrtc7NZl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taLrtc7NZl .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taLrtc7NZl .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taLrtc7NZl .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taLrtc7NZl .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taLrtc7NZl .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taLrtc7NZl .mbr-text {
  color: #232323;
}
.cid-taLrtc7NZl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taLrtc7NZl H2 {
  color: #232323;
}
.cid-taLrtc7NZl H4 {
  text-align: left;
}
.cid-tciEAlPGv7 .divider-top {
  position: relative;
  padding: 2.5em;
  background: #2638dc;
}
.cid-tciEAlPGv7 .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #154a5c;
}
.cid-tciEAlPGv7 .divider-top::before,
.cid-tciEAlPGv7 .divider-bottom::before,
.cid-tciEAlPGv7 .divider-top::after,
.cid-tciEAlPGv7 .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tciEAlPGv7 .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tciEAlPGv7 .divider-triangles::before {
  top: -50px;
}
.cid-tciEAlPGv7 .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tciEAlPGv7 .divider-halfcircle::before {
  top: -50px;
}
.cid-tciEAlPGv7 .divider-multitriangles::before,
.cid-tciEAlPGv7 .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tciEAlPGv7 .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #2638dc, 50px -50px 0 #2638dc;
}
.cid-sWp4BdNb78 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #154a5c;
}
.cid-sWp4BdNb78 P {
  color: #762af45;
}
.cid-sWp4BdNb78 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 20px 20px -20px #ffffff;
  margin: -50px auto 10px;
}
.cid-sWp4BdNb78 .mbr-text,
.cid-sWp4BdNb78 .mbr-section-btn {
  color: #ffffff;
}
.cid-sWp4BdNb78 H1 {
  color: #ffffff;
}
.cid-sXeiBSAgi5 {
  padding-top: 30px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #154a5c, #154a5c);
}
.cid-sXeiBSAgi5 .fondcolor {
  margin-top: 6px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #073b4c;
}
.cid-sXeiBSAgi5 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-sXeiBSAgi5 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-sXeiBSAgi5 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-sXeiBSAgi5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sXeiBSAgi5 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-sXeiBSAgi5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-sXeiBSAgi5 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-sXeiBSAgi5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sXeiBSAgi5 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sXeiBSAgi5 .mbr-text {
  color: #cccccc;
}
.cid-sXeiBSAgi5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sXeiBSAgi5 H2 {
  color: #232323;
}
.cid-sXeiBSAgi5 H4 {
  text-align: left;
}
.cid-sXeitprZfk {
  padding-top: 0px;
  padding-bottom: 45px;
  position: relative;
  background: linear-gradient(0deg, #154a5c, #154a5c);
}
.cid-sXeitprZfk .fondcolor {
  margin-top: 6px;
  border-radius: 8px;
  border: 3px solid #073b4c;
  background: #073b4c;
}
.cid-sXeitprZfk .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-sXeitprZfk .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-sXeitprZfk .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-sXeitprZfk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sXeitprZfk .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #073b4c;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-sXeitprZfk .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-sXeitprZfk .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-sXeitprZfk .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sXeitprZfk .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sXeitprZfk .mbr-text {
  color: #cccccc;
}
.cid-sXeitprZfk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sXeitprZfk H2 {
  color: #232323;
}
.cid-sXeitprZfk H4 {
  text-align: left;
}
.cid-tciDpPY2Xr .divider-top {
  position: relative;
  padding: 2.5em;
  background: #154a5c;
}
.cid-tciDpPY2Xr .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #4b9e1b;
}
.cid-tciDpPY2Xr .divider-top::before,
.cid-tciDpPY2Xr .divider-bottom::before,
.cid-tciDpPY2Xr .divider-top::after,
.cid-tciDpPY2Xr .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-tciDpPY2Xr .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-tciDpPY2Xr .divider-triangles::before {
  top: -50px;
}
.cid-tciDpPY2Xr .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-tciDpPY2Xr .divider-halfcircle::before {
  top: -50px;
}
.cid-tciDpPY2Xr .divider-multitriangles::before,
.cid-tciDpPY2Xr .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-tciDpPY2Xr .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #154a5c, 50px -50px 0 #154a5c;
}
.cid-tcbaUX4K24 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4b9e1b;
}
.cid-tcbaUX4K24 P {
  color: #762af45;
}
.cid-tcbaUX4K24 hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #ffffff;
  box-shadow: 0 20px 20px -20px #ffffff;
  margin: -50px auto 10px;
}
.cid-tcbaUX4K24 .mbr-text,
.cid-tcbaUX4K24 .mbr-section-btn {
  color: #ffffff;
}
.cid-tcbaUX4K24 H1 {
  color: #ffffff;
}
.cid-tcIMu9a0e4 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #4b9e1b, #4b9e1b);
}
.cid-tcIMu9a0e4 .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #257328;
}
.cid-tcIMu9a0e4 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-tcIMu9a0e4 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-tcIMu9a0e4 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-tcIMu9a0e4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tcIMu9a0e4 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-tcIMu9a0e4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-tcIMu9a0e4 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-tcIMu9a0e4 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-tcIMu9a0e4 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-tcIMu9a0e4 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tcIMu9a0e4 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tcIMu9a0e4 .mbr-text {
  color: #ffffff;
}
.cid-tcIMu9a0e4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcIMu9a0e4 H2 {
  color: #232323;
}
.cid-tcIMu9a0e4 H4 {
  text-align: left;
}
.cid-tcIO47QuX2 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #4b9e1b, #4b9e1b);
}
.cid-tcIO47QuX2 .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #257328;
}
.cid-tcIO47QuX2 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-tcIO47QuX2 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-tcIO47QuX2 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-tcIO47QuX2 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tcIO47QuX2 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-tcIO47QuX2 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-tcIO47QuX2 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-tcIO47QuX2 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.4);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.4);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.4);
  transition: all 200ms ease-in;
  transform: scale(1.4);
}
.cid-tcIO47QuX2 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-tcIO47QuX2 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tcIO47QuX2 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tcIO47QuX2 .mbr-text {
  color: #ffffff;
}
.cid-tcIO47QuX2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcIO47QuX2 H2 {
  color: #232323;
}
.cid-tcIO47QuX2 H4 {
  text-align: left;
}
.cid-sW9jybqcHr .divider-top {
  position: relative;
  padding: 2.5em;
  background: #4b9e1b;
}
.cid-sW9jybqcHr .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #b2ccd2;
}
.cid-sW9jybqcHr .divider-top::before,
.cid-sW9jybqcHr .divider-bottom::before,
.cid-sW9jybqcHr .divider-top::after,
.cid-sW9jybqcHr .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-sW9jybqcHr .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-sW9jybqcHr .divider-triangles::before {
  top: -50px;
}
.cid-sW9jybqcHr .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-sW9jybqcHr .divider-halfcircle::before {
  top: -50px;
}
.cid-sW9jybqcHr .divider-multitriangles::before,
.cid-sW9jybqcHr .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-sW9jybqcHr .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #4b9e1b, 50px -50px 0 #4b9e1b;
}
.cid-sWpjhGXl7T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b2ccd2;
}
.cid-sWpjhGXl7T P {
  color: #767676;
}
.cid-sWpjhGXl7T hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sWpjhGXl7T .mbr-text,
.cid-sWpjhGXl7T .mbr-section-btn {
  color: #232323;
}
.cid-sWpjhGXl7T H1 {
  color: #232323;
}
.cid-t41Mq8wz2A {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/meeting-tdw3drehberg-office-vfv.2022-02-08-19-36.2022-07-08-23-26.gif");
}
.cid-t41Mq8wz2A h3 {
  font-weight: 300;
}
.cid-t41Mq8wz2A .card-img {
  width: initial;
}
.cid-t41Mq8wz2A .card-img .mbr-iconfont {
  font-size: 52px;
  padding-right: 1rem;
}
.cid-t41Mq8wz2A .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  min-height: 100%;
}
.cid-t41Mq8wz2A .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t41Mq8wz2A .mbr-section-subtitle {
  color: #000000;
}
.cid-t41Mq8wz2A .mbr-text {
  color: #e5feff;
  text-align: left;
}
.cid-t41Mq8wz2A .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
}
.cid-t41Mq8wz2A .mbr-al-i-c {
  align-items: center;
}
.cid-t41Mq8wz2A .zoomEffect_1 img {
  max-width: 100%;
  height: auto;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.cid-t41Mq8wz2A .zoomEffect_1:hover img {
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
.cid-t41Mq8wz2A .mbr-section-title {
  color: #232323;
}
.cid-taW6wQ2ESV {
  padding-top: 45px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #b2ccd2, #b2ccd2);
}
.cid-taW6wQ2ESV .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-taW6wQ2ESV .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-taW6wQ2ESV .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-taW6wQ2ESV .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taW6wQ2ESV .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taW6wQ2ESV .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taW6wQ2ESV .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taW6wQ2ESV .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taW6wQ2ESV .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taW6wQ2ESV .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taW6wQ2ESV .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taW6wQ2ESV .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taW6wQ2ESV .mbr-text {
  color: #232323;
}
.cid-taW6wQ2ESV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taW6wQ2ESV H2 {
  color: #232323;
}
.cid-taW6wQ2ESV H4 {
  text-align: left;
}
.cid-taW36cCR3m {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #b2ccd2, #b2ccd2);
}
.cid-taW36cCR3m .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-taW36cCR3m .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-taW36cCR3m .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-taW36cCR3m .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taW36cCR3m .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taW36cCR3m .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taW36cCR3m .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taW36cCR3m .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taW36cCR3m .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taW36cCR3m .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taW36cCR3m .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taW36cCR3m .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taW36cCR3m .mbr-text {
  color: #232323;
}
.cid-taW36cCR3m .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taW36cCR3m H2 {
  color: #232323;
}
.cid-taW36cCR3m H4 {
  text-align: left;
}
.cid-taWE5GU6ZR {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #b2ccd2, #b2ccd2);
}
.cid-taWE5GU6ZR .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-taWE5GU6ZR .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-taWE5GU6ZR .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-taWE5GU6ZR .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taWE5GU6ZR .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taWE5GU6ZR .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taWE5GU6ZR .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taWE5GU6ZR .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taWE5GU6ZR .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taWE5GU6ZR .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taWE5GU6ZR .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taWE5GU6ZR .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taWE5GU6ZR .mbr-text {
  color: #232323;
}
.cid-taWE5GU6ZR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taWE5GU6ZR H2 {
  color: #232323;
}
.cid-taWE5GU6ZR H4 {
  text-align: left;
}
.cid-taWFlBeti4 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #b2ccd2, #b2ccd2);
}
.cid-taWFlBeti4 .fondcolor {
  margin-top: 0px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-taWFlBeti4 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-taWFlBeti4 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-taWFlBeti4 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taWFlBeti4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taWFlBeti4 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taWFlBeti4 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taWFlBeti4 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taWFlBeti4 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taWFlBeti4 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taWFlBeti4 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taWFlBeti4 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taWFlBeti4 .mbr-text {
  color: #232323;
}
.cid-taWFlBeti4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taWFlBeti4 H2 {
  color: #232323;
}
.cid-taWFlBeti4 H4 {
  text-align: left;
}
.cid-taWFD9XOp5 {
  padding-top: 0px;
  padding-bottom: 15px;
  position: relative;
  background: linear-gradient(0deg, #b2ccd2, #b2ccd2);
}
.cid-taWFD9XOp5 .fondcolor {
  margin-top: 0px;
  border-radius: 7px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-taWFD9XOp5 .card {
  border-radius: 7px;
  margin-bottom: -1px;
}
.cid-taWFD9XOp5 .card .card-header {
  border-radius: 7px;
  border: 0px;
  padding: 0;
}
.cid-taWFD9XOp5 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-taWFD9XOp5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-taWFD9XOp5 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 7px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-taWFD9XOp5 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-taWFD9XOp5 .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-taWFD9XOp5 .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-taWFD9XOp5 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-taWFD9XOp5 .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-taWFD9XOp5 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-taWFD9XOp5 .mbr-text {
  color: #232323;
}
.cid-taWFD9XOp5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taWFD9XOp5 H2 {
  color: #232323;
}
.cid-taWFD9XOp5 H4 {
  text-align: left;
}
.cid-t30VlUa46W .divider-top {
  position: relative;
  padding: 2.5em;
  background: #b2ccd2;
}
.cid-t30VlUa46W .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #ff3366;
}
.cid-t30VlUa46W .divider-top::before,
.cid-t30VlUa46W .divider-bottom::before,
.cid-t30VlUa46W .divider-top::after,
.cid-t30VlUa46W .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-t30VlUa46W .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-t30VlUa46W .divider-triangles::before {
  top: -50px;
}
.cid-t30VlUa46W .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-t30VlUa46W .divider-halfcircle::before {
  top: -50px;
}
.cid-t30VlUa46W .divider-multitriangles::before,
.cid-t30VlUa46W .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-t30VlUa46W .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #b2ccd2, 50px -50px 0 #b2ccd2;
}
.cid-sW9jAM6gRu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff3366;
}
.cid-sW9jAM6gRu P {
  color: #767676;
}
.cid-sW9jAM6gRu hr {
  border: none;
  height: 50px;
  width: 90%;
  margin-top: 0;
  border-bottom: 1px solid #1f1209;
  box-shadow: 0 20px 20px -20px #333333;
  margin: -50px auto 10px;
}
.cid-sW9jAM6gRu .mbr-text,
.cid-sW9jAM6gRu .mbr-section-btn {
  color: #232323;
}
.cid-sW9jAM6gRu H1 {
  color: #232323;
}
.cid-tb8DW5G2LY {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/img-4227-2000x478.jpg");
}
.cid-tb8DW5G2LY body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  background: #ffffff url(https://tinyurl.com/f3kamwmn) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.cid-tb8DW5G2LY .marquee {
  pointer-events: none;
  user-select: none;
  transform: skewY(-15deg);
  color: #94e5f3;
}
.cid-tb8DW5G2LY .line {
  display: flex;
}
.cid-tb8DW5G2LY .text {
  font-size: 60px;
  font-family: sans-serif;
  font-style: italic bold;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -3px;
  white-space: nowrap;
  text-transform: uppercase;
  animation: marquee 25s linear infinite;
}
.cid-tb8DW5G2LY .line:nth-child(2) {
  transform: translateX(-100%);
}
.cid-tb8DW5G2LY .line:nth-child(3) {
  transform: translateX(-200%);
}
.cid-tb8DW5G2LY .line:nth-child(4) {
  transform: translateX(-300%);
}
.cid-tb8DW5G2LY .line:nth-child(5) {
  transform: translateX(-400%);
}
.cid-tb8DW5G2LY .line:nth-child(even) > p {
  animation-direction: reverse;
}
.cid-tb8DW5G2LY .line:nth-child(2) > p {
  animation-duration: 50s;
}
.cid-tb8DW5G2LY .line:nth-child(3) > p {
  animation-duration: 60s;
}
.cid-tb8DW5G2LY .line:nth-child(4) > p {
  animation-duration: 70s;
}
.cid-tb8DW5G2LY .line:nth-child(5) > p {
  animation-duration: 80s;
}
@media (prefers-reduced-motion: reduce) {
  .cid-tb8DW5G2LY *,
  .cid-tb8DW5G2LY *::before,
  .cid-tb8DW5G2LY *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}
.cid-t04Nw8LqFs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
@media (min-width: 992px) {
  .cid-t04Nw8LqFs .mbr-figure {
    float: right;
    padding: 20px;
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .cid-t04Nw8LqFs .mbr-figure {
    float: right;
    padding: 20px;
    padding-right: 0px;
  }
}
.cid-t04Nw8LqFs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-t04Nw8LqFs .mbr-figure img {
  border-radius: 11px;
}
.cid-t04Nw8LqFs .mbr-figure img {
  transform: rotate(-14deg);
  box-shadow: 9px 9px 7px 0 #ff3366;
}
.cid-t04Nw8LqFs .text-figure-box {
  background-color: #ff3366;
}
.cid-t04Nw8LqFs P {
  color: #000000;
}
.cid-ts5OamBDdI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
@media (min-width: 992px) {
  .cid-ts5OamBDdI .mbr-figure {
    float: right;
    padding: 20px;
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .cid-ts5OamBDdI .mbr-figure {
    float: right;
    padding: 20px;
    padding-right: 0px;
  }
}
.cid-ts5OamBDdI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ts5OamBDdI .mbr-figure img {
  border-radius: 11px;
}
.cid-ts5OamBDdI .mbr-figure img {
  transform: rotate(8deg);
  box-shadow: 8px 8px 16px 0 #232323;
}
.cid-ts5OamBDdI .text-figure-box {
  background-color: #ff3366;
}
.cid-ts5OamBDdI P {
  color: #000000;
}
.cid-sWpf0ShHWH .divider-top {
  position: relative;
  padding: 2.5em;
  background: #ff3366;
}
.cid-sWpf0ShHWH .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #e4d295;
}
.cid-sWpf0ShHWH .divider-top::before,
.cid-sWpf0ShHWH .divider-bottom::before,
.cid-sWpf0ShHWH .divider-top::after,
.cid-sWpf0ShHWH .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-sWpf0ShHWH .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-sWpf0ShHWH .divider-triangles::before {
  top: -50px;
}
.cid-sWpf0ShHWH .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-sWpf0ShHWH .divider-halfcircle::before {
  top: -50px;
}
.cid-sWpf0ShHWH .divider-multitriangles::before,
.cid-sWpf0ShHWH .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-sWpf0ShHWH .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #ff3366, 50px -50px 0 #ff3366;
}
.cid-sWoPVgYPP0 {
  padding-top: 0px;
  padding-bottom: 0px;
  position: relative;
  background: linear-gradient(0deg, #232323, #e4d295);
}
.cid-sWoPVgYPP0 .fondcolor {
  margin-top: 6px;
  border-radius: 8px;
  border: 3px solid #232323;
  background: #e4d295;
}
.cid-sWoPVgYPP0 .card {
  border-radius: 8px;
  margin-bottom: -1px;
}
.cid-sWoPVgYPP0 .card .card-header {
  border-radius: 8px;
  border: 0px;
  padding: 0;
}
.cid-sWoPVgYPP0 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-sWoPVgYPP0 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sWoPVgYPP0 .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 8px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-sWoPVgYPP0 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-sWoPVgYPP0 .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-sWoPVgYPP0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sWoPVgYPP0 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sWoPVgYPP0 .mbr-text {
  color: #767676;
}
.cid-sWoPVgYPP0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWoPVgYPP0 H2 {
  color: #232323;
}
.cid-sWoPVgYPP0 H4 {
  text-align: left;
}
.cid-u0mQvRHlqt {
  padding-top: 0px;
  padding-bottom: 15px;
  position: relative;
  background: linear-gradient(0deg, #232323, #232323);
}
.cid-u0mQvRHlqt .fondcolor {
  margin-top: 0px;
  border-radius: 7px;
  border: 3px solid #232323;
  background: #1f86aa;
}
.cid-u0mQvRHlqt .card {
  border-radius: 7px;
  margin-bottom: -1px;
}
.cid-u0mQvRHlqt .card .card-header {
  border-radius: 7px;
  border: 0px;
  padding: 0;
}
.cid-u0mQvRHlqt .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: 0;
  line-height: normal;
  align-items: center;
}
.cid-u0mQvRHlqt .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-u0mQvRHlqt .card .card-header a.panel-title h4 {
  padding: 0.5rem 2rem;
  border: 3px solid #232323;
  margin-bottom: -1px;
  border-radius: 7px;
  background-color: #ffffff;
  display: -webkit-flex;
}
.cid-u0mQvRHlqt .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  font-size: 25px;
}
.cid-u0mQvRHlqt .zoomEffect_2 {
  display: inline-block;
  border: 0;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1);
  transition: all 200ms ease-in;
  transform: scale(1);
}
.cid-u0mQvRHlqt .zoomEffect_2:hover {
  box-shadow: 0px 0px 150px #000000;
  z-index: 2;
  -webkit-transition: all 200ms ease-in;
  -webkit-transform: scale(1.2);
  -ms-transition: all 200ms ease-in;
  -ms-transform: scale(1.2);
  -moz-transition: all 200ms ease-in;
  -moz-transform: scale(1.2);
  transition: all 200ms ease-in;
  transform: scale(1.2);
}
.cid-u0mQvRHlqt .mbr-figure {
  padding-bottom: 2rem;
  padding-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-u0mQvRHlqt .mbr-figure {
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u0mQvRHlqt .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-u0mQvRHlqt .mbr-text {
  color: #232323;
}
.cid-u0mQvRHlqt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0mQvRHlqt H2 {
  color: #232323;
}
.cid-u0mQvRHlqt H4 {
  text-align: left;
}
.cid-sljzY9pbS5 .divider-top {
  position: relative;
  padding: 2.5em;
  background: #232323;
}
.cid-sljzY9pbS5 .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #149dcc;
}
.cid-sljzY9pbS5 .divider-top::before,
.cid-sljzY9pbS5 .divider-bottom::before,
.cid-sljzY9pbS5 .divider-top::after,
.cid-sljzY9pbS5 .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-sljzY9pbS5 .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-sljzY9pbS5 .divider-triangles::before {
  top: -50px;
}
.cid-sljzY9pbS5 .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-sljzY9pbS5 .divider-halfcircle::before {
  top: -50px;
}
.cid-sljzY9pbS5 .divider-multitriangles::before,
.cid-sljzY9pbS5 .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-sljzY9pbS5 .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #232323, 50px -50px 0 #232323;
}
.cid-rrHiWX80i2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/kontakt-tdw3drehberg-bckgrd.gif");
}
.cid-rrHiWX80i2 .mbr-iconfont {
  font-size: 60px;
  padding-right: 1rem;
}
.cid-rrHiWX80i2 .input {
  margin-bottom: 15px;
}
.cid-rrHiWX80i2 .map {
  width: 100%;
  height: 30rem;
}
.cid-rrHiWX80i2 .map iframe {
  width: inherit;
  height: 100%;
}
.cid-rrHiWX80i2 .icon-block {
  margin-bottom: 10px;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rrHiWX80i2 .icon-block .icon-block__icon {
  display: inline-block;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rrHiWX80i2 .icon-block .icon-block__title {
  display: inline-block;
  align-self: center;
  -webkit-align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-rrHiWX80i2 .mbr-text {
  color: #000000;
}
.cid-rrHiWX80i2 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rrHiWX80i2 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rrHiWX80i2 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rrHiWX80i2 .google-map {
  height: 25rem;
  position: relative;
}
.cid-rrHiWX80i2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rrHiWX80i2 .google-map [data-state-details] {
  color: #ffffff;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rrHiWX80i2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rrHiWX80i2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-rrHiWX80i2 h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-rrHiWX80i2 .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rrHiWX80i2 .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-rrHiWX80i2 SPAN {
  color: #767676;
}
.cid-rrHiWX80i2 DIV {
  color: #232323;
}
.cid-rrHiWX80i2 H2 {
  color: #232323;
  text-align: left;
}
.cid-rrHiWX80i2 H5 {
  color: #000000;
}
.cid-rrHiWX80i2 H4 {
  color: #000000;
}
.cid-sWRXlA30rq .divider-top {
  position: relative;
  padding: 2.5em;
  background: #149dcc;
}
.cid-sWRXlA30rq .divider-bottom {
  position: relative;
  padding: 2.5em;
  background: #2e2e2e;
}
.cid-sWRXlA30rq .divider-top::before,
.cid-sWRXlA30rq .divider-bottom::before,
.cid-sWRXlA30rq .divider-top::after,
.cid-sWRXlA30rq .divider-bottom::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.cid-sWRXlA30rq .divider-triangles::after {
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  bottom: -50px;
  z-index: 10;
  background: inherit;
}
.cid-sWRXlA30rq .divider-triangles::before {
  top: -50px;
}
.cid-sWRXlA30rq .divider-halfcircle::after {
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -50px;
}
.cid-sWRXlA30rq .divider-halfcircle::before {
  top: -50px;
}
.cid-sWRXlA30rq .divider-multitriangles::before,
.cid-sWRXlA30rq .divider-multitriangles::after {
  left: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}
.cid-sWRXlA30rq .divider-multitriangles::after {
  bottom: -25px;
  z-index: 10;
  background: inherit;
  box-shadow: -50px 50px 0 #149dcc, 50px -50px 0 #149dcc;
}
.cid-riVnlQ6mB7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #2e2e2e;
}
.cid-mzkrSKO1p5 .mwHidden {
  display: none !important;
  height: 0 !important;
}
.cid-mzkrSKO1p5 .mwVisible {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5vh;
  background: #232323;
  font-family: "Arial";
  color: #fff;
  pointer-events: none;
}
.cid-mzkrSKO1p5 .mwVisible .mwCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 -2px 0px #202020, 0px 1px 0px #121212, 0px 2px 0px #111111, 0px 3px 0px #101010, 0px 4px 0px #090909, 0px 5px 0px #080808, 0px 6px 0px #070707, 0px 8px 0px #060606, 0px 9px 0px #050505, 0px 10px 0px #040404, 0px 11px 0px #030303, 0px 12px 0px #020202, 0px 13px 10px #010101, 0px 14px 10px #000000;
  outline-offset: -2vh;
  outline: 2px solid #e43f3f;
  padding: 4vh;
  text-align: center;
}
.cid-mzkrSKO1p5 .mwVisible .mwCard h2,
.cid-mzkrSKO1p5 .mwVisible .mwCard h3 {
  font-weight: 700;
}
.cid-mzkrSKO1p5 .mwVisible .mwCard text {
  font-family: Arial;
  font-size: 61px;
  font-weight: 900;
}
.cid-mzkrSKO1p5 #mwIntro {
  position: fixed;
  z-index: 1000000;
}
.cid-mzkrSKO1p5 .intro {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #232323;
  animation: slide-out-container 4s cubic-bezier(0.97, 0.01, 0.36, 0.99) 2.8s;
  animation-fill-mode: forwards;
}
.cid-mzkrSKO1p5 .intro::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  background-size: 400%;
  width: calc(102%);
  height: calc(102%);
  z-index: -1;
  animation: animated-gradient 15s linear infinite;
  filter: blur(20px);
  background-image: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000) !important;
}
.cid-mzkrSKO1p5 .intro-container {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 6vh;
}
.cid-mzkrSKO1p5 .text-6 {
  background-image: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000) !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400%;
  animation: blink 0.8s linear 0.4s, blink 0.8s linear 2.5s, animated-gradient 15s linear infinite, slide-out 1s linear 3.2s;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-1,
.cid-mzkrSKO1p5 .text-2,
.cid-mzkrSKO1p5 .text-3,
.cid-mzkrSKO1p5 .text-4,
.cid-mzkrSKO1p5 .text-5,
.cid-mzkrSKO1p5 .text-7,
.cid-mzkrSKO1p5 .text-8,
.cid-mzkrSKO1p5 .text-9,
.cid-mzkrSKO1p5 .text-10,
.cid-mzkrSKO1p5 .text-11 {
  background-image: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000) !important;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  background-size: 400%;
  color: #232323;
}
@keyframes blink {
  0% {
    opacity: 0%;
  }
  1% {
    opacity: 100%;
  }
  99% {
    opacity: 100%;
  }
  100% {
    opacity: 0;
  }
}
.cid-mzkrSKO1p5 .text-1 {
  animation: blink 0.8s linear 0.9s, blink 0.8s linear 2s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-2 {
  animation: blink 0.8s linear 0.8s, blink 0.8s linear 2.1s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-3 {
  animation: blink 0.8s linear 0.7s, blink 0.8s linear 2.2s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-4 {
  animation: blink 0.8s linear 0.6s, blink 0.8s linear 2.3s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-5 {
  animation: blink 0.8s linear 0.5s, blink 0.8s linear 2.4s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-7 {
  animation: blink 0.8s linear 0.5s, blink 0.8s linear 2.4s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-8 {
  animation: blink 0.8s linear 0.6s, blink 0.8s linear 2.3s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-9 {
  animation: blink 0.8s linear 0.7s, blink 0.8s linear 2.2s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-10 {
  animation: blink 0.8s linear 0.8s, blink 0.8s linear 2.1s, animated-gradient 15s linear infinite;
  opacity: 0;
}
.cid-mzkrSKO1p5 .text-11 {
  animation: blink 0.8s linear 0.9s, blink 0.8s linear 2s, animated-gradient 15s linear infinite;
  opacity: 0;
}
@keyframes slide-out {
  0% {
    opacity: 0%;
  }
  1% {
    opacity: 100%;
  }
  19% {
    opacity: 100%;
  }
  20% {
    opacity: 0%;
  }
  39% {
    opacity: 0%;
  }
  40% {
    opacity: 100%;
  }
  59% {
    opacity: 100%;
  }
  60% {
    opacity: 0%;
  }
  79% {
    opacity: 0%;
  }
  80% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes slide-out-container {
  0% {
    height: 100vh;
  }
  40% {
    height: 100vh;
  }
  100% {
    height: 1%;
  }
}
@keyframes animated-gradient {
  from {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  to {
    background-position: 0 0;
  }
}
@media (max-width: 500px) {
  .cid-mzkrSKO1p5 .w-intro-container {
    font-size: 4vh;
    line-height: 9vh;
  }
  .cid-mzkrSKO1p5 .text-1,
  .cid-mzkrSKO1p5 .text-2,
  .cid-mzkrSKO1p5 .text-3,
  .cid-mzkrSKO1p5 .text-4,
  .cid-mzkrSKO1p5 .text-5,
  .cid-mzkrSKO1p5 .text-7,
  .cid-mzkrSKO1p5 .text-8,
  .cid-mzkrSKO1p5 .text-9,
  .cid-mzkrSKO1p5 .text-10,
  .cid-mzkrSKO1p5 .text-11 {
    -webkit-text-stroke: 1px transparent;
  }
}
.cid-LrGfjyD2AU .bg-global {
  background-color: #4479d9;
}
.cid-LrGfjyD2AU .bgtop {
  background-color: #4479d9;
  padding-top: 0%;
  padding-bottom: 0%;
}
.cid-LrGfjyD2AU .mapcountry {
  display: flex;
  padding: auto !important;
  float: right !important;
}
.cid-LrGfjyD2AU .flaglng {
  padding-top: 10px;
  padding-left: 10px;
}
.cid-LrGfjyD2AU DIV {
  color: #ffffff;
}
.cid-LrGfjyD2AU .navbar-caption-wrap {
  display: flex;
  float: left;
  position: relative;
  padding-top: 15px;
  padding-left: 15px;
}
.cid-LrGfjyD2AU .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-LrGfjyD2AU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-LrGfjyD2AU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-LrGfjyD2AU .dropdown-item:hover,
.cid-LrGfjyD2AU .dropdown-item:focus {
  background: #0c2cb0 !important;
  color: white !important;
}
.cid-LrGfjyD2AU .dropdown-item:hover span {
  color: white;
}
.cid-LrGfjyD2AU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-LrGfjyD2AU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-LrGfjyD2AU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-LrGfjyD2AU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-LrGfjyD2AU .nav-link {
  position: relative;
}
.cid-LrGfjyD2AU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-LrGfjyD2AU .container {
    flex-wrap: nowrap;
  }
}
.cid-LrGfjyD2AU .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
  padding-bottom: 10px;
}
.cid-LrGfjyD2AU .dropdown-menu,
.cid-LrGfjyD2AU .navbar.opened {
  background: #082458 !important;
}
.cid-LrGfjyD2AU .nav-item:focus,
.cid-LrGfjyD2AU .nav-link:focus {
  outline: none;
}
.cid-LrGfjyD2AU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-LrGfjyD2AU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-LrGfjyD2AU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-LrGfjyD2AU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-LrGfjyD2AU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-LrGfjyD2AU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-LrGfjyD2AU .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.cid-LrGfjyD2AU .navbar:not(.navbar-short) {
  background: #082458;
}
.cid-LrGfjyD2AU .navbar.opened {
  transition: all 0.3s;
}
.cid-LrGfjyD2AU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-LrGfjyD2AU .navbar .navbar-logo img {
  width: auto;
}
.cid-LrGfjyD2AU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-LrGfjyD2AU .navbar.collapsed {
  justify-content: center;
}
.cid-LrGfjyD2AU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-LrGfjyD2AU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-LrGfjyD2AU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-LrGfjyD2AU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-LrGfjyD2AU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-LrGfjyD2AU .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-LrGfjyD2AU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-LrGfjyD2AU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-LrGfjyD2AU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-LrGfjyD2AU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-LrGfjyD2AU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-LrGfjyD2AU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-LrGfjyD2AU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-LrGfjyD2AU .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-LrGfjyD2AU .navbar .navbar-logo img {
    height: 3rem !important;
    float: left;
    position: relative;
    display: flex;
    padding-right: 15px;
  }
  .cid-LrGfjyD2AU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-LrGfjyD2AU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-LrGfjyD2AU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-LrGfjyD2AU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-LrGfjyD2AU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-LrGfjyD2AU .navbar.navbar-short {
  min-height: 60px;
}
.cid-LrGfjyD2AU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-LrGfjyD2AU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-LrGfjyD2AU .navbar-brand {
  min-height: 70px;
  display: flex;
  float: left;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-LrGfjyD2AU .navbar-brand .navbar-caption {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  float: left;
  position: relative;
  line-height: inherit !important;
}
.cid-LrGfjyD2AU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-LrGfjyD2AU .dropdown-item.active,
.cid-LrGfjyD2AU .dropdown-item:active {
  background-color: transparent;
}
.cid-LrGfjyD2AU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-LrGfjyD2AU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-LrGfjyD2AU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-LrGfjyD2AU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #082458;
}
.cid-LrGfjyD2AU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-LrGfjyD2AU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-LrGfjyD2AU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-LrGfjyD2AU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-LrGfjyD2AU .bouton {
  padding: 30px 55px;
  margin-top: -10px;
  margin-bottom: -10px;
}
.cid-LrGfjyD2AU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-LrGfjyD2AU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-LrGfjyD2AU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-LrGfjyD2AU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-LrGfjyD2AU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-LrGfjyD2AU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-LrGfjyD2AU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-LrGfjyD2AU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-LrGfjyD2AU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-LrGfjyD2AU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-LrGfjyD2AU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-LrGfjyD2AU .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-LrGfjyD2AU .navbar {
    border-bottom: 1px solid #fff;
    height: 70px;
  }
  .cid-LrGfjyD2AU .navbar.opened {
    height: auto;
  }
  .cid-LrGfjyD2AU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-LrGfjyD2AU .fixed-top {
  top: -30px;
  transform: translateY(30px);
  transition: transform .3s;
}
@media only screen and (max-width: 600px) {
  .cid-LrGfjyD2AU .mobilesize {
    display: flex;
    width: 100%;
  }
  .cid-LrGfjyD2AU .bouton {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
