body {
  font-family: EB Garamond;
}
.display-1 {
  font-family: 'EBGaramond-Bold';
  font-size: 2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'EBGaramond-SemiBold';
  font-size: 2rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'OpenSans-Regular';
  font-size: 0.8rem;
  line-height: 1.7;
  font-weight: 500;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'EBGaramond-SemiBold';
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'OpenSans-Regular';
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #545466 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #0f7699 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #545466 !important;
  border-color: #545466 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #31313c !important;
  border-color: #31313c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #31313c !important;
  border-color: #31313c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f59e00 !important;
  border-color: #f59e00 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a96d00 !important;
  border-color: #a96d00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a96d00 !important;
  border-color: #a96d00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #26262e;
  color: #26262e;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #545466;
  border-color: #545466;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #545466 !important;
  border-color: #545466 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #8f5c00;
  color: #8f5c00;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #f59e00;
  border-color: #f59e00;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f59e00 !important;
  border-color: #f59e00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #062e3c;
  color: #062e3c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #545466 !important;
}
.text-secondary {
  color: #f59e00 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #0f7699 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #26262e !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8f5c00 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #062e3c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #0f7699;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #545466;
  border-color: #545466;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #545466;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9393a6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #3cbfec;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'OpenSans-Regular';
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #545466;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #545466;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #545466;
  border-bottom-color: #545466;
}
.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: #545466 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f59e00 !important;
  box-shadow: none !important;
}
.btn-white-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white-outline:before {
  content: "";
  width: 100%;
  height: 100%;
  background: white;
  position: absolute;
  transition: all 0.6s ease-in-out;
  top: 0;
  left: -100%;
  z-index: -1;
}
.btn-white-outline:hover {
  background: transparent !important;
  color: #545466 !important;
}
.btn-white-outline:hover:before {
  left: 0px;
}
.btn-primary-outline {
  margin: 0.3rem !important;
  padding: 0.2rem 0;
  border: none;
  position: relative;
  z-index: 1;
  color: #545466 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:active {
  background: transparent;
  color: #545466;
}
.btn-primary-outline:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #545466;
  position: absolute;
  transition: all 0.6s ease-in-out;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.btn-primary-outline:hover:before {
  width: 0;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 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='%23545466' %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;
}
.cid-rwtYwhIgku .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-rwtYwhIgku .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-rwtYwhIgku a {
  font-style: normal;
}
.cid-rwtYwhIgku .nav-link {
  font-family: EB Garamond !important;
}
.cid-rwtYwhIgku .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwtYwhIgku .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rwtYwhIgku .nav-item:focus,
.cid-rwtYwhIgku .nav-link:focus {
  outline: none;
}
.cid-rwtYwhIgku .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwtYwhIgku .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwtYwhIgku .menu-logo {
  margin-right: auto;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwtYwhIgku .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwtYwhIgku .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwtYwhIgku .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwtYwhIgku button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwtYwhIgku button.navbar-toggler:focus {
  outline: none;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwtYwhIgku .dropdown-toggle:after {
  display: none;
}
.cid-rwtYwhIgku .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwtYwhIgku .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rwtYwhIgku .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwtYwhIgku .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwtYwhIgku .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwtYwhIgku .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwtYwhIgku .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwtYwhIgku img {
    height: 3.8rem !important;
  }
  .cid-rwtYwhIgku .btn {
    display: -webkit-flex;
  }
  .cid-rwtYwhIgku button.navbar-toggler {
    display: block;
  }
  .cid-rwtYwhIgku .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwtYwhIgku .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwtYwhIgku .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing,
  .cid-rwtYwhIgku .navbar-collapse.show {
    display: block !important;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-nav,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwtYwhIgku .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rwtYwhIgku .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwtYwhIgku .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwtYwhIgku .nav-link,
.cid-rwtYwhIgku .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-rwtYwhIgku .nav-link:hover,
.cid-rwtYwhIgku .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-sQhkrnmTQs {
  padding-top: 225px;
  padding-bottom: 90px;
  background-color: #130C17;
  background-image: url("../../../assets/images/dirk-buehne-1200-1200x745.jpg");
  background-size: contain;
}
.cid-sQhkrnmTQs .mbr-text,
.cid-sQhkrnmTQs .mbr-section-btn {
  text-align: center;
}
.cid-sQhkrnmTQs H1 {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sQhkrnmTQs {
    padding-top: 7em;
    background-image: url(https://dirkdommach.de/assets/images/dirk-buehne-klein.jpg);
    background-size: cover;
  }
}
.cid-t41mHGBZou {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f6f6f6;
}
@media (max-width: 992px) {
  .cid-t41mHGBZou {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-t41mHGBZou .box {
  background-image: url("../../../assets/images/rede-video1-1-1200-1200x745.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t41mHGBZou .icon-wrap {
  background-color: #545466 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-t41mHGBZou .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-t41mHGBZou .icon-wrap span {
  padding-left: 8px;
}
.cid-t41mHGBZou .mbr-media span {
  font-size: 38px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #f6f6f6 !important;
}
.cid-t41mHGBZou .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-t41mHGBZou .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t41mHGBZou .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t41mHGBZou .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t41mHGBZou a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-t41mHGBZou a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-t41mHGBZou {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-t41mHGBZou .box {
    height: 250px;
  }
}
.cid-t4pbnvLVoP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ececec;
}
.cid-t4pbnvLVoP .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-t4pbnvLVoP .card-img span {
  font-size: 2rem;
  color: #b06e6e;
}
.cid-t4pbnvLVoP .card {
  margin-bottom: 1rem;
}
.cid-t4pbnvLVoP .card-title,
.cid-t4pbnvLVoP .card-img {
  text-align: center;
}
.cid-t4pbnvLVoP .row {
  justify-content: center;
}
.cid-t4psO0Uzle {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f6f6f6;
}
@media (max-width: 992px) {
  .cid-t4psO0Uzle {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-t4psO0Uzle .box {
  background-image: url("../../../assets/images/rede-video2-1-1200-1200x745.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t4psO0Uzle .icon-wrap {
  background-color: #545466 !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-t4psO0Uzle .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-t4psO0Uzle .icon-wrap span {
  padding-left: 8px;
}
.cid-t4psO0Uzle .mbr-media span {
  font-size: 38px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #f6f6f6 !important;
}
.cid-t4psO0Uzle .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-t4psO0Uzle .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t4psO0Uzle .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t4psO0Uzle .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t4psO0Uzle a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-t4psO0Uzle a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-t4psO0Uzle {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-t4psO0Uzle .box {
    height: 250px;
  }
}
.cid-t4psO0Uzle .card-title {
  text-align: center;
  color: #3d626c;
}
.cid-t4prfDWZAA {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f6f6f6;
}
.cid-t4prfDWZAA .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-t4prfDWZAA .card-img span {
  font-size: 2rem;
  color: #b06e6e;
}
.cid-t4prfDWZAA .card {
  margin-bottom: 1rem;
}
.cid-t4prfDWZAA .card-title,
.cid-t4prfDWZAA .card-img {
  text-align: center;
}
.cid-t4prfDWZAA .row {
  justify-content: center;
}
.cid-sQP2yUF6ee {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sQP2yUF6ee h3 {
  text-align: center;
}
.cid-sQP2yUF6ee .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sQP2yUF6ee .mbr-content-text {
  color: #767676;
}
.cid-sQP2yUF6ee .card {
  word-wrap: break-word;
}
.cid-sQP2yUF6ee .mbr-iconfont {
  font-size: 80px;
  color: #545466;
}
.cid-sQhmyoMpoM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-sQhmyoMpoM .mbr-text {
  color: #767676;
}
.cid-sQhmyoMpoM .sig-img img {
  width: auto;
  display: inline-block;
}
.cid-sR89uUrW2a {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #e8e8e8;
}
.cid-sR89uUrW2a .mbr-text {
  color: #879a9f;
}
@media (min-width: 922px) {
  .cid-sR89uUrW2a .card-wrapper {
    padding: 0 1rem;
  }
}
.cid-sR89uUrW2a .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  line-height: 2;
}
.cid-sR89uUrW2a .counter-container ul li {
  margin-bottom: 0.2rem;
  list-style: none;
  position: relative;
}
.cid-sR89uUrW2a .counter-container ul li:before {
  position: absolute;
  left: -2.2rem;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 14px 16px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #3d626c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cid-sR89uUrW2a .card-title {
  color: #3d626c;
}
.cid-sRbB7uCcuc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sRbB7uCcuc .carousel-item {
  justify-content: center;
}
.cid-sRbB7uCcuc .carousel-item.active,
.cid-sRbB7uCcuc .carousel-item-next,
.cid-sRbB7uCcuc .carousel-item-prev {
  display: flex;
}
.cid-sRbB7uCcuc .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 40px;
  position: absolute;
  top: 80px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: gray;
}
.cid-sRbB7uCcuc .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-sRbB7uCcuc .carousel-control-next span {
  padding-left: 5px;
}
.cid-sRbB7uCcuc .carousel-control-prev span {
  padding-right: 5px;
}
.cid-sRbB7uCcuc .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-sRbB7uCcuc .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 230px) {
  .cid-sRbB7uCcuc .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-sRbB7uCcuc .user_desk {
  color: #666666;
}
.cid-tn67g5erN8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-tn67g5erN8 .mbr-text {
  color: #767676;
}
.cid-tn67g5erN8 .sig-img img {
  width: 200px;
  display: inline-block;
}
.cid-tn67g5erN8 .mbr-text,
.cid-tn67g5erN8 .sig-img {
  text-align: left;
}
.cid-tn67g5erN8 .card-title {
  text-align: left;
}
.cid-sRFvR5xeQi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sRFvR5xeQi .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-sRFvR5xeQi .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-sRFvR5xeQi .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-sRFvR5xeQi img {
    width: 90%;
  }
}
.cid-sRFvR5xeQi .mbr-text,
.cid-sRFvR5xeQi .mbr-section-btn {
  text-align: left;
}
.cid-t4venVFDzD {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #e8e8e8;
}
.cid-t4venVFDzD .mbr-text {
  color: #767676;
}
.cid-t4venVFDzD .sig {
  width: 300px;
}
.cid-t4venVFDzD img {
  height: 600px;
  object-fit: contain;
  z-index: 2;
  position: relative;
}
.cid-t4venVFDzD .card-img:after {
  content: '';
  position: absolute;
  border-radius: 100%;
  z-index: 1;
  top: 15%;
  right: 40px;
  width: 40px;
  height: 70%;
  opacity: 1;
}
.cid-t4venVFDzD .text-wrap {
  max-width: 800px;
  margin: auto;
}
.cid-sQEhGHICV1 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f6f6f6;
}
.cid-sQEhGHICV1 .mbr-media {
  position: relative;
}
.cid-sQEhGHICV1 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sQEhGHICV1 a:hover {
  background-image: none!important;
}
.cid-sQEhGHICV1 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-sQEhGHICV1 .svg-top .st0 {
  fill: #f6f6f6;
}
@media (max-width: 992px) {
  .cid-sQEhGHICV1 .svg-top {
    width: 1000px;
  }
}
.cid-sQEhGHICV1 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-sQEhGHICV1 .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-sQEhGHICV1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sQEhGHICV1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sQEhGHICV1 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sQEhGHICV1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sQEhGHICV1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sQEhGHICV1 .mbr-section-title {
  color: #3d626c;
}
.cid-t4pGvNxBr1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t4pGvNxBr1 .mbr-text {
  color: #767676;
}
.cid-t4pGvNxBr1 H2 {
  text-align: center;
}
.cid-t4IhVoGcsS {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ececec;
}
.cid-t4IhVoGcsS .mbr-media {
  position: relative;
}
.cid-t4IhVoGcsS .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t4IhVoGcsS a:hover {
  background-image: none!important;
}
.cid-t4IhVoGcsS .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t4IhVoGcsS .svg-top .st0 {
  fill: #ececec;
}
@media (max-width: 992px) {
  .cid-t4IhVoGcsS .svg-top {
    width: 1000px;
  }
}
.cid-t4IhVoGcsS .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t4IhVoGcsS .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t4IhVoGcsS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t4IhVoGcsS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t4IhVoGcsS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t4IhVoGcsS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t4IhVoGcsS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t4IhVoGcsS .mbr-section-title {
  color: #3d626c;
}
.cid-t4Ii2RnNOD {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #f8f8f8;
}
.cid-t4Ii2RnNOD .mbr-media {
  position: relative;
}
.cid-t4Ii2RnNOD .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t4Ii2RnNOD a:hover {
  background-image: none!important;
}
.cid-t4Ii2RnNOD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t4Ii2RnNOD .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-t4Ii2RnNOD .svg-top {
    width: 1000px;
  }
}
.cid-t4Ii2RnNOD .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t4Ii2RnNOD .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t4Ii2RnNOD .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t4Ii2RnNOD .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t4Ii2RnNOD .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t4Ii2RnNOD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t4Ii2RnNOD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t4Ii2RnNOD .mbr-section-title {
  color: #3d626c;
}
.cid-sQktzsnsHa {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-sQktzsnsHa .mbr-iconfont {
  font-size: 1.2rem !important;
}
.cid-sQktzsnsHa p {
  margin-bottom: 0 !important;
}
.cid-sQktzsnsHa .card {
  margin-bottom: 1rem;
  border-radius: 0px;
}
.cid-sQktzsnsHa .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-sQktzsnsHa .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-sQktzsnsHa .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sQktzsnsHa .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-sQktzsnsHa .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-sQktzsnsHa .card .panel-body {
  color: #767676;
}
.cid-sQktzsnsHa .card-header {
  transition: all 0.3s;
  background-color: #f6f6f6;
}
.cid-sQktzsnsHa .card-header:hover {
  background-color: #545466;
}
.cid-sQktzsnsHa .card-header:hover h4 {
  color: #ffffff !important;
}
.cid-sQktzsnsHa H4 {
  color: #3d626c;
}
.cid-sQkBewEYNd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-sQkBewEYNd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sQkBewEYNd .form-control,
.cid-sQkBewEYNd .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-sQkBewEYNd .form-control::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input::-webkit-input-placeholder,
.cid-sQkBewEYNd .form-control::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-sQkBewEYNd .form-control:-moz-placeholder,
.cid-sQkBewEYNd .field-input:-moz-placeholder,
.cid-sQkBewEYNd .form-control:-moz-placeholder,
.cid-sQkBewEYNd .field-input:-moz-placeholder {
  color: #606060;
}
.cid-sQkBewEYNd .form-control:hover,
.cid-sQkBewEYNd .field-input:hover,
.cid-sQkBewEYNd .form-control:focus,
.cid-sQkBewEYNd .field-input:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sQkBewEYNd .form-control:hover::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input:hover::-webkit-input-placeholder,
.cid-sQkBewEYNd .form-control:focus::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input:focus::-webkit-input-placeholder,
.cid-sQkBewEYNd .form-control:hover::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input:hover::-webkit-input-placeholder,
.cid-sQkBewEYNd .form-control:focus::-webkit-input-placeholder,
.cid-sQkBewEYNd .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-sQkBewEYNd .form-control:hover:-moz-placeholder,
.cid-sQkBewEYNd .field-input:hover:-moz-placeholder,
.cid-sQkBewEYNd .form-control:focus:-moz-placeholder,
.cid-sQkBewEYNd .field-input:focus:-moz-placeholder,
.cid-sQkBewEYNd .form-control:hover:-moz-placeholder,
.cid-sQkBewEYNd .field-input:hover:-moz-placeholder,
.cid-sQkBewEYNd .form-control:focus:-moz-placeholder,
.cid-sQkBewEYNd .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-sQkBewEYNd textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-sQkBewEYNd .jq-number__spin:hover,
.cid-sQkBewEYNd .jq-number__spin:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sQkBewEYNd .jq-number__spin {
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sQkBewEYNd .jq-selectbox li,
.cid-sQkBewEYNd .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sQkBewEYNd .jq-selectbox li:hover,
.cid-sQkBewEYNd .jq-selectbox li.selected {
  background-color: #bcbcc6;
  color: #000000;
}
.cid-sQkBewEYNd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sQkBewEYNd .jq-number__spin.minus:hover:after,
.cid-sQkBewEYNd .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sQkBewEYNd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sQkBewEYNd .jq-number__spin.minus:after,
.cid-sQkBewEYNd .jq-number__spin.plus:after {
  border-top-color: #bcbcc6;
  border-bottom-color: #bcbcc6;
}
.cid-sQkBewEYNd input::-webkit-clear-button {
  display: none;
}
.cid-sQkBewEYNd input::-webkit-inner-spin-button {
  display: none;
}
.cid-sQkBewEYNd input::-webkit-outer-spin-button {
  display: none;
}
.cid-sQkBewEYNd input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sQkBewEYNd .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-sQkBewEYNd .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sQkBewEYNd .mbr-section-title {
  color: #465052;
}
.cid-sQkBewEYNd .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-sQkBewEYNd .mbr-section-subtitle {
  color: #465052;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sQkBewEYNd .mbr-text {
  color: #606060;
}
.cid-sQkBewEYNd .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-sQkBewEYNd .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-sQkBewEYNd .required {
  width: 100%;
  color: #808080;
}
.cid-sQkBewEYNd img {
  width: 100%;
  margin-bottom: 120px;
}
.cid-sQkBewEYNd .counter {
  top: 56%;
  left: 0%;
}
.cid-sQkBewEYNd .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-sQkBewEYNd .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-sQkBewEYNd .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-sQkBewEYNd .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-sQkBewEYNd .required {
    text-align: center;
  }
}
.cid-sQkBewEYNd .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-sQkBewEYNd .form-control-label,
.cid-sQkBewEYNd .form-check {
  margin-left: 20px;
}
.cid-sQkBewEYNd .badge,
.cid-sQkBewEYNd .badge_wrap {
  color: #7069da;
}
.cid-sQkBewEYNd LABEL {
  text-align: left;
}
.cid-sQkBewEYNd .form-check-label {
  font-size: 1em;
}
.cid-sQkBewEYNd .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-rwtYwhIgku .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-rwtYwhIgku .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-rwtYwhIgku a {
  font-style: normal;
}
.cid-rwtYwhIgku .nav-link {
  font-family: EB Garamond !important;
}
.cid-rwtYwhIgku .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwtYwhIgku .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rwtYwhIgku .nav-item:focus,
.cid-rwtYwhIgku .nav-link:focus {
  outline: none;
}
.cid-rwtYwhIgku .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwtYwhIgku .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwtYwhIgku .menu-logo {
  margin-right: auto;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwtYwhIgku .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwtYwhIgku .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwtYwhIgku .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwtYwhIgku .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwtYwhIgku .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rwtYwhIgku .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwtYwhIgku button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwtYwhIgku button.navbar-toggler:focus {
  outline: none;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwtYwhIgku button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwtYwhIgku nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwtYwhIgku .dropdown-toggle:after {
  display: none;
}
.cid-rwtYwhIgku .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwtYwhIgku .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwtYwhIgku .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwtYwhIgku .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rwtYwhIgku .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwtYwhIgku .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rwtYwhIgku .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwtYwhIgku .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rwtYwhIgku .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-rwtYwhIgku .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwtYwhIgku img {
    height: 3.8rem !important;
  }
  .cid-rwtYwhIgku .btn {
    display: -webkit-flex;
  }
  .cid-rwtYwhIgku button.navbar-toggler {
    display: block;
  }
  .cid-rwtYwhIgku .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rwtYwhIgku .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwtYwhIgku .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing,
  .cid-rwtYwhIgku .navbar-collapse.show {
    display: block !important;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-nav,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwtYwhIgku .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwtYwhIgku .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwtYwhIgku .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rwtYwhIgku .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rwtYwhIgku .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rwtYwhIgku .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwtYwhIgku .nav-link,
.cid-rwtYwhIgku .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-rwtYwhIgku .nav-link:hover,
.cid-rwtYwhIgku .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-sQkOLUHU5z {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sQkODkSdgw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sQkODkSdgw H1 {
  color: #232323;
  text-align: center;
}
.cid-sQkODkSdgw .mbr-text,
.cid-sQkODkSdgw .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-sQkODkSdgw .img-box {
  position: relative;
}
.cid-sQkODkSdgw .card-ico span {
  font-size: 96px;
  color: #545466;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sQkODkSdgw .card-ico .ico1 {
  background-color: #4249cc;
}
.cid-sQkODkSdgw .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sQkODkSdgw .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sQkODkSdgw img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 179, 41, 0.35);
}
@media (max-width: 576px) {
  .cid-sQkODkSdgw .author-box {
    justify-content: center;
  }
  .cid-sQkODkSdgw .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sQkODkSdgw .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sQkODkSdgw .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sQkODkSdgw .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sQkODkSdgw .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sQkODkSdgw .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sQkODkSdgw .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sQkODkSdgw h3,
.cid-sQkODkSdgw h4 {
  margin: 0;
  padding: 0;
}
.cid-sQkODkSdgw .card-title,
.cid-sQkODkSdgw .mbr-section-subtitle {
  color: #232323;
}
.cid-sQkODkSdgw H3 {
  color: #ffffff;
  text-align: center;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-sQkLZAkXmS .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-sQkLZAkXmS .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-sQkLZAkXmS a {
  font-style: normal;
}
.cid-sQkLZAkXmS .nav-link {
  font-family: EB Garamond !important;
}
.cid-sQkLZAkXmS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sQkLZAkXmS .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sQkLZAkXmS .nav-item:focus,
.cid-sQkLZAkXmS .nav-link:focus {
  outline: none;
}
.cid-sQkLZAkXmS .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sQkLZAkXmS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sQkLZAkXmS .menu-logo {
  margin-right: auto;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sQkLZAkXmS .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sQkLZAkXmS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sQkLZAkXmS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sQkLZAkXmS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQkLZAkXmS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sQkLZAkXmS .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-sQkLZAkXmS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-sQkLZAkXmS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQkLZAkXmS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sQkLZAkXmS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQkLZAkXmS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sQkLZAkXmS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sQkLZAkXmS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sQkLZAkXmS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sQkLZAkXmS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sQkLZAkXmS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sQkLZAkXmS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sQkLZAkXmS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sQkLZAkXmS button.navbar-toggler:focus {
  outline: none;
}
.cid-sQkLZAkXmS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQkLZAkXmS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQkLZAkXmS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQkLZAkXmS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQkLZAkXmS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQkLZAkXmS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQkLZAkXmS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQkLZAkXmS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQkLZAkXmS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQkLZAkXmS .dropdown-toggle:after {
  display: none;
}
.cid-sQkLZAkXmS .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQkLZAkXmS .collapsed .btn {
  display: -webkit-flex;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse.collapsing,
.cid-sQkLZAkXmS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sQkLZAkXmS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sQkLZAkXmS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sQkLZAkXmS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sQkLZAkXmS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sQkLZAkXmS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sQkLZAkXmS .collapsed button.navbar-toggler {
  display: block;
}
.cid-sQkLZAkXmS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sQkLZAkXmS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sQkLZAkXmS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sQkLZAkXmS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sQkLZAkXmS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sQkLZAkXmS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sQkLZAkXmS .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sQkLZAkXmS img {
    height: 3.8rem !important;
  }
  .cid-sQkLZAkXmS .btn {
    display: -webkit-flex;
  }
  .cid-sQkLZAkXmS button.navbar-toggler {
    display: block;
  }
  .cid-sQkLZAkXmS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sQkLZAkXmS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sQkLZAkXmS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sQkLZAkXmS .navbar-collapse.collapsing,
  .cid-sQkLZAkXmS .navbar-collapse.show {
    display: block !important;
  }
  .cid-sQkLZAkXmS .navbar-collapse.collapsing .navbar-nav,
  .cid-sQkLZAkXmS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sQkLZAkXmS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sQkLZAkXmS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sQkLZAkXmS .navbar-collapse.collapsing .navbar-buttons,
  .cid-sQkLZAkXmS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sQkLZAkXmS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sQkLZAkXmS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sQkLZAkXmS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sQkLZAkXmS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sQkLZAkXmS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sQkLZAkXmS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sQkLZAkXmS .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sQkLZAkXmS .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sQkLZAkXmS .nav-link,
.cid-sQkLZAkXmS .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-sQkLZAkXmS .nav-link:hover,
.cid-sQkLZAkXmS .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-sQkSm7iOHS {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sQkRuSmibj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sQkRuSmibj .mbr-text {
  position: relative;
  text-align: left;
}
.cid-sQkRuSmibj .mbr-text:before {
  color: #333333;
  content: "\201C";
  font-size: 3em;
  line-height: 0.1em;
  margin-right: 0.2em;
  vertical-align: -0.4em;
  position: absolute;
  top: 10px;
  left: -2rem;
}
.cid-sQkRuSmibj img {
  object-fit: contain;
}
.cid-sQkRuSmibj .mbr-text:after {
  color: #333333;
  content: "\201D";
  font-size: 3em;
  line-height: 0.1em;
  vertical-align: -0.45em;
  position: absolute;
  bottom: 10px;
  right: -2rem;
}
@media (max-width: 767px) {
  .cid-sQkRuSmibj .mbr-text:after,
  .cid-sQkRuSmibj .mbr-text:before {
    display: none;
  }
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-t66xYoHi7k .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-t66xYoHi7k .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-t66xYoHi7k a {
  font-style: normal;
}
.cid-t66xYoHi7k .nav-link {
  font-family: EB Garamond !important;
}
.cid-t66xYoHi7k .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t66xYoHi7k .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t66xYoHi7k .nav-item:focus,
.cid-t66xYoHi7k .nav-link:focus {
  outline: none;
}
.cid-t66xYoHi7k .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t66xYoHi7k .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t66xYoHi7k .menu-logo {
  margin-right: auto;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t66xYoHi7k .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t66xYoHi7k .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t66xYoHi7k .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t66xYoHi7k .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t66xYoHi7k .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t66xYoHi7k .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-t66xYoHi7k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-t66xYoHi7k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t66xYoHi7k .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t66xYoHi7k .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t66xYoHi7k .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t66xYoHi7k .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t66xYoHi7k .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t66xYoHi7k .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t66xYoHi7k .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t66xYoHi7k .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t66xYoHi7k .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t66xYoHi7k button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t66xYoHi7k button.navbar-toggler:focus {
  outline: none;
}
.cid-t66xYoHi7k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t66xYoHi7k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t66xYoHi7k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t66xYoHi7k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t66xYoHi7k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t66xYoHi7k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66xYoHi7k nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t66xYoHi7k nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t66xYoHi7k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66xYoHi7k .dropdown-toggle:after {
  display: none;
}
.cid-t66xYoHi7k .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66xYoHi7k .collapsed .btn {
  display: -webkit-flex;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse.collapsing,
.cid-t66xYoHi7k .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t66xYoHi7k .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t66xYoHi7k .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t66xYoHi7k .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t66xYoHi7k .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t66xYoHi7k .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t66xYoHi7k .collapsed button.navbar-toggler {
  display: block;
}
.cid-t66xYoHi7k .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t66xYoHi7k .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66xYoHi7k .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t66xYoHi7k .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t66xYoHi7k .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t66xYoHi7k .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t66xYoHi7k .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66xYoHi7k img {
    height: 3.8rem !important;
  }
  .cid-t66xYoHi7k .btn {
    display: -webkit-flex;
  }
  .cid-t66xYoHi7k button.navbar-toggler {
    display: block;
  }
  .cid-t66xYoHi7k .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t66xYoHi7k .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66xYoHi7k .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t66xYoHi7k .navbar-collapse.collapsing,
  .cid-t66xYoHi7k .navbar-collapse.show {
    display: block !important;
  }
  .cid-t66xYoHi7k .navbar-collapse.collapsing .navbar-nav,
  .cid-t66xYoHi7k .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t66xYoHi7k .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t66xYoHi7k .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t66xYoHi7k .navbar-collapse.collapsing .navbar-buttons,
  .cid-t66xYoHi7k .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t66xYoHi7k .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t66xYoHi7k .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t66xYoHi7k .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t66xYoHi7k .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t66xYoHi7k .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t66xYoHi7k .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t66xYoHi7k .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t66xYoHi7k .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t66xYoHi7k .nav-link,
.cid-t66xYoHi7k .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-t66xYoHi7k .nav-link:hover,
.cid-t66xYoHi7k .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t6m3XoAfdD {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/buch2-394x394.jpg");
}
.cid-t6m3XoAfdD .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6m3XoAfdD .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6m3XoAfdD .row {
    text-align: center!important;
  }
}
.cid-t6m3XoAfdD .label-container {
  width: 100%;
}
.cid-t6m3XoAfdD .label-text {
  color: #f6f6f6;
  margin-bottom: 0;
}
.cid-t6m3XoAfdD .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6m3XoAfdD .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6m3XoAfdD .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6m3XoAfdD .mbr-text {
  color: #ffffff;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6m3XoAfdD .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6m3XoAfdD .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6m3XoAfdD .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t679kZ5Vfd {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9fafb;
}
.cid-t679kZ5Vfd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t679kZ5Vfd .form-control,
.cid-t679kZ5Vfd .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-t679kZ5Vfd .form-control::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input::-webkit-input-placeholder,
.cid-t679kZ5Vfd .form-control::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-t679kZ5Vfd .form-control:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:-moz-placeholder,
.cid-t679kZ5Vfd .form-control:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:-moz-placeholder {
  color: #606060;
}
.cid-t679kZ5Vfd .form-control:hover,
.cid-t679kZ5Vfd .field-input:hover,
.cid-t679kZ5Vfd .form-control:focus,
.cid-t679kZ5Vfd .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-t679kZ5Vfd .form-control:hover::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input:hover::-webkit-input-placeholder,
.cid-t679kZ5Vfd .form-control:focus::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input:focus::-webkit-input-placeholder,
.cid-t679kZ5Vfd .form-control:hover::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input:hover::-webkit-input-placeholder,
.cid-t679kZ5Vfd .form-control:focus::-webkit-input-placeholder,
.cid-t679kZ5Vfd .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-t679kZ5Vfd .form-control:hover:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:hover:-moz-placeholder,
.cid-t679kZ5Vfd .form-control:focus:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:focus:-moz-placeholder,
.cid-t679kZ5Vfd .form-control:hover:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:hover:-moz-placeholder,
.cid-t679kZ5Vfd .form-control:focus:-moz-placeholder,
.cid-t679kZ5Vfd .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-t679kZ5Vfd textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-t679kZ5Vfd .jq-number__spin:hover,
.cid-t679kZ5Vfd .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t679kZ5Vfd .jq-number__spin {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t679kZ5Vfd .jq-selectbox li,
.cid-t679kZ5Vfd .jq-selectbox li {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-t679kZ5Vfd .jq-selectbox li:hover,
.cid-t679kZ5Vfd .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-t679kZ5Vfd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t679kZ5Vfd .jq-number__spin.minus:hover:after,
.cid-t679kZ5Vfd .jq-number__spin.plus:hover:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-t679kZ5Vfd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t679kZ5Vfd .jq-number__spin.minus:after,
.cid-t679kZ5Vfd .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-t679kZ5Vfd .wrap {
  position: relative;
}
.cid-t679kZ5Vfd .mbr-form {
  z-index: 1;
}
.cid-t679kZ5Vfd input::-webkit-clear-button {
  display: none;
}
.cid-t679kZ5Vfd input::-webkit-inner-spin-button {
  display: none;
}
.cid-t679kZ5Vfd input::-webkit-outer-spin-button {
  display: none;
}
.cid-t679kZ5Vfd input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t679kZ5Vfd .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-t679kZ5Vfd .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-t679kZ5Vfd .mbr-section-title {
  color: #404040;
}
.cid-t679kZ5Vfd .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-t679kZ5Vfd .mbr-section-subtitle {
  color: #545466;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-t679kZ5Vfd .mbr-text {
  color: #606060;
}
.cid-t679kZ5Vfd .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-t679kZ5Vfd .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-t679kZ5Vfd .required {
  width: 100%;
  color: #808080;
}
.cid-t679kZ5Vfd img {
  width: 100%;
  -webkit-mask-box-image: url("../../../assets/images/blob1.svg");
  mask-image: url("../../../assets/images/blob1.svg");
  -webkit-mask-box-image-repeat: space;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: auto;
  max-width: 100%;
  -webkit-mask-size: auto auto;
  position: relative;
}
.cid-t679kZ5Vfd .counter {
  top: 45%;
  left: 0%;
}
.cid-t679kZ5Vfd .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-t679kZ5Vfd .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-t679kZ5Vfd .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-t679kZ5Vfd .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-t679kZ5Vfd img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-t679kZ5Vfd .required {
    text-align: center;
  }
}
.cid-t679kZ5Vfd .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-t679kZ5Vfd .form-control-label,
.cid-t679kZ5Vfd .form-check {
  margin-left: 20px;
}
.cid-t679kZ5Vfd LABEL {
  color: #606060;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-t66CjUGzA0 .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-t66CjUGzA0 .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-t66CjUGzA0 a {
  font-style: normal;
}
.cid-t66CjUGzA0 .nav-link {
  font-family: EB Garamond !important;
}
.cid-t66CjUGzA0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t66CjUGzA0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t66CjUGzA0 .nav-item:focus,
.cid-t66CjUGzA0 .nav-link:focus {
  outline: none;
}
.cid-t66CjUGzA0 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t66CjUGzA0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t66CjUGzA0 .menu-logo {
  margin-right: auto;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t66CjUGzA0 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t66CjUGzA0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t66CjUGzA0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t66CjUGzA0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t66CjUGzA0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t66CjUGzA0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-t66CjUGzA0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-t66CjUGzA0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t66CjUGzA0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t66CjUGzA0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t66CjUGzA0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t66CjUGzA0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t66CjUGzA0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t66CjUGzA0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t66CjUGzA0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t66CjUGzA0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t66CjUGzA0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t66CjUGzA0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t66CjUGzA0 button.navbar-toggler:focus {
  outline: none;
}
.cid-t66CjUGzA0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t66CjUGzA0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t66CjUGzA0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t66CjUGzA0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t66CjUGzA0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t66CjUGzA0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66CjUGzA0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t66CjUGzA0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t66CjUGzA0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66CjUGzA0 .dropdown-toggle:after {
  display: none;
}
.cid-t66CjUGzA0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66CjUGzA0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse.collapsing,
.cid-t66CjUGzA0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t66CjUGzA0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t66CjUGzA0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t66CjUGzA0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t66CjUGzA0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t66CjUGzA0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t66CjUGzA0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-t66CjUGzA0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t66CjUGzA0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66CjUGzA0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t66CjUGzA0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t66CjUGzA0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t66CjUGzA0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t66CjUGzA0 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66CjUGzA0 img {
    height: 3.8rem !important;
  }
  .cid-t66CjUGzA0 .btn {
    display: -webkit-flex;
  }
  .cid-t66CjUGzA0 button.navbar-toggler {
    display: block;
  }
  .cid-t66CjUGzA0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t66CjUGzA0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66CjUGzA0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t66CjUGzA0 .navbar-collapse.collapsing,
  .cid-t66CjUGzA0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-t66CjUGzA0 .navbar-collapse.collapsing .navbar-nav,
  .cid-t66CjUGzA0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t66CjUGzA0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t66CjUGzA0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t66CjUGzA0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-t66CjUGzA0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t66CjUGzA0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t66CjUGzA0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t66CjUGzA0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t66CjUGzA0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t66CjUGzA0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t66CjUGzA0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t66CjUGzA0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t66CjUGzA0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t66CjUGzA0 .nav-link,
.cid-t66CjUGzA0 .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-t66CjUGzA0 .nav-link:hover,
.cid-t66CjUGzA0 .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t66EShHoAX {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t66EShHoAX DIV {
  text-align: center;
}
.cid-t66EShHoAX H1 {
  color: #f6f6f6;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-t66WlqISW9 .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-t66WlqISW9 .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-t66WlqISW9 a {
  font-style: normal;
}
.cid-t66WlqISW9 .nav-link {
  font-family: EB Garamond !important;
}
.cid-t66WlqISW9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t66WlqISW9 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t66WlqISW9 .nav-item:focus,
.cid-t66WlqISW9 .nav-link:focus {
  outline: none;
}
.cid-t66WlqISW9 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t66WlqISW9 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t66WlqISW9 .menu-logo {
  margin-right: auto;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t66WlqISW9 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t66WlqISW9 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t66WlqISW9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t66WlqISW9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t66WlqISW9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t66WlqISW9 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-t66WlqISW9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-t66WlqISW9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t66WlqISW9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t66WlqISW9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t66WlqISW9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t66WlqISW9 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t66WlqISW9 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t66WlqISW9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t66WlqISW9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t66WlqISW9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t66WlqISW9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t66WlqISW9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t66WlqISW9 button.navbar-toggler:focus {
  outline: none;
}
.cid-t66WlqISW9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t66WlqISW9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t66WlqISW9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t66WlqISW9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t66WlqISW9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t66WlqISW9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66WlqISW9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t66WlqISW9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t66WlqISW9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t66WlqISW9 .dropdown-toggle:after {
  display: none;
}
.cid-t66WlqISW9 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66WlqISW9 .collapsed .btn {
  display: -webkit-flex;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse.collapsing,
.cid-t66WlqISW9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t66WlqISW9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t66WlqISW9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t66WlqISW9 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t66WlqISW9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t66WlqISW9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t66WlqISW9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-t66WlqISW9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t66WlqISW9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t66WlqISW9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t66WlqISW9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t66WlqISW9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t66WlqISW9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t66WlqISW9 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66WlqISW9 img {
    height: 3.8rem !important;
  }
  .cid-t66WlqISW9 .btn {
    display: -webkit-flex;
  }
  .cid-t66WlqISW9 button.navbar-toggler {
    display: block;
  }
  .cid-t66WlqISW9 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t66WlqISW9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t66WlqISW9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t66WlqISW9 .navbar-collapse.collapsing,
  .cid-t66WlqISW9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-t66WlqISW9 .navbar-collapse.collapsing .navbar-nav,
  .cid-t66WlqISW9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t66WlqISW9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t66WlqISW9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t66WlqISW9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-t66WlqISW9 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t66WlqISW9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t66WlqISW9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t66WlqISW9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t66WlqISW9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t66WlqISW9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t66WlqISW9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t66WlqISW9 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t66WlqISW9 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t66WlqISW9 .nav-link,
.cid-t66WlqISW9 .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-t66WlqISW9 .nav-link:hover,
.cid-t66WlqISW9 .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t66Wlr8SQr {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-t66Wlr8SQr DIV {
  text-align: center;
}
.cid-t66Wlr8SQr H1 {
  color: #f6f6f6;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-t6uvLxw8iV .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-t6uvLxw8iV .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-t6uvLxw8iV a {
  font-style: normal;
}
.cid-t6uvLxw8iV .nav-link {
  font-family: EB Garamond !important;
}
.cid-t6uvLxw8iV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t6uvLxw8iV .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t6uvLxw8iV .nav-item:focus,
.cid-t6uvLxw8iV .nav-link:focus {
  outline: none;
}
.cid-t6uvLxw8iV .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t6uvLxw8iV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t6uvLxw8iV .menu-logo {
  margin-right: auto;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t6uvLxw8iV .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t6uvLxw8iV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t6uvLxw8iV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t6uvLxw8iV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t6uvLxw8iV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t6uvLxw8iV .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-t6uvLxw8iV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-t6uvLxw8iV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t6uvLxw8iV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t6uvLxw8iV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t6uvLxw8iV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t6uvLxw8iV .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t6uvLxw8iV .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t6uvLxw8iV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t6uvLxw8iV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t6uvLxw8iV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t6uvLxw8iV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t6uvLxw8iV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t6uvLxw8iV button.navbar-toggler:focus {
  outline: none;
}
.cid-t6uvLxw8iV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t6uvLxw8iV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t6uvLxw8iV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t6uvLxw8iV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t6uvLxw8iV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t6uvLxw8iV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6uvLxw8iV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t6uvLxw8iV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t6uvLxw8iV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t6uvLxw8iV .dropdown-toggle:after {
  display: none;
}
.cid-t6uvLxw8iV .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t6uvLxw8iV .collapsed .btn {
  display: -webkit-flex;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse.collapsing,
.cid-t6uvLxw8iV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t6uvLxw8iV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t6uvLxw8iV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t6uvLxw8iV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t6uvLxw8iV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t6uvLxw8iV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t6uvLxw8iV .collapsed button.navbar-toggler {
  display: block;
}
.cid-t6uvLxw8iV .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t6uvLxw8iV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t6uvLxw8iV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t6uvLxw8iV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t6uvLxw8iV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t6uvLxw8iV .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-t6uvLxw8iV .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t6uvLxw8iV img {
    height: 3.8rem !important;
  }
  .cid-t6uvLxw8iV .btn {
    display: -webkit-flex;
  }
  .cid-t6uvLxw8iV button.navbar-toggler {
    display: block;
  }
  .cid-t6uvLxw8iV .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t6uvLxw8iV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t6uvLxw8iV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t6uvLxw8iV .navbar-collapse.collapsing,
  .cid-t6uvLxw8iV .navbar-collapse.show {
    display: block !important;
  }
  .cid-t6uvLxw8iV .navbar-collapse.collapsing .navbar-nav,
  .cid-t6uvLxw8iV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t6uvLxw8iV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t6uvLxw8iV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t6uvLxw8iV .navbar-collapse.collapsing .navbar-buttons,
  .cid-t6uvLxw8iV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t6uvLxw8iV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t6uvLxw8iV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t6uvLxw8iV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t6uvLxw8iV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t6uvLxw8iV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t6uvLxw8iV .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t6uvLxw8iV .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t6uvLxw8iV .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t6uvLxw8iV .nav-link,
.cid-t6uvLxw8iV .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-t6uvLxw8iV .nav-link:hover,
.cid-t6uvLxw8iV .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-t6uOIKEgtl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/buch2-394x394.jpg");
}
.cid-t6uOIKEgtl .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-t6uOIKEgtl .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-t6uOIKEgtl .row {
    text-align: center!important;
  }
}
.cid-t6uOIKEgtl .label-container {
  width: 100%;
}
.cid-t6uOIKEgtl .label-text {
  color: #f6f6f6;
  margin-bottom: 0;
}
.cid-t6uOIKEgtl .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-t6uOIKEgtl .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-t6uOIKEgtl .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-t6uOIKEgtl .mbr-text {
  color: #ffffff;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-t6uOIKEgtl .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-t6uOIKEgtl .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t6uOIKEgtl .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-t6uwoC5C7a {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ececec;
}
.cid-t6uwoC5C7a .mbr-media {
  position: relative;
}
.cid-t6uwoC5C7a .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6uwoC5C7a a:hover {
  background-image: none!important;
}
.cid-t6uwoC5C7a .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t6uwoC5C7a .svg-top .st0 {
  fill: #ececec;
}
@media (max-width: 992px) {
  .cid-t6uwoC5C7a .svg-top {
    width: 1000px;
  }
}
.cid-t6uwoC5C7a .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t6uwoC5C7a .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t6uwoC5C7a .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6uwoC5C7a .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6uwoC5C7a .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6uwoC5C7a .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6uwoC5C7a .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6uwoC5C7a .mbr-section-title {
  color: #3d626c;
}
.cid-t6uwtwR8me {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #bcbcc6;
}
.cid-t6uwtwR8me .mbr-media {
  position: relative;
}
.cid-t6uwtwR8me .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6uwtwR8me a:hover {
  background-image: none!important;
}
.cid-t6uwtwR8me .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t6uwtwR8me .svg-top .st0 {
  fill: #bcbcc6;
}
@media (max-width: 992px) {
  .cid-t6uwtwR8me .svg-top {
    width: 1000px;
  }
}
.cid-t6uwtwR8me .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t6uwtwR8me .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t6uwtwR8me .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6uwtwR8me .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6uwtwR8me .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6uwtwR8me .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6uwtwR8me .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6uwtwR8me .mbr-section-title {
  color: #3d626c;
}
.cid-t6uwviN3j1 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ececec;
}
.cid-t6uwviN3j1 .mbr-media {
  position: relative;
}
.cid-t6uwviN3j1 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6uwviN3j1 a:hover {
  background-image: none!important;
}
.cid-t6uwviN3j1 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t6uwviN3j1 .svg-top .st0 {
  fill: #ececec;
}
@media (max-width: 992px) {
  .cid-t6uwviN3j1 .svg-top {
    width: 1000px;
  }
}
.cid-t6uwviN3j1 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t6uwviN3j1 .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t6uwviN3j1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6uwviN3j1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6uwviN3j1 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6uwviN3j1 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6uwviN3j1 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6uwviN3j1 .mbr-section-title {
  color: #3d626c;
}
.cid-t6uww006OX {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #bcbcc6;
}
.cid-t6uww006OX .mbr-media {
  position: relative;
}
.cid-t6uww006OX .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6uww006OX a:hover {
  background-image: none!important;
}
.cid-t6uww006OX .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t6uww006OX .svg-top .st0 {
  fill: #bcbcc6;
}
@media (max-width: 992px) {
  .cid-t6uww006OX .svg-top {
    width: 1000px;
  }
}
.cid-t6uww006OX .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t6uww006OX .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t6uww006OX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6uww006OX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6uww006OX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6uww006OX .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6uww006OX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6uww006OX .mbr-section-title {
  color: #3d626c;
}
.cid-t6uwwzHb8l {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ececec;
}
.cid-t6uwwzHb8l .mbr-media {
  position: relative;
}
.cid-t6uwwzHb8l .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-t6uwwzHb8l a:hover {
  background-image: none!important;
}
.cid-t6uwwzHb8l .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-t6uwwzHb8l .svg-top .st0 {
  fill: #ececec;
}
@media (max-width: 992px) {
  .cid-t6uwwzHb8l .svg-top {
    width: 1000px;
  }
}
.cid-t6uwwzHb8l .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-t6uwwzHb8l .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-t6uwwzHb8l .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-t6uwwzHb8l .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-t6uwwzHb8l .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-t6uwwzHb8l .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-t6uwwzHb8l .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t6uwwzHb8l .mbr-section-title {
  color: #3d626c;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-toKWxtqF5C .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-toKWxtqF5C .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-toKWxtqF5C a {
  font-style: normal;
}
.cid-toKWxtqF5C .nav-link {
  font-family: EB Garamond !important;
}
.cid-toKWxtqF5C .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-toKWxtqF5C .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-toKWxtqF5C .nav-item:focus,
.cid-toKWxtqF5C .nav-link:focus {
  outline: none;
}
.cid-toKWxtqF5C .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-toKWxtqF5C .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-toKWxtqF5C .menu-logo {
  margin-right: auto;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-toKWxtqF5C .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-toKWxtqF5C .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-toKWxtqF5C .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-toKWxtqF5C .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-toKWxtqF5C .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-toKWxtqF5C .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-toKWxtqF5C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-toKWxtqF5C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-toKWxtqF5C .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-toKWxtqF5C .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-toKWxtqF5C .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-toKWxtqF5C .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-toKWxtqF5C .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-toKWxtqF5C .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-toKWxtqF5C .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-toKWxtqF5C .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-toKWxtqF5C .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-toKWxtqF5C button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-toKWxtqF5C button.navbar-toggler:focus {
  outline: none;
}
.cid-toKWxtqF5C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-toKWxtqF5C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-toKWxtqF5C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-toKWxtqF5C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-toKWxtqF5C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-toKWxtqF5C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-toKWxtqF5C nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-toKWxtqF5C nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-toKWxtqF5C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-toKWxtqF5C .dropdown-toggle:after {
  display: none;
}
.cid-toKWxtqF5C .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-toKWxtqF5C .collapsed .btn {
  display: -webkit-flex;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse.collapsing,
.cid-toKWxtqF5C .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-toKWxtqF5C .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-toKWxtqF5C .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-toKWxtqF5C .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-toKWxtqF5C .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-toKWxtqF5C .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-toKWxtqF5C .collapsed button.navbar-toggler {
  display: block;
}
.cid-toKWxtqF5C .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-toKWxtqF5C .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-toKWxtqF5C .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-toKWxtqF5C .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-toKWxtqF5C .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-toKWxtqF5C .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-toKWxtqF5C .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-toKWxtqF5C img {
    height: 3.8rem !important;
  }
  .cid-toKWxtqF5C .btn {
    display: -webkit-flex;
  }
  .cid-toKWxtqF5C button.navbar-toggler {
    display: block;
  }
  .cid-toKWxtqF5C .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-toKWxtqF5C .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-toKWxtqF5C .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-toKWxtqF5C .navbar-collapse.collapsing,
  .cid-toKWxtqF5C .navbar-collapse.show {
    display: block !important;
  }
  .cid-toKWxtqF5C .navbar-collapse.collapsing .navbar-nav,
  .cid-toKWxtqF5C .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-toKWxtqF5C .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-toKWxtqF5C .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-toKWxtqF5C .navbar-collapse.collapsing .navbar-buttons,
  .cid-toKWxtqF5C .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-toKWxtqF5C .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-toKWxtqF5C .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-toKWxtqF5C .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-toKWxtqF5C .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-toKWxtqF5C .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-toKWxtqF5C .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-toKWxtqF5C .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-toKWxtqF5C .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-toKWxtqF5C .nav-link,
.cid-toKWxtqF5C .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-toKWxtqF5C .nav-link:hover,
.cid-toKWxtqF5C .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-toKWxtSU2E {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/buch2-394x394.jpg");
}
.cid-toKWxtSU2E .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-toKWxtSU2E .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-toKWxtSU2E .row {
    text-align: center!important;
  }
}
.cid-toKWxtSU2E .label-container {
  width: 100%;
}
.cid-toKWxtSU2E .label-text {
  color: #f6f6f6;
  margin-bottom: 0;
}
.cid-toKWxtSU2E .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-toKWxtSU2E .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-toKWxtSU2E .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-toKWxtSU2E .mbr-text {
  color: #ffffff;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-toKWxtSU2E .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-toKWxtSU2E .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-toKWxtSU2E .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-toKWxui3ud {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9fafb;
}
.cid-toKWxui3ud .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-toKWxui3ud .form-control,
.cid-toKWxui3ud .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-toKWxui3ud .form-control::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input::-webkit-input-placeholder,
.cid-toKWxui3ud .form-control::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-toKWxui3ud .form-control:-moz-placeholder,
.cid-toKWxui3ud .field-input:-moz-placeholder,
.cid-toKWxui3ud .form-control:-moz-placeholder,
.cid-toKWxui3ud .field-input:-moz-placeholder {
  color: #606060;
}
.cid-toKWxui3ud .form-control:hover,
.cid-toKWxui3ud .field-input:hover,
.cid-toKWxui3ud .form-control:focus,
.cid-toKWxui3ud .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-toKWxui3ud .form-control:hover::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input:hover::-webkit-input-placeholder,
.cid-toKWxui3ud .form-control:focus::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input:focus::-webkit-input-placeholder,
.cid-toKWxui3ud .form-control:hover::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input:hover::-webkit-input-placeholder,
.cid-toKWxui3ud .form-control:focus::-webkit-input-placeholder,
.cid-toKWxui3ud .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-toKWxui3ud .form-control:hover:-moz-placeholder,
.cid-toKWxui3ud .field-input:hover:-moz-placeholder,
.cid-toKWxui3ud .form-control:focus:-moz-placeholder,
.cid-toKWxui3ud .field-input:focus:-moz-placeholder,
.cid-toKWxui3ud .form-control:hover:-moz-placeholder,
.cid-toKWxui3ud .field-input:hover:-moz-placeholder,
.cid-toKWxui3ud .form-control:focus:-moz-placeholder,
.cid-toKWxui3ud .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-toKWxui3ud textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-toKWxui3ud .jq-number__spin:hover,
.cid-toKWxui3ud .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-toKWxui3ud .jq-number__spin {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-toKWxui3ud .jq-selectbox li,
.cid-toKWxui3ud .jq-selectbox li {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-toKWxui3ud .jq-selectbox li:hover,
.cid-toKWxui3ud .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-toKWxui3ud .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-toKWxui3ud .jq-number__spin.minus:hover:after,
.cid-toKWxui3ud .jq-number__spin.plus:hover:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-toKWxui3ud .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-toKWxui3ud .jq-number__spin.minus:after,
.cid-toKWxui3ud .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-toKWxui3ud .wrap {
  position: relative;
}
.cid-toKWxui3ud .mbr-form {
  z-index: 1;
}
.cid-toKWxui3ud input::-webkit-clear-button {
  display: none;
}
.cid-toKWxui3ud input::-webkit-inner-spin-button {
  display: none;
}
.cid-toKWxui3ud input::-webkit-outer-spin-button {
  display: none;
}
.cid-toKWxui3ud input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-toKWxui3ud .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-toKWxui3ud .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-toKWxui3ud .mbr-section-title {
  color: #404040;
}
.cid-toKWxui3ud .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-toKWxui3ud .mbr-section-subtitle {
  color: #545466;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-toKWxui3ud .mbr-text {
  color: #606060;
}
.cid-toKWxui3ud .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-toKWxui3ud .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-toKWxui3ud .required {
  width: 100%;
  color: #808080;
}
.cid-toKWxui3ud img {
  width: 100%;
  -webkit-mask-box-image: url("../../../assets/images/blob1.svg");
  mask-image: url("../../../assets/images/blob1.svg");
  -webkit-mask-box-image-repeat: space;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: auto;
  max-width: 100%;
  -webkit-mask-size: auto auto;
  position: relative;
}
.cid-toKWxui3ud .counter {
  top: 45%;
  left: 0%;
}
.cid-toKWxui3ud .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-toKWxui3ud .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-toKWxui3ud .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-toKWxui3ud .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-toKWxui3ud img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-toKWxui3ud .required {
    text-align: center;
  }
}
.cid-toKWxui3ud .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-toKWxui3ud .form-control-label,
.cid-toKWxui3ud .form-check {
  margin-left: 20px;
}
.cid-toKWxui3ud LABEL {
  color: #606060;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tsCkzxiTAA .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-tsCkzxiTAA .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-tsCkzxiTAA a {
  font-style: normal;
}
.cid-tsCkzxiTAA .nav-link {
  font-family: EB Garamond !important;
}
.cid-tsCkzxiTAA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tsCkzxiTAA .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tsCkzxiTAA .nav-item:focus,
.cid-tsCkzxiTAA .nav-link:focus {
  outline: none;
}
.cid-tsCkzxiTAA .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsCkzxiTAA .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tsCkzxiTAA .menu-logo {
  margin-right: auto;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tsCkzxiTAA .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tsCkzxiTAA .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tsCkzxiTAA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tsCkzxiTAA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsCkzxiTAA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tsCkzxiTAA .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tsCkzxiTAA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tsCkzxiTAA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsCkzxiTAA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tsCkzxiTAA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsCkzxiTAA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tsCkzxiTAA .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tsCkzxiTAA .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tsCkzxiTAA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tsCkzxiTAA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tsCkzxiTAA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tsCkzxiTAA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tsCkzxiTAA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tsCkzxiTAA button.navbar-toggler:focus {
  outline: none;
}
.cid-tsCkzxiTAA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsCkzxiTAA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsCkzxiTAA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsCkzxiTAA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsCkzxiTAA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsCkzxiTAA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsCkzxiTAA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsCkzxiTAA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsCkzxiTAA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsCkzxiTAA .dropdown-toggle:after {
  display: none;
}
.cid-tsCkzxiTAA .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsCkzxiTAA .collapsed .btn {
  display: -webkit-flex;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse.collapsing,
.cid-tsCkzxiTAA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tsCkzxiTAA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tsCkzxiTAA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tsCkzxiTAA .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tsCkzxiTAA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tsCkzxiTAA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tsCkzxiTAA .collapsed button.navbar-toggler {
  display: block;
}
.cid-tsCkzxiTAA .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tsCkzxiTAA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsCkzxiTAA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tsCkzxiTAA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tsCkzxiTAA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tsCkzxiTAA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tsCkzxiTAA .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsCkzxiTAA img {
    height: 3.8rem !important;
  }
  .cid-tsCkzxiTAA .btn {
    display: -webkit-flex;
  }
  .cid-tsCkzxiTAA button.navbar-toggler {
    display: block;
  }
  .cid-tsCkzxiTAA .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tsCkzxiTAA .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsCkzxiTAA .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tsCkzxiTAA .navbar-collapse.collapsing,
  .cid-tsCkzxiTAA .navbar-collapse.show {
    display: block !important;
  }
  .cid-tsCkzxiTAA .navbar-collapse.collapsing .navbar-nav,
  .cid-tsCkzxiTAA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tsCkzxiTAA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tsCkzxiTAA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tsCkzxiTAA .navbar-collapse.collapsing .navbar-buttons,
  .cid-tsCkzxiTAA .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tsCkzxiTAA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tsCkzxiTAA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsCkzxiTAA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tsCkzxiTAA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tsCkzxiTAA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tsCkzxiTAA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tsCkzxiTAA .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tsCkzxiTAA .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tsCkzxiTAA .nav-link,
.cid-tsCkzxiTAA .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tsCkzxiTAA .nav-link:hover,
.cid-tsCkzxiTAA .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tsCkzxrQhd {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/rede-buehne-700x467-700x467.jpg");
}
.cid-tsCkzxrQhd .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-tsCkzxrQhd .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-tsCkzxrQhd .row {
    text-align: center!important;
  }
}
.cid-tsCkzxrQhd .label-container {
  width: 100%;
}
.cid-tsCkzxrQhd .label-text {
  color: #f6f6f6;
  margin-bottom: 0;
}
.cid-tsCkzxrQhd .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-tsCkzxrQhd .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-tsCkzxrQhd .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-tsCkzxrQhd .mbr-text {
  color: #ffffff;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-tsCkzxrQhd .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-tsCkzxrQhd .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tsCkzxrQhd .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tsComVpsDG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tsComVpsDG .mbr-text {
  color: #879a9f;
}
@media (min-width: 922px) {
  .cid-tsComVpsDG .card-wrapper {
    padding: 0 1rem;
  }
}
.cid-tsComVpsDG .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
  line-height: 2;
}
.cid-tsComVpsDG .counter-container ul li {
  margin-bottom: 0.2rem;
  list-style: none;
  position: relative;
}
.cid-tsComVpsDG .counter-container ul li:before {
  position: absolute;
  left: -2.2rem;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 14px 16px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #3d626c;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cid-tsComVpsDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tsComVpsDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tsComVpsDG .card-title {
  text-align: left;
}
.cid-tsComVpsDG .mbr-text,
.cid-tsComVpsDG .mbr-section-btn {
  color: #545466;
}
.cid-tsEbeJnRQu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f8f8f8;
}
.cid-tsEbeJnRQu .google-map {
  height: 25rem;
  position: relative;
}
.cid-tsEbeJnRQu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tsEbeJnRQu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tsEbeJnRQu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tsEbeJnRQu .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tsEbeJnRQu .text-wrap {
  max-width: 300px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-tsEbeJnRQu .map1 {
    padding-bottom: 2rem;
  }
}
.cid-tsEbeJnRQu .mbr-text,
.cid-tsEbeJnRQu .sig-img {
  color: #9c969b;
}
.cid-tsEe5A9Ee7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsEe5A9Ee7 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-tsEe5A9Ee7 .counter-container ul li {
  margin-bottom: 0.2rem;
  list-style: none;
  position: relative;
}
.cid-tsEe5A9Ee7 .counter-container ul li:before {
  position: absolute;
  left: -2.2rem;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 11px 16px;
  line-height: 20px;
  transition: all 0.2s;
  color: #ffffff;
  background: #767676;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cid-tsEe5A9Ee7 .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-tsEe5A9Ee7 img {
    width: 90%;
  }
}
.cid-tsEe5A9Ee7 .card-title DIV {
  text-align: center;
}
.cid-tsEe5A9Ee7 .card-title {
  text-align: center;
}
.cid-tsEe5A9Ee7 .mbr-text,
.cid-tsEe5A9Ee7 .mbr-section-btn {
  color: #465052;
  text-align: center;
}
.cid-tsCkzxyrqK {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9fafb;
}
.cid-tsCkzxyrqK .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tsCkzxyrqK .form-control,
.cid-tsCkzxyrqK .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-tsCkzxyrqK .form-control::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input::-webkit-input-placeholder,
.cid-tsCkzxyrqK .form-control::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-tsCkzxyrqK .form-control:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:-moz-placeholder,
.cid-tsCkzxyrqK .form-control:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:-moz-placeholder {
  color: #606060;
}
.cid-tsCkzxyrqK .form-control:hover,
.cid-tsCkzxyrqK .field-input:hover,
.cid-tsCkzxyrqK .form-control:focus,
.cid-tsCkzxyrqK .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tsCkzxyrqK .form-control:hover::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input:hover::-webkit-input-placeholder,
.cid-tsCkzxyrqK .form-control:focus::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input:focus::-webkit-input-placeholder,
.cid-tsCkzxyrqK .form-control:hover::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input:hover::-webkit-input-placeholder,
.cid-tsCkzxyrqK .form-control:focus::-webkit-input-placeholder,
.cid-tsCkzxyrqK .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-tsCkzxyrqK .form-control:hover:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:hover:-moz-placeholder,
.cid-tsCkzxyrqK .form-control:focus:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:focus:-moz-placeholder,
.cid-tsCkzxyrqK .form-control:hover:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:hover:-moz-placeholder,
.cid-tsCkzxyrqK .form-control:focus:-moz-placeholder,
.cid-tsCkzxyrqK .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-tsCkzxyrqK textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-tsCkzxyrqK .jq-number__spin:hover,
.cid-tsCkzxyrqK .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tsCkzxyrqK .jq-number__spin {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tsCkzxyrqK .jq-selectbox li,
.cid-tsCkzxyrqK .jq-selectbox li {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-tsCkzxyrqK .jq-selectbox li:hover,
.cid-tsCkzxyrqK .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-tsCkzxyrqK .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tsCkzxyrqK .jq-number__spin.minus:hover:after,
.cid-tsCkzxyrqK .jq-number__spin.plus:hover:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-tsCkzxyrqK .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tsCkzxyrqK .jq-number__spin.minus:after,
.cid-tsCkzxyrqK .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-tsCkzxyrqK .wrap {
  position: relative;
}
.cid-tsCkzxyrqK .mbr-form {
  z-index: 1;
}
.cid-tsCkzxyrqK input::-webkit-clear-button {
  display: none;
}
.cid-tsCkzxyrqK input::-webkit-inner-spin-button {
  display: none;
}
.cid-tsCkzxyrqK input::-webkit-outer-spin-button {
  display: none;
}
.cid-tsCkzxyrqK input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tsCkzxyrqK .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tsCkzxyrqK .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tsCkzxyrqK .mbr-section-title {
  color: #404040;
}
.cid-tsCkzxyrqK .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tsCkzxyrqK .mbr-section-subtitle {
  color: #545466;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tsCkzxyrqK .mbr-text {
  color: #606060;
}
.cid-tsCkzxyrqK .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-tsCkzxyrqK .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-tsCkzxyrqK .required {
  width: 100%;
  color: #808080;
}
.cid-tsCkzxyrqK img {
  width: 100%;
}
.cid-tsCkzxyrqK .counter {
  top: 45%;
  left: 0%;
}
.cid-tsCkzxyrqK .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-tsCkzxyrqK .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-tsCkzxyrqK .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-tsCkzxyrqK .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tsCkzxyrqK img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tsCkzxyrqK .required {
    text-align: center;
  }
}
.cid-tsCkzxyrqK .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-tsCkzxyrqK .form-control-label,
.cid-tsCkzxyrqK .form-check {
  margin-left: 20px;
}
.cid-tsCkzxyrqK LABEL {
  color: #606060;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tsD40nr0QE .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-tsD40nr0QE .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-tsD40nr0QE a {
  font-style: normal;
}
.cid-tsD40nr0QE .nav-link {
  font-family: EB Garamond !important;
}
.cid-tsD40nr0QE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tsD40nr0QE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tsD40nr0QE .nav-item:focus,
.cid-tsD40nr0QE .nav-link:focus {
  outline: none;
}
.cid-tsD40nr0QE .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tsD40nr0QE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tsD40nr0QE .menu-logo {
  margin-right: auto;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tsD40nr0QE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tsD40nr0QE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tsD40nr0QE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tsD40nr0QE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tsD40nr0QE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tsD40nr0QE .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tsD40nr0QE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tsD40nr0QE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tsD40nr0QE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tsD40nr0QE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tsD40nr0QE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tsD40nr0QE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tsD40nr0QE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tsD40nr0QE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tsD40nr0QE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tsD40nr0QE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tsD40nr0QE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tsD40nr0QE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tsD40nr0QE button.navbar-toggler:focus {
  outline: none;
}
.cid-tsD40nr0QE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tsD40nr0QE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tsD40nr0QE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tsD40nr0QE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tsD40nr0QE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tsD40nr0QE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsD40nr0QE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tsD40nr0QE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tsD40nr0QE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tsD40nr0QE .dropdown-toggle:after {
  display: none;
}
.cid-tsD40nr0QE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsD40nr0QE .collapsed .btn {
  display: -webkit-flex;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse.collapsing,
.cid-tsD40nr0QE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tsD40nr0QE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tsD40nr0QE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tsD40nr0QE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tsD40nr0QE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tsD40nr0QE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tsD40nr0QE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tsD40nr0QE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tsD40nr0QE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tsD40nr0QE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tsD40nr0QE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tsD40nr0QE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tsD40nr0QE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tsD40nr0QE .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsD40nr0QE img {
    height: 3.8rem !important;
  }
  .cid-tsD40nr0QE .btn {
    display: -webkit-flex;
  }
  .cid-tsD40nr0QE button.navbar-toggler {
    display: block;
  }
  .cid-tsD40nr0QE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tsD40nr0QE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tsD40nr0QE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tsD40nr0QE .navbar-collapse.collapsing,
  .cid-tsD40nr0QE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tsD40nr0QE .navbar-collapse.collapsing .navbar-nav,
  .cid-tsD40nr0QE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tsD40nr0QE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tsD40nr0QE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tsD40nr0QE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tsD40nr0QE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tsD40nr0QE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tsD40nr0QE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tsD40nr0QE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tsD40nr0QE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tsD40nr0QE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tsD40nr0QE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tsD40nr0QE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tsD40nr0QE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tsD40nr0QE .nav-link,
.cid-tsD40nr0QE .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tsD40nr0QE .nav-link:hover,
.cid-tsD40nr0QE .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tsD40nHV6X {
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tsD40nHV6X DIV {
  text-align: center;
}
.cid-tsD40nHV6X H1 {
  color: #f6f6f6;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-tvctRLERzW .navbar {
  padding: .5rem 0;
  background: #545466;
  transition: none;
  min-height: 77px;
}
.cid-tvctRLERzW .navbar-dropdown.bg-color.transparent.opened {
  background: #545466;
}
.cid-tvctRLERzW a {
  font-style: normal;
}
.cid-tvctRLERzW .nav-link {
  font-family: EB Garamond !important;
}
.cid-tvctRLERzW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tvctRLERzW .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0.5rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tvctRLERzW .nav-item:focus,
.cid-tvctRLERzW .nav-link:focus {
  outline: none;
}
.cid-tvctRLERzW .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tvctRLERzW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tvctRLERzW .menu-logo {
  margin-right: auto;
}
.cid-tvctRLERzW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-brand-sub {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tvctRLERzW .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tvctRLERzW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tvctRLERzW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tvctRLERzW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tvctRLERzW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tvctRLERzW .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
}
.cid-tvctRLERzW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  font-family: EB Garamond !important;
  color: #767676 !important;
  padding: 0 .6rem!important;
  border-radius: 0;
  background: #ffffff;
}
.cid-tvctRLERzW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvctRLERzW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tvctRLERzW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvctRLERzW .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tvctRLERzW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tvctRLERzW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tvctRLERzW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tvctRLERzW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tvctRLERzW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tvctRLERzW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tvctRLERzW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tvctRLERzW button.navbar-toggler:focus {
  outline: none;
}
.cid-tvctRLERzW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tvctRLERzW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tvctRLERzW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tvctRLERzW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tvctRLERzW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tvctRLERzW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvctRLERzW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tvctRLERzW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tvctRLERzW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tvctRLERzW .dropdown-toggle:after {
  display: none;
}
.cid-tvctRLERzW .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tvctRLERzW .collapsed .btn {
  display: -webkit-flex;
}
.cid-tvctRLERzW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tvctRLERzW .collapsed .navbar-collapse.collapsing,
.cid-tvctRLERzW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tvctRLERzW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tvctRLERzW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tvctRLERzW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tvctRLERzW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tvctRLERzW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tvctRLERzW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tvctRLERzW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tvctRLERzW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tvctRLERzW .collapsed button.navbar-toggler {
  display: block;
}
.cid-tvctRLERzW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tvctRLERzW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tvctRLERzW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tvctRLERzW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tvctRLERzW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tvctRLERzW .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tvctRLERzW .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tvctRLERzW img {
    height: 3.8rem !important;
  }
  .cid-tvctRLERzW .btn {
    display: -webkit-flex;
  }
  .cid-tvctRLERzW button.navbar-toggler {
    display: block;
  }
  .cid-tvctRLERzW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tvctRLERzW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tvctRLERzW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tvctRLERzW .navbar-collapse.collapsing,
  .cid-tvctRLERzW .navbar-collapse.show {
    display: block !important;
  }
  .cid-tvctRLERzW .navbar-collapse.collapsing .navbar-nav,
  .cid-tvctRLERzW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tvctRLERzW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tvctRLERzW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tvctRLERzW .navbar-collapse.collapsing .navbar-buttons,
  .cid-tvctRLERzW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tvctRLERzW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tvctRLERzW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tvctRLERzW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tvctRLERzW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tvctRLERzW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tvctRLERzW .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tvctRLERzW .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tvctRLERzW .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tvctRLERzW .nav-link,
.cid-tvctRLERzW .dropdown-item {
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.cid-tvctRLERzW .nav-link:hover,
.cid-tvctRLERzW .dropdown-item:hover {
  color: #ffffff !important;
  border-bottom: 1px solid currentColor;
}
.cid-tvctRLQYk0 {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/dirk-buehne-1200-1200x745.jpg");
}
.cid-tvctRLQYk0 .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-tvctRLQYk0 .container {
    max-width: 1040px;
  }
}
@media (max-width: 575px) {
  .cid-tvctRLQYk0 .row {
    text-align: center!important;
  }
}
.cid-tvctRLQYk0 .label-container {
  width: 100%;
}
.cid-tvctRLQYk0 .label-text {
  color: #f6f6f6;
  margin-bottom: 0;
}
.cid-tvctRLQYk0 .label-text b {
  position: relative;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: rgba(75, 253, 177, 0.25);
}
.cid-tvctRLQYk0 .label-text .label-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  opacity: 0.25;
}
.cid-tvctRLQYk0 .mbr-section-title {
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 0;
}
.cid-tvctRLQYk0 .mbr-text {
  color: #ffffff;
  opacity: 0.5;
  margin-top: 28px;
  margin-bottom: 0;
}
.cid-tvctRLQYk0 .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-tvctRLQYk0 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tvctRLQYk0 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tvcwNc20fA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f4f4f4;
}
.cid-tvcwNc20fA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tvcwNc20fA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tvcwNc20fA .plan-body {
  padding: 0 1rem;
  padding-bottom: 1rem;
}
.cid-tvcwNc20fA .btn {
  width: 100%;
  margin: 0;
  border-radius: 10px;
}
.cid-tvcwNc20fA .mbr-section-btn {
  margin: 0;
  padding-top: 2rem;
}
.cid-tvcwNc20fA img {
  height: 300px;
  width: 300px;
  object-fit: contain;
  border-radius: 1rem;
}
.cid-tvcwNc20fA .plan-title {
  background: black;
  border-radius: 16px;
  padding: 6px 16px;
  width: fit-content;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tvcwNc20fA .plan-title {
    margin: auto;
  }
}
.cid-tvcwNc20fA .price a {
  background: #f59e00;
  border-radius: 16px;
  padding: 3px 10px;
}
.cid-tvcwNc20fA .li-item {
  align-items: center;
  display: flex;
}
.cid-tvcwNc20fA .item {
  color: #e43f3f;
}
.cid-tvcwNc20fA svg {
  margin-right: 0.5rem;
  width: 25px;
  height: 15px;
}
.cid-tvcwNc20fA path {
  fill: currentColor;
}
.cid-tvcwNc20fA .item,
.cid-tvcwNc20fA path {
  color: #000000;
  text-align: left;
}
.cid-tvcwNc20fA .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-tvcwNc20fA .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tvcwNc20fA .price {
  color: #000000;
}
.cid-tvcwNc20fA .plan {
  word-break: break-word;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  padding-top: 0;
}
@media (max-width: 767px) {
  .cid-tvcwNc20fA .plan {
    padding: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-tvcwNc20fA .plan {
    margin-bottom: 2rem;
  }
}
.cid-tvcwNc20fA .main-title {
  text-align: center;
  color: #545466;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-u6aIC6u0wq {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flyer-kenia-new1024-400-bilder-1024x400.jpg");
}
.cid-u6aIC6u0wq .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-u6aIC6u0wq .mbr-arrow i {
  color: #ffffff !important;
}
.cid-u6aIC6u0wq .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-u6aIC6u0wq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6aIC6u0wq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6aIC6u0wq .mbr-section-title {
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-u6aIC6u0wq .letter-spacing {
  letter-spacing: 0.1em;
}
.cid-u6aIC6u0wq .mbr-text,
.cid-u6aIC6u0wq .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-u6aIC6u0wq {
    padding-top: 7em;
    background-image: url(https://dirkdommach.de/assets/images/flyer-kenia-new1-1-bilder-1000x1000-800x800-800x800.jpg);
    background-size: cover;
  }
}
.cid-uqU3RhtWem {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #efefef;
}
.cid-uqU3RhtWem .mbr-media {
  position: relative;
}
.cid-uqU3RhtWem .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uqU3RhtWem a:hover {
  background-image: none!important;
}
.cid-uqU3RhtWem .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  top: -48px;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #545466;
}
.cid-uqU3RhtWem .svg-top .st0 {
  fill: #efefef;
}
@media (max-width: 992px) {
  .cid-uqU3RhtWem .svg-top {
    width: 1000px;
  }
}
.cid-uqU3RhtWem .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all 0.3s;
}
.cid-uqU3RhtWem .mbr-media span {
  font-size: 5.5rem;
  transition: all 0.3s;
  color: #545466;
}
.cid-uqU3RhtWem .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uqU3RhtWem .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uqU3RhtWem .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uqU3RhtWem .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uqU3RhtWem .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uqU3RhtWem .mbr-section-title {
  color: #3d626c;
}
.cid-u6aHduOa51 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u6aHduOa51 .card {
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u6aHduOa51 .card .card-img {
  width: 20%;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6aHduOa51 .card .card-box {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-u6aHduOa51 .card .card-img span {
  color: #878787;
  font-size: 60px;
}
.cid-u6aHduOa51 .mbr-text {
  color: #878787;
}
@media (max-width: 767px) {
  .cid-u6aHduOa51 .card {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-u6aHduOa51 .card .card-img {
    width: 100%;
    padding-bottom: 1.5rem;
  }
  .cid-u6aHduOa51 .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-u6aHduOa51 .card .card-box .card-title,
  .cid-u6aHduOa51 .card .card-box .mbr-text,
  .cid-u6aHduOa51 .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-u6aHduOa51 .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-u6aHduOa51 .card .card-img {
    text-align: right !important;
  }
}
.cid-u6aHduOa51 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6aHduOa51 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6aHduOa51 .mbr-text,
.cid-u6aHduOa51 .link {
  text-align: center;
}
.cid-urmdgnpI6o {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/1-pool-landschaft-700x525-700x525.jpg");
}
.cid-urmdgnpI6o .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-urmdgnpI6o .mbr-arrow i {
  color: #ffffff !important;
}
.cid-urmdgnpI6o .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-urmdgnpI6o .mbr-fallback-image.disabled {
  display: none;
}
.cid-urmdgnpI6o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urmdgnpI6o .mbr-section-title {
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-urmdgnpI6o .letter-spacing {
  letter-spacing: 0.1em;
}
.cid-urmdgnpI6o .mbr-text,
.cid-urmdgnpI6o .mbr-section-btn {
  text-align: center;
}
.cid-urmdgnpI6o .mbr-section-title DIV {
  text-align: center;
}
.cid-uriiidbhRN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uriiidbhRN h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uriiidbhRN h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uriiidbhRN h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uriiidbhRN .mbr-text,
.cid-uriiidbhRN .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uriiidbhRN h3:before,
  .cid-uriiidbhRN h3:after {
    display: none;
  }
}
.cid-uriiidbhRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uriiidbhRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uriiidbhRN H1 {
  text-align: center;
  color: #3d626c;
}
.cid-urij9RIFw7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-urij9RIFw7 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-urij9RIFw7 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-urij9RIFw7 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-urij9RIFw7 .mbr-text,
.cid-urij9RIFw7 .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urij9RIFw7 h3:before,
  .cid-urij9RIFw7 h3:after {
    display: none;
  }
}
.cid-urij9RIFw7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-urij9RIFw7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urij9RIFw7 H1 {
  text-align: center;
  color: #3d626c;
}
.cid-urim5cI6Rp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-urim5cI6Rp h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-urim5cI6Rp h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-urim5cI6Rp h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-urim5cI6Rp .mbr-text {
  color: #3e3e3e;
  text-align: left;
}
.cid-urim5cI6Rp .mbr-section-btn {
  color: #3e3e3e;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-urim5cI6Rp h3:before,
  .cid-urim5cI6Rp h3:after {
    display: none;
  }
}
.cid-urim5cI6Rp H1 {
  color: #3d626c;
}
.cid-u6aKHXnScF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-u6aKHXnScF .card .card-img {
  overflow: hidden;
  border-radius: 0;
}
.cid-u6aKHXnScF .card .card-img img {
  transition: all 0.5s;
}
.cid-u6aKHXnScF .card .card-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-u6aKHXnScF .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-u6aKHXnScF .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u6aKHXnScF .first-card {
  display: block;
}
.cid-u6aKHXnScF .first-card .card-wrapper {
  height: 100%;
}
.cid-u6aKHXnScF .first-card .card-box {
  background: #ffffff;
  padding: 2rem;
}
.cid-u6aKHXnScF .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u6aKHXnScF .first-card .info-wrapper .mbr-iconfont {
  padding-right: 0.5rem;
  font-size: 20px;
}
.cid-u6aKHXnScF .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-u6aKHXnScF .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-u6aKHXnScF .first-row,
.cid-u6aKHXnScF .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-u6aKHXnScF .first-row .card .card-wrapper,
.cid-u6aKHXnScF .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-u6aKHXnScF .first-row .card .card-wrapper .card-img,
.cid-u6aKHXnScF .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-u6aKHXnScF .first-row .card .card-wrapper .card-img img,
.cid-u6aKHXnScF .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-u6aKHXnScF .first-row,
  .cid-u6aKHXnScF .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u6aKHXnScF .first-row .card .card-wrapper .card-img,
  .cid-u6aKHXnScF .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u6aKHXnScF .first-row .card .card-wrapper .card-img img,
  .cid-u6aKHXnScF .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-u6aKHXnScF .first-row .caption,
.cid-u6aKHXnScF .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-u6aKHXnScF .first-row .caption .price,
.cid-u6aKHXnScF .second-row .caption .price {
  background: #c19b76;
  padding: 0 0.5rem;
}
.cid-u6aKHXnScF .first-row {
  padding-bottom: 1rem;
}
.cid-u6aKHXnScF .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-u6aKHXnScF .first-card,
  .cid-u6aKHXnScF .first-child {
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u6aKHXnScF .first-card {
    padding-bottom: 2rem;
  }
  .cid-u6aKHXnScF .only-first-row {
    height: 100%;
  }
}
.cid-u6aKHXnScF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6aKHXnScF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6aKHXnScF .card-title {
  color: #232323;
}
.cid-u6aKR7x8Ka {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f6f6f6;
}
.cid-u6aKR7x8Ka .line {
  background-color: #c19b76;
  color: #c19b76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u6aKR7x8Ka .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-u6aKR7x8Ka .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-u6aL3lMnUV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u6aL3lMnUV .content-slider {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
}
.cid-u6aL3lMnUV .modal-body .close {
  background: #1b1b1b;
}
.cid-u6aL3lMnUV .modal-body .close span {
  font-style: normal;
}
.cid-u6aL3lMnUV .carousel-inner > .active,
.cid-u6aL3lMnUV .carousel-inner > .next,
.cid-u6aL3lMnUV .carousel-inner > .prev {
  display: flex;
}
.cid-u6aL3lMnUV .carousel-control .icon-next,
.cid-u6aL3lMnUV .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u6aL3lMnUV .carousel-control:hover {
  background: #545466;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u6aL3lMnUV .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u6aL3lMnUV .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u6aL3lMnUV .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u6aL3lMnUV .boxed-slider > div {
  position: relative;
}
.cid-u6aL3lMnUV .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cid-u6aL3lMnUV .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-u6aL3lMnUV .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u6aL3lMnUV .mbr-table-cell {
  padding: 0;
}
.cid-u6aL3lMnUV .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u6aL3lMnUV .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u6aL3lMnUV .mbr-overlay {
  z-index: 1;
  pointer-events: none;
}
.cid-u6aL3lMnUV .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-u6aL3lMnUV .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-u6aL3lMnUV .carousel-item.active.right,
.cid-u6aL3lMnUV .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u6aL3lMnUV .carousel-item.active.left,
.cid-u6aL3lMnUV .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u6aL3lMnUV .carousel-item.active,
.cid-u6aL3lMnUV .carousel-item.next.left,
.cid-u6aL3lMnUV .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-u6aL3lMnUV .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #545466;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators li.active,
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators li::after,
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u6aL3lMnUV .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u6aL3lMnUV .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u6aL3lMnUV .mbr-slider > .container img {
  width: 100%;
}
.cid-u6aL3lMnUV .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u6aL3lMnUV .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u6aL3lMnUV .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u6aL3lMnUV .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u6aL3lMnUV .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u6aL3lMnUV .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-u6aL3lMnUV .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u6aL3lMnUV .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-u6aL3lMnUV .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u6aL3lMnUV .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u6aL3lMnUV .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u6aL3lMnUV .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u6aL3lMnUV .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u6aL3lMnUV .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-u6aL3lMnUV .carousel-inner {
  height: 100%;
}
.cid-u6aL3lMnUV .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-u6aL3lMnUV .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 700px;
  overflow: hidden;
}
.cid-u6aL3lMnUV .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-u6aL3lMnUV .content-slider-wrap {
  width: 88%;
}
.cid-u6aQQGkBma {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #efefef;
}
.cid-u6aQQGkBma .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u6aQQGkBma .mbr-section-title,
.cid-u6aQQGkBma .mbr-section-subtitle,
.cid-u6aQQGkBma .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u6aQQGkBma .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u6aQQGkBma .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u6aQQGkBma .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u6aQQGkBma .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u6aQQGkBma .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-u6aQQGkBma .icon-focus {
  display: none;
}
.cid-u6aQQGkBma .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u6aQQGkBma ul {
  font-size: 0;
}
.cid-u6aQQGkBma .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-u6aQQGkBma .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-u6aQQGkBma .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-u6aQQGkBma .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-u6aQQGkBma .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-u6aQQGkBma .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-u6aQQGkBma .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-u6aQQGkBma .btn:hover {
  background: transparent !important;
}
.cid-u6aQQGkBma .btn:hover:before {
  background: transparent !important;
}
.cid-u6aQQGkBma .btn:before {
  background-color: transparent !important;
}
.cid-u6aQQGkBma .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-u7aoKfzu7F {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/kenia-45-700x525.jpg");
}
.cid-u7aoKfzu7F .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u7aoKfzu7F .mbr-section-subtitle,
.cid-u7aoKfzu7F .mbr-text {
  color: #878787;
}
.cid-u7aoKfzu7F .wrapper {
  position: relative;
  padding: 2rem;
}
.cid-u7aoKfzu7F .wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-u7aoKfzu7F .wrapper .content-block {
  padding: 2rem;
  position: relative;
}
.cid-u7aoKfzu7F .wrapper .content-block > *:not(.mbr-overlay) {
  position: relative;
}
.cid-u7aoKfzu7F .wrapper .content-block .mbr-overlay {
  background: #ffffff;
  opacity: 0.9;
}
.cid-u7aoKfzu7F .wrapper .content-block .mbr-text {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-u7aoKfzu7F .content-section {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u7aoKfzu7F .wrapper {
    padding: 1rem;
  }
  .cid-u7aoKfzu7F .wrapper .content-block {
    padding: 1rem;
  }
}
.cid-u7aoKfzu7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7aoKfzu7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7aoKfzu7F .mbr-text,
.cid-u7aoKfzu7F .mbr-section-btn {
  text-align: left;
}
.cid-u7aoKfzu7F .main-title {
  color: #ffffff;
}
.cid-u7aoKfzu7F .main-subtitle,
.cid-u7aoKfzu7F .underline {
  color: #ffffff;
}
.cid-u7aoKfzu7F ul {
  padding-left: 1em;
}
.cid-u7h51EvygB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-u7h51EvygB .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u7h51EvygB .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-u7h51EvygB .title {
    width: 100% !important;
  }
}
.cid-urikgCdaxf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-urikgCdaxf .card-box {
  padding: 0rem;
}
.cid-urikgCdaxf .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-urikgCdaxf h4 {
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-urikgCdaxf p {
  margin-bottom: 0;
  padding-top: 1.2rem;
}
.cid-urikgCdaxf .card-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-urikgCdaxf .mbr-text {
  color: #879a9f;
}
.cid-urikgCdaxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-urikgCdaxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urikgCdaxf ul {
  padding-left: 1em;
}
.cid-urikgCdaxf ul.large {
  margin-left: 10%;
  margin-right: 5%;
}
@media (max-width: 768px) {
  .cid-urikgCdaxf ul {
    text-align: left;
  }
  .cid-urikgCdaxf p {
    text-align: center;
  }
}
.cid-urikgCdaxf .mbr-text,
.cid-urikgCdaxf .mbr-section-btn {
  color: #ffffff;
}
.cid-urikgCdaxf .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-u7Rkd6B40w {
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #efefef;
}
.cid-u7Rkd6B40w .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u7Rkd6B40w .mbr-section-title,
.cid-u7Rkd6B40w .mbr-section-subtitle,
.cid-u7Rkd6B40w .underline {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-u7Rkd6B40w .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7Rkd6B40w .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7Rkd6B40w .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7Rkd6B40w .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7Rkd6B40w .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(180deg, #efefef, #c19b76);
}
.cid-u7Rkd6B40w .icon-focus {
  display: none;
}
.cid-u7Rkd6B40w .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: center;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #ffffff;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-u7Rkd6B40w ul {
  font-size: 0;
}
.cid-u7Rkd6B40w .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #333333 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0 !important;
  transition: padding, border 0s, transform 0.2s;
}
.cid-u7Rkd6B40w .mbr-gallery-filter ul li.active .btn {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
  position: relative;
}
.cid-u7Rkd6B40w .mbr-gallery-filter ul li.active .btn:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c19b76;
}
.cid-u7Rkd6B40w .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-u7Rkd6B40w .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-u7Rkd6B40w .mbr-gallery-item > div:hover:before {
  opacity: 0.8 !important;
}
.cid-u7Rkd6B40w .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-u7Rkd6B40w .btn:hover {
  background: transparent !important;
}
.cid-u7Rkd6B40w .btn:hover:before {
  background: transparent !important;
}
.cid-u7Rkd6B40w .btn:before {
  background-color: transparent !important;
}
.cid-u7Rkd6B40w .btn:focus {
  box-shadow: none;
  background: transparent !important;
}
.cid-u7Rkd6B40w .mbr-section-title DIV {
  text-align: center;
}
.cid-u6aMGmuUqL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/img-588-525x700.jpg");
}
.cid-u6aMGmuUqL .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-u6aMGmuUqL .card .card-block {
  background: #ffffff;
  padding: 2rem;
  position: relative;
}
.cid-u6aMGmuUqL .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: '';
  display: block;
}
.cid-u6aMGmuUqL .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-u6aMGmuUqL .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-u6aMGmuUqL .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-u6aMGmuUqL .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-u6aMGmuUqL .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u6aMGmuUqL .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-u6aMGmuUqL .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-u6aMGmuUqL .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-u6aMGmuUqL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6aMGmuUqL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6aMGmuUqL .mbr-author-name P {
  text-align: center;
}
.cid-u6aMGmuUqL .mbr-author-desc P {
  text-align: center;
}
.cid-u7R8RRiBIB {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-u7R8RRiBIB .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-u7R8RRiBIB .row {
  background-color: #ffffff;
}
.cid-u7R8RRiBIB .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0;
}
.cid-u7R8RRiBIB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: fit;
  object-position: center center;
}
.cid-u7R8RRiBIB .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-u7R8RRiBIB .text-element {
  padding: 4rem 1rem;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-u7R8RRiBIB .text-element .mbr-text {
  padding: 3rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-u7R8RRiBIB .image-element {
    padding: 0 15px;
  }
  .cid-u7R8RRiBIB .text-element {
    padding: 2rem 1rem;
  }
  .cid-u7R8RRiBIB .text-element .mbr-text {
    padding: 1rem;
  }
}
.cid-u7R8RRiBIB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7R8RRiBIB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7R8RRiBIB .mbr-text,
.cid-u7R8RRiBIB .mbr-section-btn {
  text-align: left;
}
.cid-u7R8RRiBIB ul {
  padding-left: 1em;
}
.cid-usi3DoS3Yz {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-usi3DoS3Yz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-usi3DoS3Yz .form-control,
.cid-usi3DoS3Yz .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-usi3DoS3Yz .form-control::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input::-webkit-input-placeholder,
.cid-usi3DoS3Yz .form-control::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-usi3DoS3Yz .form-control:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:-moz-placeholder,
.cid-usi3DoS3Yz .form-control:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:-moz-placeholder {
  color: #606060;
}
.cid-usi3DoS3Yz .form-control:hover,
.cid-usi3DoS3Yz .field-input:hover,
.cid-usi3DoS3Yz .form-control:focus,
.cid-usi3DoS3Yz .field-input:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-usi3DoS3Yz .form-control:hover::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input:hover::-webkit-input-placeholder,
.cid-usi3DoS3Yz .form-control:focus::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input:focus::-webkit-input-placeholder,
.cid-usi3DoS3Yz .form-control:hover::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input:hover::-webkit-input-placeholder,
.cid-usi3DoS3Yz .form-control:focus::-webkit-input-placeholder,
.cid-usi3DoS3Yz .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-usi3DoS3Yz .form-control:hover:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:hover:-moz-placeholder,
.cid-usi3DoS3Yz .form-control:focus:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:focus:-moz-placeholder,
.cid-usi3DoS3Yz .form-control:hover:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:hover:-moz-placeholder,
.cid-usi3DoS3Yz .form-control:focus:-moz-placeholder,
.cid-usi3DoS3Yz .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-usi3DoS3Yz textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-usi3DoS3Yz .jq-number__spin:hover,
.cid-usi3DoS3Yz .jq-number__spin:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-usi3DoS3Yz .jq-number__spin {
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-usi3DoS3Yz .jq-selectbox li,
.cid-usi3DoS3Yz .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-usi3DoS3Yz .jq-selectbox li:hover,
.cid-usi3DoS3Yz .jq-selectbox li.selected {
  background-color: #bcbcc6;
  color: #000000;
}
.cid-usi3DoS3Yz .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-usi3DoS3Yz .jq-number__spin.minus:hover:after,
.cid-usi3DoS3Yz .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-usi3DoS3Yz .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-usi3DoS3Yz .jq-number__spin.minus:after,
.cid-usi3DoS3Yz .jq-number__spin.plus:after {
  border-top-color: #bcbcc6;
  border-bottom-color: #bcbcc6;
}
.cid-usi3DoS3Yz input::-webkit-clear-button {
  display: none;
}
.cid-usi3DoS3Yz input::-webkit-inner-spin-button {
  display: none;
}
.cid-usi3DoS3Yz input::-webkit-outer-spin-button {
  display: none;
}
.cid-usi3DoS3Yz input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-usi3DoS3Yz .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-usi3DoS3Yz .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-usi3DoS3Yz .mbr-section-title {
  color: #465052;
}
.cid-usi3DoS3Yz .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-usi3DoS3Yz .mbr-section-subtitle {
  color: #465052;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-usi3DoS3Yz .mbr-text {
  color: #606060;
}
.cid-usi3DoS3Yz .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-usi3DoS3Yz .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-usi3DoS3Yz .required {
  width: 100%;
  color: #808080;
}
.cid-usi3DoS3Yz img {
  width: 100%;
  margin-bottom: 120px;
}
.cid-usi3DoS3Yz .counter {
  top: 56%;
  left: 0%;
}
.cid-usi3DoS3Yz .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-usi3DoS3Yz .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-usi3DoS3Yz .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-usi3DoS3Yz .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-usi3DoS3Yz .required {
    text-align: center;
  }
}
.cid-usi3DoS3Yz .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-usi3DoS3Yz .form-control-label,
.cid-usi3DoS3Yz .form-check {
  margin-left: 20px;
}
.cid-usi3DoS3Yz .badge,
.cid-usi3DoS3Yz .badge_wrap {
  color: #7069da;
}
.cid-usi3DoS3Yz LABEL {
  text-align: left;
}
.cid-usi3DoS3Yz .form-check-label {
  font-size: 1em;
}
.cid-usi3DoS3Yz .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uf2ez2zhPz {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/header-1-1200x600.jpg");
}
.cid-uf2ez2zhPz .mbr-arrow {
  background: #000000 !important;
  opacity: 0.7;
}
.cid-uf2ez2zhPz .mbr-arrow i {
  color: #ffffff !important;
}
.cid-uf2ez2zhPz .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-uf2ez2zhPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf2ez2zhPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf2ez2zhPz .mbr-section-title {
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uf2ez2zhPz .letter-spacing {
  letter-spacing: 0.1em;
}
.cid-uf2ez2zhPz .mbr-text,
.cid-uf2ez2zhPz .mbr-section-btn {
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uf2ez2zhPz {
    padding-top: 7em;
    background-image: url(https://dirkdommach.de/assets/images/header-1_m.jpg);
    background-size: cover;
  }
}
.cid-uqh9Ay5fra {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uqh9Ay5fra .mbr-text {
  color: #767676;
}
.cid-uqh9Ay5fra .mbr-iconfont {
  color: #000000 !important;
  font-size: 3.5rem !important;
}
.cid-uqh9Ay5fra .link {
  margin: 0;
}
.cid-uqh9Ay5fra .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-uqh9Ay5fra .link a:after {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}
@media (min-width: 767px) {
  .cid-uqh9Ay5fra .card {
    display: flex;
    flex-direction: row;
  }
  .cid-uqh9Ay5fra .mbr-iconfont {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uqh9Ay5fra .link a:after {
    right: 0;
    margin: auto;
  }
}
.cid-uqh9Ay5fra .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uqh9Ay5fra .card {
    margin-bottom: 2rem;
  }
}
.cid-uqh9Ay5fra .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqh9Ay5fra .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqh9Ay5fra .mbr-text,
.cid-uqh9Ay5fra .link {
  text-align: left;
}
.cid-uqhaBNcwit {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-uqhaBNcwit h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-uqhaBNcwit h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uqhaBNcwit h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-uqhaBNcwit .mbr-text,
.cid-uqhaBNcwit .mbr-section-btn {
  color: #767676;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uqhaBNcwit h3:before,
  .cid-uqhaBNcwit h3:after {
    display: none;
  }
}
.cid-uqhaBNcwit .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqhaBNcwit .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf2m10602g {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uf2m10602g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf2m10602g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uf2m10602g .mbr-text,
.cid-uf2m10602g .mbr-section-btn {
  text-align: center;
}
.cid-uf2ez4EX9z {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f6f6f6;
}
.cid-uf2ez4EX9z .line {
  background-color: #c19b76;
  color: #c19b76;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uf2ez4EX9z .mbr-text {
  margin: 0;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .cid-uf2ez4EX9z .inner-container {
    width: 100% !important;
    padding: 0 15px;
  }
}
.cid-uf2lXxGego {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uf2lXxGego .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-uf2lXxGego .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-uf2lXxGego .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-uf2lXxGego img {
    width: 90%;
  }
}
.cid-uf2lXxGego .card-title {
  text-align: center;
}
.cid-uf2lXxGego ul {
  padding-left: 1em;
}
.cid-uf2mjBbFZg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-uf2mjBbFZg .mbr-text {
  color: #767676;
}
.cid-uf2mjBbFZg .sig-img img {
  width: auto;
  display: inline-block;
}
.cid-uf2mjBbFZg .card-title DIV {
  text-align: center;
}
.cid-uf2mjBbFZg .mbr-text,
.cid-uf2mjBbFZg .sig-img {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cid-uf2mjBbFZg .mobil_umgekehrt {
    flex-direction: column-reverse;
  }
}
.cid-uf2mjBbFZg ul {
  padding-left: 1em;
}
.cid-uf2mkgDEw5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uf2mkgDEw5 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-uf2mkgDEw5 .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-uf2mkgDEw5 .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-uf2mkgDEw5 img {
    width: 90%;
  }
}
.cid-uf2mkgDEw5 .card-title {
  text-align: center;
}
.cid-uf2mkgDEw5 ul {
  padding-left: 1em;
}
.cid-uf2mkSaAUE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f6f6f6;
}
.cid-uf2mkSaAUE .mbr-text {
  color: #767676;
}
.cid-uf2mkSaAUE .sig-img img {
  width: auto;
  display: inline-block;
}
.cid-uf2mkSaAUE .card-title {
  text-align: center;
}
.cid-uf2mkSaAUE .mbr-text,
.cid-uf2mkSaAUE .sig-img {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cid-uf2mkSaAUE .mobil_umgekehrt {
    flex-direction: column-reverse;
  }
}
.cid-uf2mkSaAUE ul {
  padding-left: 1em;
}
.cid-uqhea8UKZZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uqhea8UKZZ .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}
.cid-uqhea8UKZZ .counter-container ul li {
  margin-bottom: 0.2rem;
}
.cid-uqhea8UKZZ .mbr-text {
  color: #767676;
}
@media (min-width: 992px) {
  .cid-uqhea8UKZZ img {
    width: 90%;
  }
}
.cid-uqhea8UKZZ .card-title {
  text-align: center;
}
.cid-uqhea8UKZZ ul {
  padding-left: 1em;
}
.cid-uqhea8UKZZ .mbr-text,
.cid-uqhea8UKZZ .mbr-section-btn {
  text-align: center;
}
.cid-ufz7lwdhW4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-ufz7lwdhW4 .card-box {
  padding: 0rem;
}
.cid-ufz7lwdhW4 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-ufz7lwdhW4 h4 {
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-ufz7lwdhW4 p {
  margin-bottom: 0;
  padding-top: 1.2rem;
}
.cid-ufz7lwdhW4 .card-wrapper {
  height: 100%;
  padding-bottom: 1rem;
}
.cid-ufz7lwdhW4 .mbr-text {
  color: #879a9f;
}
.cid-ufz7lwdhW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufz7lwdhW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufz7lwdhW4 ul {
  padding-left: 1em;
}
.cid-ufz7lwdhW4 ul.large {
  margin-left: 10%;
  margin-right: 5%;
}
@media (max-width: 768px) {
  .cid-ufz7lwdhW4 ul {
    text-align: left;
  }
  .cid-ufz7lwdhW4 p {
    text-align: center;
  }
}
.cid-ufz7lwdhW4 .mbr-text,
.cid-ufz7lwdhW4 .mbr-section-btn {
  color: #ffffff;
}
.cid-ufz7lwdhW4 .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-uf2ez7WONo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-uf2ez7WONo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uf2ez7WONo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufzA2D2flN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-ufzA2D2flN .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ufzA2D2flN .card .card-block {
  background: #ffffff;
  padding: 2rem;
  position: relative;
}
.cid-ufzA2D2flN .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: '';
  display: block;
}
.cid-ufzA2D2flN .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-ufzA2D2flN .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-ufzA2D2flN .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-ufzA2D2flN .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-ufzA2D2flN .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ufzA2D2flN .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-ufzA2D2flN .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-ufzA2D2flN .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-ufzA2D2flN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufzA2D2flN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufzA2D2flN .mbr-author-name P {
  text-align: center;
}
.cid-ufzA2D2flN .mbr-author-desc P {
  text-align: center;
}
.cid-uf2kOX9KEk {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uf2kOX9KEk .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uf2kOX9KEk .form-control,
.cid-uf2kOX9KEk .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-uf2kOX9KEk .form-control::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input::-webkit-input-placeholder,
.cid-uf2kOX9KEk .form-control::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-uf2kOX9KEk .form-control:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:-moz-placeholder,
.cid-uf2kOX9KEk .form-control:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:-moz-placeholder {
  color: #606060;
}
.cid-uf2kOX9KEk .form-control:hover,
.cid-uf2kOX9KEk .field-input:hover,
.cid-uf2kOX9KEk .form-control:focus,
.cid-uf2kOX9KEk .field-input:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uf2kOX9KEk .form-control:hover::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input:hover::-webkit-input-placeholder,
.cid-uf2kOX9KEk .form-control:focus::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input:focus::-webkit-input-placeholder,
.cid-uf2kOX9KEk .form-control:hover::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input:hover::-webkit-input-placeholder,
.cid-uf2kOX9KEk .form-control:focus::-webkit-input-placeholder,
.cid-uf2kOX9KEk .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-uf2kOX9KEk .form-control:hover:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:hover:-moz-placeholder,
.cid-uf2kOX9KEk .form-control:focus:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:focus:-moz-placeholder,
.cid-uf2kOX9KEk .form-control:hover:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:hover:-moz-placeholder,
.cid-uf2kOX9KEk .form-control:focus:-moz-placeholder,
.cid-uf2kOX9KEk .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-uf2kOX9KEk textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-uf2kOX9KEk .jq-number__spin:hover,
.cid-uf2kOX9KEk .jq-number__spin:focus {
  background-color: #bcbcc6;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uf2kOX9KEk .jq-number__spin {
  background-color: #ffffff;
  border-color: #f4f4f4;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uf2kOX9KEk .jq-selectbox li,
.cid-uf2kOX9KEk .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uf2kOX9KEk .jq-selectbox li:hover,
.cid-uf2kOX9KEk .jq-selectbox li.selected {
  background-color: #bcbcc6;
  color: #000000;
}
.cid-uf2kOX9KEk .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uf2kOX9KEk .jq-number__spin.minus:hover:after,
.cid-uf2kOX9KEk .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uf2kOX9KEk .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uf2kOX9KEk .jq-number__spin.minus:after,
.cid-uf2kOX9KEk .jq-number__spin.plus:after {
  border-top-color: #bcbcc6;
  border-bottom-color: #bcbcc6;
}
.cid-uf2kOX9KEk input::-webkit-clear-button {
  display: none;
}
.cid-uf2kOX9KEk input::-webkit-inner-spin-button {
  display: none;
}
.cid-uf2kOX9KEk input::-webkit-outer-spin-button {
  display: none;
}
.cid-uf2kOX9KEk input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uf2kOX9KEk .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #545466;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-uf2kOX9KEk .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uf2kOX9KEk .mbr-section-title {
  color: #465052;
}
.cid-uf2kOX9KEk .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-uf2kOX9KEk .mbr-section-subtitle {
  color: #465052;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uf2kOX9KEk .mbr-text {
  color: #606060;
}
.cid-uf2kOX9KEk .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-uf2kOX9KEk .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uf2kOX9KEk .required {
  width: 100%;
  color: #808080;
}
.cid-uf2kOX9KEk img {
  width: 100%;
  margin-bottom: 120px;
}
.cid-uf2kOX9KEk .counter {
  top: 56%;
  left: 0%;
}
.cid-uf2kOX9KEk .counter .full-circle {
  background-color: #545466;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-uf2kOX9KEk .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-uf2kOX9KEk .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-uf2kOX9KEk .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uf2kOX9KEk .required {
    text-align: center;
  }
}
.cid-uf2kOX9KEk .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-uf2kOX9KEk .form-control-label,
.cid-uf2kOX9KEk .form-check {
  margin-left: 20px;
}
.cid-uf2kOX9KEk .badge,
.cid-uf2kOX9KEk .badge_wrap {
  color: #7069da;
}
.cid-uf2kOX9KEk LABEL {
  text-align: left;
}
.cid-uf2kOX9KEk .form-check-label {
  font-size: 1em;
}
.cid-uf2kOX9KEk .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
}
.cid-uRcEdum3ah {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
.cid-uRcEdum3ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRcEdum3ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRcEdum3ah .row {
  justify-content: center;
}
.cid-uRcEdum3ah .card {
  justify-content: center;
}
.cid-uRcEdum3ah .mbr-copy {
  margin-bottom: 0;
  color: #767676;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uRcEdum3ah .nav-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uRcEdum3ah .nav-wrapper .list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap {
  padding: 5px 32px;
  margin-bottom: 0;
  transition: all .3s ease;
  cursor: pointer;
}
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:hover,
.cid-uRcEdum3ah .nav-wrapper .list .item-wrap:focus {
  color: #cbff5b;
}
.cid-uRcEdum3ah .list,
.cid-uRcEdum3ah .nav-wrapper {
  color: #ffffff;
  text-align: center;
}
