.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.76rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.54rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0291c2 !important;
}
.bg-success {
  background-color: #51545f !important;
}
.bg-info {
  background-color: #0291c2 !important;
}
.bg-warning {
  background-color: #00588f !important;
}
.bg-danger {
  background-color: #efefef !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0291c2 !important;
  border-color: #0291c2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #01516c !important;
  border-color: #01516c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #01516c !important;
  border-color: #01516c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fa603c !important;
  border-color: #fa603c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #da2e06 !important;
  border-color: #da2e06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #da2e06 !important;
  border-color: #da2e06 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0291c2 !important;
  border-color: #0291c2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #01516c !important;
  border-color: #01516c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #01516c !important;
  border-color: #01516c !important;
}
.btn-success,
.btn-success:active {
  background-color: #51545f !important;
  border-color: #51545f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #292b30 !important;
  border-color: #292b30 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #292b30 !important;
  border-color: #292b30 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #00588f !important;
  border-color: #00588f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #002338 !important;
  border-color: #002338 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #002338 !important;
  border-color: #002338 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #efefef !important;
  border-color: #efefef !important;
  color: #707070 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #707070 !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0291c2;
  color: #0291c2;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #01516c !important;
  background-color: transparent!important;
  border-color: #01516c !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0291c2 !important;
  border-color: #0291c2 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fa603c;
  color: #fa603c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #da2e06 !important;
  background-color: transparent!important;
  border-color: #da2e06 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fa603c !important;
  border-color: #fa603c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #0291c2;
  color: #0291c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #01516c !important;
  background-color: transparent!important;
  border-color: #01516c !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0291c2 !important;
  border-color: #0291c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #51545f;
  color: #51545f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #292b30 !important;
  background-color: transparent!important;
  border-color: #292b30 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #51545f !important;
  border-color: #51545f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #00588f;
  color: #00588f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #002338 !important;
  background-color: transparent!important;
  border-color: #002338 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #00588f !important;
  border-color: #00588f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #efefef;
  color: #efefef;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c4c4c4 !important;
  background-color: transparent!important;
  border-color: #c4c4c4 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0291c2 !important;
}
.text-secondary {
  color: #fa603c !important;
}
.text-success {
  color: #51545f !important;
}
.text-info {
  color: #0291c2 !important;
}
.text-warning {
  color: #00588f !important;
}
.text-danger {
  color: #efefef !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #01465d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cb2b05 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #222328 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #01465d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #001929 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #bcbcbc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0291c2;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0291c2;
}
.alert-warning {
  background-color: #00588f;
}
.alert-danger {
  background-color: #efefef;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0291c2;
  border-color: #0291c2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0291c2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #46cefd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #9093a0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #46cefd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #10a3ff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0291c2 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #0291c2;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0291c2;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0291c2;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0291c2;
  border-bottom-color: #0291c2;
}
.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: #0291c2 !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: #fa603c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230291c2' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-urQyQQ0vbm .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-urQyQQ0vbm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-urQyQQ0vbm .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-urQyQQ0vbm .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-urQyQQ0vbm .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.show,
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-urQyQQ0vbm .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-urQyQQ0vbm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urQyQQ0vbm .navbar {
    flex-wrap: nowrap;
  }
  .cid-urQyQQ0vbm .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-urQyQQ0vbm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.show,
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-urQyQQ0vbm .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-urQyQQ0vbm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-urQyQQ0vbm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-urQyQQ0vbm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-urQyQQ0vbm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-urQyQQ0vbm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urQyQQ0vbm .dropdown-item.active,
.cid-urQyQQ0vbm .dropdown-item:active {
  background-color: transparent;
}
.cid-urQyQQ0vbm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urQyQQ0vbm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urQyQQ0vbm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urQyQQ0vbm .navbar-buttons {
  text-align: center;
}
.cid-urQyQQ0vbm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00588f;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-urQyQQ0vbm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-urQyQQ0vbm a.nav-link:focus {
  outline: none;
}
.cid-urQyQQ0vbm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-urQyQQ0vbm .nav-link:hover,
.cid-urQyQQ0vbm .dropdown-item:hover {
  color: #fa603c !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-urQwfGfrzr {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/krankentaggeld-unfalltaggeld-schweiz-1-1920x1095.jpg");
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
}
.cid-urQwfGfrzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-urQwfGfrzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1024px) {
  .cid-urQwfGfrzr {
    min-height: 750px;
  }
}
.cid-urQwfGfrzr .mbr-section-title {
  color: #00588f;
}
.cid-urQwfGfrzr .mbr-section-subtitle {
  color: #00588f;
  margin-top: 16px;
}
.cid-urQwfGfrzr .mbr-text {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-urQwfGfrzr .mbr-section-btn {
  margin-top: 18px;
}
.cid-u58hVYTkYp {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-u58hVYTkYp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u58hVYTkYp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u58hVYTkYp .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-u58hVYTkYp .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-u58hVYTkYp .row {
  flex-direction: row-reverse;
}
.cid-u58hVYTkYp .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-u58hVYTkYp .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u58hVYTkYp img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-u58hVYTkYp img {
    transform: rotate(-5deg);
  }
}
.cid-u58hVYTkYp .mbr-section-title {
  text-align: center;
  color: #00588f;
}
.cid-u58hVYTkYp .mbr-section-subtitle {
  text-align: center;
  color: #00588f;
}
.cid-u58hVYTkYp .mbr-text,
.cid-u58hVYTkYp .mbr-section-btn {
  color: #00588f;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-u58h2tbKpi {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-u58h2tbKpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-u58h2tbKpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u58h2tbKpi .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-u58h2tbKpi .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-u58h2tbKpi .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-u58h2tbKpi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u58h2tbKpi img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-u58h2tbKpi img {
    transform: rotate(-5deg);
  }
}
.cid-u58h2tbKpi .mbr-section-title {
  text-align: center;
  color: #fa603c;
}
.cid-u58h2tbKpi .mbr-section-subtitle {
  text-align: center;
  color: #00588f;
}
.cid-u58h2tbKpi .mbr-text,
.cid-u58h2tbKpi .mbr-section-btn {
  color: #00588f;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-u58jaaR6y3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-u58jaaR6y3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u58jaaR6y3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u58jaaR6y3 .arrow {
  font-size: 3rem;
  color: #ffffff;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-u58jaaR6y3 .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-u58jaaR6y3 .row {
  flex-direction: row-reverse;
}
.cid-u58jaaR6y3 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-u58jaaR6y3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u58jaaR6y3 img {
  border-radius: 2rem;
}
@media (min-width: 992px) {
  .cid-u58jaaR6y3 img {
    transform: rotate(-5deg);
  }
}
.cid-u58jaaR6y3 .mbr-section-title {
  text-align: center;
  color: #fa603c;
}
.cid-u58jaaR6y3 .mbr-section-subtitle {
  text-align: center;
  color: #00588f;
}
.cid-u58jaaR6y3 .mbr-text,
.cid-u58jaaR6y3 .mbr-section-btn {
  color: #00588f;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-tImEjxHpBA {
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #00588f;
  background-position: initial !important;
}
.cid-tImEjxHpBA .card-text {
  padding-top: 35px;
}
.cid-tImEjxHpBA .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tImEjxHpBA .mbr-section-title {
  color: #ffffff;
  text-align: left;
  margin-bottom: 70px;
}
.cid-tImEjxHpBA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 58%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tImEjxHpBA .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tImEjxHpBA .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tImEjxHpBA .embla__slide {
    min-width: 375px;
  }
}
.cid-tImEjxHpBA .embla__button--next,
.cid-tImEjxHpBA .embla__button--prev {
  display: flex;
}
.cid-tImEjxHpBA .embla__button {
  transition: background-color 300ms ease, transform 300ms ease;
  border: 1px solid #2b2b2b;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: -16%;
  margin-top: -1.5rem;
  background-color: #00588f;
  color: #000000;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (min-width: 1400px) {
  .cid-tImEjxHpBA .embla__button {
    top: -18%;
  }
}
.cid-tImEjxHpBA .embla__button:disabled {
  cursor: default;
}
.cid-tImEjxHpBA .embla__button.embla__button--prev {
  right: 0;
  margin-right: 5.5rem;
}
.cid-tImEjxHpBA .embla__button.embla__button--next {
  right: 0;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tImEjxHpBA .embla__button--prev {
    right: initial;
    margin-right: 0;
  }
  .cid-tImEjxHpBA .embla__button--next {
    right: 0;
    margin-right: 0;
  }
}
.cid-tImEjxHpBA .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tImEjxHpBA .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tImEjxHpBA .embla {
  position: relative;
  width: 100%;
}
.cid-tImEjxHpBA .embla__viewport {
  overflow: visible;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tImEjxHpBA .embla__viewport {
    margin-left: 10rem;
  }
}
@media (max-width: 991px) {
  .cid-tImEjxHpBA .embla__viewport {
    margin-left: 0;
  }
}
.cid-tImEjxHpBA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tImEjxHpBA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tImEjxHpBA .embla__container {
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 426px) and (max-width: 991px) {
  .cid-tImEjxHpBA .embla__container {
    margin-top: 30px;
  }
}
.cid-tImEjxHpBA .shadow {
  border-radius: 2rem;
  overflow: visible;
  padding: 0 15px;
  border: 0px solid #f8f8f8;
  background-color: #f8f8f8;
}
.cid-tImEjxHpBA .card-title {
  margin: 35px 0;
  color: #000000;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
}
.cid-tImEjxHpBA .card-text {
  color: #00588f;
  text-align: left;
  padding-left: 18px;
  padding-right: 20px;
  padding-bottom: 50px;
  line-height: 31px;
}
.cid-tImEjxHpBA .card-title,
.cid-tImEjxHpBA .iconfont-wrapper {
  color: #fa603c;
}
@media (max-width: 576px) {
  .cid-tImEjxHpBA .card-text {
    margin-bottom: 10px;
  }
}
@media (max-width: 420px) {
  .cid-tImEjxHpBA .embla__button {
    width: 44px;
    height: 44px;
  }
  .cid-tImEjxHpBA .embla__button--next {
    margin-right: 0 !important;
  }
  .cid-tImEjxHpBA .embla__button--prev {
    margin-right: 3.5rem !important;
  }
  .cid-tImEjxHpBA .embla__container {
    transform: translateX(-25px);
  }
  .cid-tImEjxHpBA .embla__slide {
    min-width: 290px;
  }
}
@media (max-width: 420px) and (max-width: 425px) {
  .cid-tImEjxHpBA .embla__button--next {
    right: 20px;
    top: -35px;
  }
  .cid-tImEjxHpBA .embla__button--prev {
    right: 30px;
    top: -35px;
  }
}
.cid-tImEjxHpBA .rotate {
  transform: rotate(225deg);
  position: absolute;
}
@media (max-width: 425px) {
  .cid-tImEjxHpBA .rotate {
    top: 30px;
  }
}
.cid-uiS4xsrvvU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uiS4xsrvvU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiS4xsrvvU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiS4xsrvvU .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-uiS4xsrvvU .item .icon-wrap {
  text-align: center;
}
.cid-uiS4xsrvvU .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-uiS4xsrvvU .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  top: 20%;
  color: #fa603c;
}
.cid-uiS4xsrvvU .item.first:before {
  display: none;
}
.cid-uiS4xsrvvU .item.five:before {
  display: none;
}
.cid-uiS4xsrvvU .icon-box {
  background: #fa603c;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-uiS4xsrvvU .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-uiS4xsrvvU .mbr-iconfont {
  color: #0291c2 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uiS4xsrvvU .item:before {
    display: none;
  }
  .cid-uiS4xsrvvU .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uiS4xsrvvU .card-title,
.cid-uiS4xsrvvU .card-box {
  color: #00588f;
}
.cid-uiS4xsrvvU .text-box .mbr-text {
  color: #00588f;
}
.cid-uiNmLiC9HL {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #fafafa;
}
.cid-uiNmLiC9HL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uiNmLiC9HL H4 {
  color: #51545f;
}
.cid-uiNmLiC9HL LABEL {
  color: #51545f;
}
.cid-uiNmLiC9HL H5 {
  color: #00588f;
}
.cid-uiNmLiC9HL P {
  color: #51545f;
}
.cid-u58nSTjveU {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/taggeld-versicherung-experte-berater-2000x1333.jpg");
}
.cid-u58nSTjveU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u58nSTjveU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u58nSTjveU .card-wrapper {
  background: #ffffff;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-u58nSTjveU .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u58nSTjveU .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u58nSTjveU .card-wrapper {
    padding: 4rem;
  }
}
.cid-u58nSTjveU .mbr-text,
.cid-u58nSTjveU .mbr-section-btn {
  color: #00588f;
}
.cid-u58nSTjveU .card-title,
.cid-u58nSTjveU .card-box {
  text-align: left;
  color: #00588f;
}
.cid-uaeg9jOC2a.popup-builder {
  background-color: #ffffff;
}
.cid-uaeg9jOC2a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uaeg9jOC2a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uaeg9jOC2a .modal-content,
.cid-uaeg9jOC2a .modal-dialog {
  height: auto;
}
.cid-uaeg9jOC2a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uaeg9jOC2a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uaeg9jOC2a .form-wrapper .mbr-form .form-group,
  .cid-uaeg9jOC2a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uaeg9jOC2a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uaeg9jOC2a .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uaeg9jOC2a .mbr-text {
  text-align: center;
}
.cid-uaeg9jOC2a .pt-0 {
  padding-top: 0 !important;
}
.cid-uaeg9jOC2a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uaeg9jOC2a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uaeg9jOC2a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uaeg9jOC2a .modal-open {
  overflow: hidden;
}
.cid-uaeg9jOC2a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uaeg9jOC2a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uaeg9jOC2a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uaeg9jOC2a .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uaeg9jOC2a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uaeg9jOC2a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uaeg9jOC2a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uaeg9jOC2a .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uaeg9jOC2a .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uaeg9jOC2a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uaeg9jOC2a .modal-backdrop.fade {
  opacity: 0;
}
.cid-uaeg9jOC2a .modal-backdrop.show {
  opacity: .5;
}
.cid-uaeg9jOC2a .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uaeg9jOC2a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uaeg9jOC2a .modal-header {
    padding: 1rem;
  }
}
.cid-uaeg9jOC2a .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uaeg9jOC2a .modal-header .close svg {
  fill: #00588f;
}
.cid-uaeg9jOC2a .modal-header .close:hover {
  opacity: 1;
}
.cid-uaeg9jOC2a .modal-header .close:focus {
  outline: none;
}
.cid-uaeg9jOC2a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #00588f;
}
.cid-uaeg9jOC2a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uaeg9jOC2a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaeg9jOC2a .modal-body {
    padding: 1rem;
  }
}
.cid-uaeg9jOC2a .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uaeg9jOC2a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaeg9jOC2a .modal-footer {
    padding: 1rem;
  }
}
.cid-uaeg9jOC2a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uaeg9jOC2a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uaeg9jOC2a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uaeg9jOC2a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uaeg9jOC2a .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uaeg9jOC2a .modal-lg,
  .cid-uaeg9jOC2a .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uaeg9jOC2a .modal-xl {
    max-width: 1140px;
  }
}
.cid-uaeg9jOC2a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uaeg9jOC2a .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uaeg9jOC2a .form-group {
  margin-bottom: 1rem;
}
.cid-uaeg9jOC2a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uaeg9jOC2a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uaeg9jOC2a .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uaeg9jOC2a .mbr-section-btn {
  margin: 0;
}
.cid-uaeg9jOC2a .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQs9wqPS3V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #00588f;
}
.cid-uQs9wqPS3V .mbr-text {
  color: #747474;
}
.cid-uQs9wqPS3V .media-container-row .mbr-text {
  color: #ebebeb;
}
.cid-urQyQQ0vbm .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-urQyQQ0vbm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-urQyQQ0vbm .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-urQyQQ0vbm .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-urQyQQ0vbm .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.show,
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-urQyQQ0vbm .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-urQyQQ0vbm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urQyQQ0vbm .navbar {
    flex-wrap: nowrap;
  }
  .cid-urQyQQ0vbm .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-urQyQQ0vbm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.show,
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-urQyQQ0vbm .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-urQyQQ0vbm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-urQyQQ0vbm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-urQyQQ0vbm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-urQyQQ0vbm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-urQyQQ0vbm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urQyQQ0vbm .dropdown-item.active,
.cid-urQyQQ0vbm .dropdown-item:active {
  background-color: transparent;
}
.cid-urQyQQ0vbm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urQyQQ0vbm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urQyQQ0vbm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urQyQQ0vbm .navbar-buttons {
  text-align: center;
}
.cid-urQyQQ0vbm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00588f;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-urQyQQ0vbm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-urQyQQ0vbm a.nav-link:focus {
  outline: none;
}
.cid-urQyQQ0vbm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-urQyQQ0vbm .nav-link:hover,
.cid-urQyQQ0vbm .dropdown-item:hover {
  color: #fa603c !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tvL5vZxVvs {
  background-image: url("../../../assets/images/ktg-vergleich-angebote-vergleichen-11-1920x1080.png");
}
.cid-tvL5vZxVvs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL5vZxVvs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvL5vZxVvs .mbr-text,
.cid-tvL5vZxVvs .mbr-section-btn {
  color: #ffffff;
}
.cid-tvL5vZxVvs .mbr-section-title {
  color: #ffffff;
}
.cid-tvhcGOBks4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fbfbfb;
}
.cid-tvhcGOBks4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvhcGOBks4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvhcGOBks4 .row {
  justify-content: flex-start;
}
.cid-tvhcGOBks4 .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tvhcGOBks4 .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tvhcGOBks4 .mbr-section-subtitle {
  color: #00588f;
  width: 100%;
}
.cid-tvhcGOBks4 .mbr-text {
  color: #00588f;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tvhcGOBks4 .mbr-section-title,
.cid-tvhcGOBks4 .mbr-section-btn {
  color: #fa603c;
}
.cid-tvhc5T9bET {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff5ee;
}
.cid-tvhc5T9bET .card-wrapper {
  background: #ffffff;
  padding: 30px 30px 60px;
  margin: 25px 0 0;
}
.cid-tvhc5T9bET .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-tvhc5T9bET .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0291c2;
  margin-bottom: 2rem;
}
.cid-tvhc5T9bET .row {
  justify-content: center;
}
.cid-tvhc5T9bET .mbr-section-title {
  padding: 0;
  padding-bottom: 85px;
  margin: 0;
  color: #00588f;
}
@media (max-width: 690px) {
  .cid-tvhc5T9bET .item {
    padding-bottom: 25px;
  }
}
.cid-tvhc5T9bET .card-title,
.cid-tvhc5T9bET .iconfont-wrapper {
  color: #00588f;
}
.cid-tvhc5T9bET .card-text {
  color: #00588f;
}
.cid-uaefKueQ0m.popup-builder {
  background-color: #ffffff;
}
.cid-uaefKueQ0m.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uaefKueQ0m.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uaefKueQ0m .modal-content,
.cid-uaefKueQ0m .modal-dialog {
  height: auto;
}
.cid-uaefKueQ0m .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uaefKueQ0m .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uaefKueQ0m .form-wrapper .mbr-form .form-group,
  .cid-uaefKueQ0m .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uaefKueQ0m .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uaefKueQ0m .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uaefKueQ0m .mbr-text {
  text-align: center;
}
.cid-uaefKueQ0m .pt-0 {
  padding-top: 0 !important;
}
.cid-uaefKueQ0m .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uaefKueQ0m .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uaefKueQ0m .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uaefKueQ0m .modal-open {
  overflow: hidden;
}
.cid-uaefKueQ0m .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uaefKueQ0m .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uaefKueQ0m .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uaefKueQ0m .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uaefKueQ0m .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uaefKueQ0m .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uaefKueQ0m .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uaefKueQ0m .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uaefKueQ0m .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uaefKueQ0m .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uaefKueQ0m .modal-backdrop.fade {
  opacity: 0;
}
.cid-uaefKueQ0m .modal-backdrop.show {
  opacity: .5;
}
.cid-uaefKueQ0m .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uaefKueQ0m .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKueQ0m .modal-header {
    padding: 1rem;
  }
}
.cid-uaefKueQ0m .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uaefKueQ0m .modal-header .close svg {
  fill: #ff4e3c;
}
.cid-uaefKueQ0m .modal-header .close:hover {
  opacity: 1;
}
.cid-uaefKueQ0m .modal-header .close:focus {
  outline: none;
}
.cid-uaefKueQ0m .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff4e3c;
}
.cid-uaefKueQ0m .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uaefKueQ0m .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKueQ0m .modal-body {
    padding: 1rem;
  }
}
.cid-uaefKueQ0m .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uaefKueQ0m .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKueQ0m .modal-footer {
    padding: 1rem;
  }
}
.cid-uaefKueQ0m .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uaefKueQ0m .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uaefKueQ0m .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uaefKueQ0m .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uaefKueQ0m .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uaefKueQ0m .modal-lg,
  .cid-uaefKueQ0m .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uaefKueQ0m .modal-xl {
    max-width: 1140px;
  }
}
.cid-uaefKueQ0m .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uaefKueQ0m .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uaefKueQ0m .form-group {
  margin-bottom: 1rem;
}
.cid-uaefKueQ0m .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uaefKueQ0m .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uaefKueQ0m .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uaefKueQ0m .mbr-section-btn {
  margin: 0;
}
.cid-uaefKueQ0m .mbr-section-btn .btn {
  margin: 0;
}
.cid-uaegGUBB8g.popup-builder {
  background-color: #ffffff;
}
.cid-uaegGUBB8g.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uaegGUBB8g.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uaegGUBB8g .modal-content,
.cid-uaegGUBB8g .modal-dialog {
  height: auto;
}
.cid-uaegGUBB8g .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uaegGUBB8g .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uaegGUBB8g .form-wrapper .mbr-form .form-group,
  .cid-uaegGUBB8g .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uaegGUBB8g .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uaegGUBB8g .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uaegGUBB8g .mbr-text {
  text-align: center;
}
.cid-uaegGUBB8g .pt-0 {
  padding-top: 0 !important;
}
.cid-uaegGUBB8g .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uaegGUBB8g .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uaegGUBB8g .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uaegGUBB8g .modal-open {
  overflow: hidden;
}
.cid-uaegGUBB8g .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uaegGUBB8g .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uaegGUBB8g .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uaegGUBB8g .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uaegGUBB8g .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uaegGUBB8g .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uaegGUBB8g .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uaegGUBB8g .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uaegGUBB8g .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uaegGUBB8g .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uaegGUBB8g .modal-backdrop.fade {
  opacity: 0;
}
.cid-uaegGUBB8g .modal-backdrop.show {
  opacity: .5;
}
.cid-uaegGUBB8g .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uaegGUBB8g .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBB8g .modal-header {
    padding: 1rem;
  }
}
.cid-uaegGUBB8g .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uaegGUBB8g .modal-header .close svg {
  fill: #ffffff;
}
.cid-uaegGUBB8g .modal-header .close:hover {
  opacity: 1;
}
.cid-uaegGUBB8g .modal-header .close:focus {
  outline: none;
}
.cid-uaegGUBB8g .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #00588f;
}
.cid-uaegGUBB8g .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uaegGUBB8g .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBB8g .modal-body {
    padding: 1rem;
  }
}
.cid-uaegGUBB8g .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uaegGUBB8g .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBB8g .modal-footer {
    padding: 1rem;
  }
}
.cid-uaegGUBB8g .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uaegGUBB8g .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uaegGUBB8g .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uaegGUBB8g .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uaegGUBB8g .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uaegGUBB8g .modal-lg,
  .cid-uaegGUBB8g .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uaegGUBB8g .modal-xl {
    max-width: 1140px;
  }
}
.cid-uaegGUBB8g .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uaegGUBB8g .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uaegGUBB8g .form-group {
  margin-bottom: 1rem;
}
.cid-uaegGUBB8g .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uaegGUBB8g .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uaegGUBB8g .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uaegGUBB8g .mbr-section-btn {
  margin: 0;
}
.cid-uaegGUBB8g .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQs9wqPS3V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #00588f;
}
.cid-uQs9wqPS3V .mbr-text {
  color: #747474;
}
.cid-uQs9wqPS3V .media-container-row .mbr-text {
  color: #ebebeb;
}
.cid-urQyQQ0vbm .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-urQyQQ0vbm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-urQyQQ0vbm .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-urQyQQ0vbm .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-urQyQQ0vbm .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.show,
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-urQyQQ0vbm .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-urQyQQ0vbm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urQyQQ0vbm .navbar {
    flex-wrap: nowrap;
  }
  .cid-urQyQQ0vbm .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-urQyQQ0vbm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.show,
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-urQyQQ0vbm .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-urQyQQ0vbm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-urQyQQ0vbm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-urQyQQ0vbm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-urQyQQ0vbm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-urQyQQ0vbm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urQyQQ0vbm .dropdown-item.active,
.cid-urQyQQ0vbm .dropdown-item:active {
  background-color: transparent;
}
.cid-urQyQQ0vbm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urQyQQ0vbm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urQyQQ0vbm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urQyQQ0vbm .navbar-buttons {
  text-align: center;
}
.cid-urQyQQ0vbm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00588f;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-urQyQQ0vbm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-urQyQQ0vbm a.nav-link:focus {
  outline: none;
}
.cid-urQyQQ0vbm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-urQyQQ0vbm .nav-link:hover,
.cid-urQyQQ0vbm .dropdown-item:hover {
  color: #fa603c !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tvL58Njqy5 {
  background-image: url("../../../assets/images/ktg-vergleich-angebote-vergleichen-11-1920x1080.png");
}
.cid-tvL58Njqy5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvL58Njqy5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvL58Njqy5 .mbr-text,
.cid-tvL58Njqy5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tvL58Njqy5 .mbr-section-title {
  color: #ffffff;
}
.cid-tvhfbn2LiG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fbfbfb;
}
.cid-tvhfbn2LiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvhfbn2LiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvhfbn2LiG .row {
  justify-content: flex-start;
}
.cid-tvhfbn2LiG .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tvhfbn2LiG .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tvhfbn2LiG .mbr-section-subtitle {
  color: #00588f;
  width: 100%;
}
.cid-tvhfbn2LiG .mbr-text {
  color: #00588f;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tvhfbn2LiG .mbr-section-title,
.cid-tvhfbn2LiG .mbr-section-btn {
  color: #fa603c;
}
.cid-tvhfbnLql3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebebeb;
}
.cid-tvhfbnLql3 .card-wrapper {
  background: #ffffff;
  padding: 30px 30px 60px;
  margin: 25px 0 0;
}
.cid-tvhfbnLql3 .card-wrapper .image-wrap img {
  width: 100%;
}
.cid-tvhfbnLql3 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0291c2;
  margin-bottom: 2rem;
}
.cid-tvhfbnLql3 .row {
  justify-content: center;
}
.cid-tvhfbnLql3 .mbr-section-title {
  padding: 0;
  padding-bottom: 85px;
  margin: 0;
  color: #00588f;
}
@media (max-width: 690px) {
  .cid-tvhfbnLql3 .item {
    padding-bottom: 25px;
  }
}
.cid-tvhfbnLql3 .card-title,
.cid-tvhfbnLql3 .iconfont-wrapper {
  color: #00588f;
}
.cid-tvhfbnLql3 .card-text {
  color: #00588f;
}
.cid-uaefKue87l.popup-builder {
  background-color: #ffffff;
}
.cid-uaefKue87l.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uaefKue87l.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uaefKue87l .modal-content,
.cid-uaefKue87l .modal-dialog {
  height: auto;
}
.cid-uaefKue87l .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uaefKue87l .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uaefKue87l .form-wrapper .mbr-form .form-group,
  .cid-uaefKue87l .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uaefKue87l .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uaefKue87l .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uaefKue87l .mbr-text {
  text-align: center;
}
.cid-uaefKue87l .pt-0 {
  padding-top: 0 !important;
}
.cid-uaefKue87l .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uaefKue87l .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uaefKue87l .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uaefKue87l .modal-open {
  overflow: hidden;
}
.cid-uaefKue87l .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uaefKue87l .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uaefKue87l .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uaefKue87l .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uaefKue87l .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uaefKue87l .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uaefKue87l .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uaefKue87l .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uaefKue87l .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uaefKue87l .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uaefKue87l .modal-backdrop.fade {
  opacity: 0;
}
.cid-uaefKue87l .modal-backdrop.show {
  opacity: .5;
}
.cid-uaefKue87l .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uaefKue87l .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKue87l .modal-header {
    padding: 1rem;
  }
}
.cid-uaefKue87l .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uaefKue87l .modal-header .close svg {
  fill: #ff4e3c;
}
.cid-uaefKue87l .modal-header .close:hover {
  opacity: 1;
}
.cid-uaefKue87l .modal-header .close:focus {
  outline: none;
}
.cid-uaefKue87l .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ff4e3c;
}
.cid-uaefKue87l .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uaefKue87l .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKue87l .modal-body {
    padding: 1rem;
  }
}
.cid-uaefKue87l .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uaefKue87l .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaefKue87l .modal-footer {
    padding: 1rem;
  }
}
.cid-uaefKue87l .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uaefKue87l .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uaefKue87l .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uaefKue87l .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uaefKue87l .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uaefKue87l .modal-lg,
  .cid-uaefKue87l .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uaefKue87l .modal-xl {
    max-width: 1140px;
  }
}
.cid-uaefKue87l .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uaefKue87l .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uaefKue87l .form-group {
  margin-bottom: 1rem;
}
.cid-uaefKue87l .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uaefKue87l .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uaefKue87l .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uaefKue87l .mbr-section-btn {
  margin: 0;
}
.cid-uaefKue87l .mbr-section-btn .btn {
  margin: 0;
}
.cid-uaegGUBMFT.popup-builder {
  background-color: #ffffff;
}
.cid-uaegGUBMFT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uaegGUBMFT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uaegGUBMFT .modal-content,
.cid-uaegGUBMFT .modal-dialog {
  height: auto;
}
.cid-uaegGUBMFT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uaegGUBMFT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uaegGUBMFT .form-wrapper .mbr-form .form-group,
  .cid-uaegGUBMFT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uaegGUBMFT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uaegGUBMFT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uaegGUBMFT .mbr-text {
  text-align: center;
}
.cid-uaegGUBMFT .pt-0 {
  padding-top: 0 !important;
}
.cid-uaegGUBMFT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uaegGUBMFT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uaegGUBMFT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uaegGUBMFT .modal-open {
  overflow: hidden;
}
.cid-uaegGUBMFT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uaegGUBMFT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uaegGUBMFT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uaegGUBMFT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uaegGUBMFT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uaegGUBMFT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uaegGUBMFT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uaegGUBMFT .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uaegGUBMFT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uaegGUBMFT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uaegGUBMFT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uaegGUBMFT .modal-backdrop.show {
  opacity: .5;
}
.cid-uaegGUBMFT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uaegGUBMFT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBMFT .modal-header {
    padding: 1rem;
  }
}
.cid-uaegGUBMFT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uaegGUBMFT .modal-header .close svg {
  fill: #ffffff;
}
.cid-uaegGUBMFT .modal-header .close:hover {
  opacity: 1;
}
.cid-uaegGUBMFT .modal-header .close:focus {
  outline: none;
}
.cid-uaegGUBMFT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #00588f;
}
.cid-uaegGUBMFT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uaegGUBMFT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBMFT .modal-body {
    padding: 1rem;
  }
}
.cid-uaegGUBMFT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uaegGUBMFT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaegGUBMFT .modal-footer {
    padding: 1rem;
  }
}
.cid-uaegGUBMFT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uaegGUBMFT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uaegGUBMFT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uaegGUBMFT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uaegGUBMFT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uaegGUBMFT .modal-lg,
  .cid-uaegGUBMFT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uaegGUBMFT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uaegGUBMFT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uaegGUBMFT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uaegGUBMFT .form-group {
  margin-bottom: 1rem;
}
.cid-uaegGUBMFT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uaegGUBMFT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uaegGUBMFT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uaegGUBMFT .mbr-section-btn {
  margin: 0;
}
.cid-uaegGUBMFT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uQs9wqPS3V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #00588f;
}
.cid-uQs9wqPS3V .mbr-text {
  color: #747474;
}
.cid-uQs9wqPS3V .media-container-row .mbr-text {
  color: #ebebeb;
}
.cid-urQyQQ0vbm .collapsed:not(.opened) {
  flex-direction: row!important;
}
.cid-urQyQQ0vbm .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-urQyQQ0vbm .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-urQyQQ0vbm .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-urQyQQ0vbm .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem ;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.show,
.cid-urQyQQ0vbm .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-urQyQQ0vbm .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-urQyQQ0vbm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urQyQQ0vbm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-urQyQQ0vbm .navbar {
    flex-wrap: nowrap;
  }
  .cid-urQyQQ0vbm .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem ;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-urQyQQ0vbm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.show,
  .cid-urQyQQ0vbm .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-urQyQQ0vbm .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-urQyQQ0vbm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-urQyQQ0vbm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-urQyQQ0vbm .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-urQyQQ0vbm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-urQyQQ0vbm .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-urQyQQ0vbm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-urQyQQ0vbm .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urQyQQ0vbm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urQyQQ0vbm .dropdown-item.active,
.cid-urQyQQ0vbm .dropdown-item:active {
  background-color: transparent;
}
.cid-urQyQQ0vbm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urQyQQ0vbm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urQyQQ0vbm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-urQyQQ0vbm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-urQyQQ0vbm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-urQyQQ0vbm .navbar-buttons {
  text-align: center;
}
.cid-urQyQQ0vbm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00588f;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-urQyQQ0vbm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-urQyQQ0vbm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-urQyQQ0vbm .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-urQyQQ0vbm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-urQyQQ0vbm a.nav-link:focus {
  outline: none;
}
.cid-urQyQQ0vbm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-urQyQQ0vbm .nav-link:hover,
.cid-urQyQQ0vbm .dropdown-item:hover {
  color: #fa603c !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-urQyQQ0vbm .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uQs6kfv2eE {
  padding-top: 11rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQs6kfv2eE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs6kfv2eE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQs6kfv2eE .content-wrapper .label-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .label-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uQs6kfv2eE .content-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 6px 20px;
  background-color: #f2f1f3;
  margin-bottom: 0;
}
.cid-uQs6kfv2eE .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uQs6kfv2eE .content-wrapper .mbr-section-btn {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .mbr-section-btn {
    margin-bottom: 40px;
  }
}
.cid-uQs6kfv2eE .content-wrapper .text-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQs6kfv2eE .content-wrapper .text-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  width: 25%;
  height: 1px;
  background-color: #e5e4e7;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .text-wrapper::before {
    width: 8%;
  }
}
.cid-uQs6kfv2eE .content-wrapper .text-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  width: 25%;
  height: 1px;
  background-color: #e5e4e7;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .text-wrapper::after {
    width: 8%;
  }
}
.cid-uQs6kfv2eE .content-wrapper .text-wrapper .mbr-text {
  padding: 20px;
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uQs6kfv2eE .content-wrapper .text-wrapper .mbr-text {
    padding: 0;
    width: 80%;
  }
}
.cid-uQs6kfv2eE .mbr-section-title {
  color: #19171c;
  text-align: center;
}
.cid-uQs6kfv2eE .mbr-label,
.cid-uQs6kfv2eE .label-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-uQs6kfv2eE .mbr-text,
.cid-uQs6kfv2eE .text-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-uQs6kfv2eE .mbr-section-title,
.cid-uQs6kfv2eE .mbr-section-btn {
  text-align: center;
  color: #00588f;
}
.cid-uQs6kfv2eE .mbr-text {
  color: #00588f;
}
.cid-uQrH7DcutJ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQrH7DcutJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrH7DcutJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrH7DcutJ .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrH7DcutJ .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrH7DcutJ .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrH7DcutJ .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrH7DcutJ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrH7DcutJ .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrH7DcutJ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrH7DcutJ .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrH7DcutJ .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrH7DcutJ .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrH7DcutJ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrH7DcutJ .mbr-section-title {
  color: #19171c;
}
.cid-uQrH7DcutJ .panel-title {
  color: #19171c;
}
.cid-uQrH7DcutJ .panel-text {
  color: #08323c;
}
.cid-uQrH7DcutJ .mbr-section-title,
.cid-uQrH7DcutJ .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrH7DcutJ .panel-title-edit {
  color: #00588f;
}
.cid-uQrW581Iaf {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQrW581Iaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrW581Iaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrW581Iaf .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrW581Iaf .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrW581Iaf .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrW581Iaf .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrW581Iaf .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrW581Iaf .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrW581Iaf .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrW581Iaf .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrW581Iaf .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrW581Iaf .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrW581Iaf .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrW581Iaf .mbr-section-title {
  color: #19171c;
}
.cid-uQrW581Iaf .panel-title {
  color: #19171c;
}
.cid-uQrW581Iaf .panel-text {
  color: #08323c;
}
.cid-uQrW581Iaf .mbr-section-title,
.cid-uQrW581Iaf .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrW581Iaf .panel-title-edit {
  color: #00588f;
}
.cid-uQrXiOhWli {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQrXiOhWli .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrXiOhWli .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrXiOhWli .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrXiOhWli .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrXiOhWli .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrXiOhWli .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrXiOhWli .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrXiOhWli .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrXiOhWli .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrXiOhWli .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrXiOhWli .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrXiOhWli .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrXiOhWli .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrXiOhWli .mbr-section-title {
  color: #19171c;
}
.cid-uQrXiOhWli .panel-title {
  color: #19171c;
}
.cid-uQrXiOhWli .panel-text {
  color: #08323c;
}
.cid-uQrXiOhWli .mbr-section-title,
.cid-uQrXiOhWli .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrXiOhWli .panel-title-edit {
  color: #00588f;
}
.cid-uQrY109flK {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQrY109flK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrY109flK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrY109flK .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrY109flK .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrY109flK .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrY109flK .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrY109flK .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrY109flK .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrY109flK .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrY109flK .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrY109flK .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrY109flK .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrY109flK .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrY109flK .mbr-section-title {
  color: #19171c;
}
.cid-uQrY109flK .panel-title {
  color: #19171c;
}
.cid-uQrY109flK .panel-text {
  color: #08323c;
}
.cid-uQrY109flK .mbr-section-title,
.cid-uQrY109flK .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrY109flK .panel-title-edit {
  color: #00588f;
}
.cid-uQrYJRacaf {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQrYJRacaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrYJRacaf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrYJRacaf .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrYJRacaf .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrYJRacaf .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrYJRacaf .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrYJRacaf .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrYJRacaf .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrYJRacaf .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrYJRacaf .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrYJRacaf .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrYJRacaf .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrYJRacaf .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrYJRacaf .mbr-section-title {
  color: #19171c;
}
.cid-uQrYJRacaf .panel-title {
  color: #19171c;
}
.cid-uQrYJRacaf .panel-text {
  color: #08323c;
}
.cid-uQrYJRacaf .mbr-section-title,
.cid-uQrYJRacaf .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrYJRacaf .panel-title-edit {
  color: #00588f;
}
.cid-uQrZfLo1BG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQrZfLo1BG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrZfLo1BG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrZfLo1BG .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrZfLo1BG .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrZfLo1BG .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrZfLo1BG .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrZfLo1BG .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrZfLo1BG .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrZfLo1BG .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrZfLo1BG .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrZfLo1BG .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrZfLo1BG .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrZfLo1BG .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrZfLo1BG .mbr-section-title {
  color: #19171c;
}
.cid-uQrZfLo1BG .panel-title {
  color: #19171c;
}
.cid-uQrZfLo1BG .panel-text {
  color: #08323c;
}
.cid-uQrZfLo1BG .mbr-section-title,
.cid-uQrZfLo1BG .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrZfLo1BG .panel-title-edit {
  color: #00588f;
}
.cid-uQrZXJKRtn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQrZXJKRtn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrZXJKRtn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrZXJKRtn .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQrZXJKRtn .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQrZXJKRtn .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrZXJKRtn .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQrZXJKRtn .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQrZXJKRtn .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQrZXJKRtn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQrZXJKRtn .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQrZXJKRtn .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQrZXJKRtn .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQrZXJKRtn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQrZXJKRtn .mbr-section-title {
  color: #19171c;
}
.cid-uQrZXJKRtn .panel-title {
  color: #19171c;
}
.cid-uQrZXJKRtn .panel-text {
  color: #08323c;
}
.cid-uQrZXJKRtn .mbr-section-title,
.cid-uQrZXJKRtn .mbr-section-btn {
  color: #fa603c;
}
.cid-uQrZXJKRtn .panel-title-edit {
  color: #00588f;
}
.cid-uQs1XZ7Rkj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQs1XZ7Rkj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs1XZ7Rkj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQs1XZ7Rkj .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQs1XZ7Rkj .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQs1XZ7Rkj .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQs1XZ7Rkj .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQs1XZ7Rkj .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQs1XZ7Rkj .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQs1XZ7Rkj .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQs1XZ7Rkj .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQs1XZ7Rkj .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQs1XZ7Rkj .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQs1XZ7Rkj .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQs1XZ7Rkj .mbr-section-title {
  color: #19171c;
}
.cid-uQs1XZ7Rkj .panel-title {
  color: #19171c;
}
.cid-uQs1XZ7Rkj .panel-text {
  color: #08323c;
}
.cid-uQs1XZ7Rkj .mbr-section-title,
.cid-uQs1XZ7Rkj .mbr-section-btn {
  color: #fa603c;
}
.cid-uQs1XZ7Rkj .panel-title-edit {
  color: #00588f;
}
.cid-uQs2vKiTUy {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQs2vKiTUy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs2vKiTUy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQs2vKiTUy .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQs2vKiTUy .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQs2vKiTUy .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQs2vKiTUy .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQs2vKiTUy .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQs2vKiTUy .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQs2vKiTUy .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQs2vKiTUy .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQs2vKiTUy .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQs2vKiTUy .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQs2vKiTUy .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQs2vKiTUy .mbr-section-title {
  color: #19171c;
}
.cid-uQs2vKiTUy .panel-title {
  color: #19171c;
}
.cid-uQs2vKiTUy .panel-text {
  color: #08323c;
}
.cid-uQs2vKiTUy .mbr-section-title,
.cid-uQs2vKiTUy .mbr-section-btn {
  color: #fa603c;
}
.cid-uQs2vKiTUy .panel-title-edit {
  color: #00588f;
}
.cid-uQs35ZvSry {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQs35ZvSry .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQs35ZvSry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQs35ZvSry .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uQs35ZvSry .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uQs35ZvSry .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uQs35ZvSry .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uQs35ZvSry .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uQs35ZvSry .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uQs35ZvSry .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uQs35ZvSry .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uQs35ZvSry .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uQs35ZvSry .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uQs35ZvSry .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uQs35ZvSry .mbr-section-title {
  color: #19171c;
}
.cid-uQs35ZvSry .panel-title {
  color: #19171c;
}
.cid-uQs35ZvSry .panel-text {
  color: #08323c;
}
.cid-uQs35ZvSry .mbr-section-title,
.cid-uQs35ZvSry .mbr-section-btn {
  color: #fa603c;
}
.cid-uQs35ZvSry .panel-title-edit {
  color: #00588f;
}
.cid-uR0cqG2q3h {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
#custom-html-55 {
  /* Type valid CSS here */
}
#custom-html-55 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-55 p {
  font-size: 60px;
  color: #777;
}
.cid-uQs9wqPS3V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #00588f;
}
.cid-uQs9wqPS3V .mbr-text {
  color: #747474;
}
.cid-uQs9wqPS3V .media-container-row .mbr-text {
  color: #ebebeb;
}
