.btn {
  border-width: 2px;
}
body {
  font-family: 'Signika Negative', sans-serif;
}
.display-1 {
  font-family: 'Signika Negative', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Signika Negative', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Signika Negative', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Signika Negative', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Signika Negative', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #253c57 !important;
}
.bg-success {
  background-color: #bee1e6 !important;
}
.bg-info {
  background-color: #415d7d !important;
}
.bg-warning {
  background-color: #eeff42 !important;
}
.bg-danger {
  background-color: #fd7578 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #253c57 !important;
  border-color: #253c57 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #34557b !important;
  border-color: #34557b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #34557b !important;
  border-color: #34557b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #df6a4c !important;
  border-color: #df6a4c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e78e77 !important;
  border-color: #e78e77 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e78e77 !important;
  border-color: #e78e77 !important;
}
.btn-info,
.btn-info:active {
  background-color: #415d7d !important;
  border-color: #415d7d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #52769f !important;
  border-color: #52769f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #52769f !important;
  border-color: #52769f !important;
}
.btn-success,
.btn-success:active {
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
  color: #2e6e77 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3c909c !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #2e6e77 !important;
  background-color: #e3f2f4 !important;
  border-color: #e3f2f4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
  color: #3c4200 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #6a7500 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3c4200 !important;
  background-color: #f3ff75 !important;
  border-color: #f3ff75 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fd7578 !important;
  border-color: #fd7578 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #fea7a9 !important;
  border-color: #fea7a9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #fea7a9 !important;
  border-color: #fea7a9 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #3d3d3d !important;
  border-color: #3d3d3d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #253c57;
  color: #253c57;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #34557b !important;
  background-color: transparent!important;
  border-color: #34557b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #253c57 !important;
  border-color: #253c57 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #df6a4c;
  color: #df6a4c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e78e77 !important;
  background-color: transparent!important;
  border-color: #e78e77 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #df6a4c !important;
  border-color: #df6a4c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #415d7d;
  color: #415d7d;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #52769f !important;
  background-color: transparent!important;
  border-color: #52769f !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #415d7d !important;
  border-color: #415d7d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #bee1e6;
  color: #bee1e6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e3f2f4 !important;
  background-color: transparent!important;
  border-color: #e3f2f4 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #2e6e77 !important;
  background-color: #bee1e6 !important;
  border-color: #bee1e6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #eeff42;
  color: #eeff42;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f3ff75 !important;
  background-color: transparent!important;
  border-color: #f3ff75 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3c4200 !important;
  background-color: #eeff42 !important;
  border-color: #eeff42 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #fd7578;
  color: #fd7578;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #fea7a9 !important;
  background-color: transparent!important;
  border-color: #fea7a9 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #fd7578 !important;
  border-color: #fd7578 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #3d3d3d !important;
  background-color: transparent!important;
  border-color: #3d3d3d !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #ffffff !important;
  background-color: transparent!important;
  border-color: #ffffff !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #253c57 !important;
}
.text-secondary {
  color: #df6a4c !important;
}
.text-success {
  color: #bee1e6 !important;
}
.text-info {
  color: #415d7d !important;
}
.text-warning {
  color: #eeff42 !important;
}
.text-danger {
  color: #fd7578 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #070b0f !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #a73a1e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #74bfca !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1e2b3a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #c7db00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #fc1016 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #253c57;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #415d7d;
}
.alert-warning {
  background-color: #eeff42;
}
.alert-danger {
  background-color: #fd7578;
}
.mbr-gallery-filter li.active .btn {
  background-color: #253c57;
  border-color: #253c57;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #253c57;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4b7ab0;
}
.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: #809dbd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Signika Negative', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #253c57 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Signika Negative', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #253c57;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #253c57;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #253c57;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #253c57;
  border-bottom-color: #253c57;
}
.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: #253c57 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #df6a4c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23253c57' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-t34Ov0Rf1p {
  min-height: 142px !important;
  position: relative;
  overflow: visible;
  background: #ffbe87;
}
.cid-t34Ov0Rf1p .nav-link,
.cid-t34Ov0Rf1p .navbar-caption {
  font-weight: 700;
  transition: all 0.3s linear;
}
.cid-t34Ov0Rf1p .ZeigMichNicht {
  visibility: hidden;
  transition: visibility 1s;
}
.cid-t34Ov0Rf1p .navbar-dropdown .navbar-brand span {
  vertical-align: 0;
}
.cid-t34Ov0Rf1p .mylogopos {
  position: relative;
  top: 0px;
  float: left;
  transform: rotate(-1deg);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-t34Ov0Rf1p .mylogopos {
    position: inherit;
    top: 0px;
    float: right;
  }
}
.cid-t34Ov0Rf1p .navbar {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  padding: 12px 52px 11px 43px;
  min-height: 90px;
  transition: all 0.3s;
  background: rgba(200, 200, 200, 0.5);
}
.cid-t34Ov0Rf1p .navbar.opened {
  transition: all 0.3s;
  background: #ffbe87 !important;
}
.cid-t34Ov0Rf1p .navbar .navbar-collapse {
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.cid-t34Ov0Rf1p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t34Ov0Rf1p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t34Ov0Rf1p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 120px - 1rem);
  }
}
.cid-t34Ov0Rf1p .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t34Ov0Rf1p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t34Ov0Rf1p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-t34Ov0Rf1p a {
  font-weight: 400!important;
}
.cid-t34Ov0Rf1p .container-fluid {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.cid-t34Ov0Rf1p .nav-link.text-primary:hover,
.cid-t34Ov0Rf1p .nav-link.text-primary:focus {
  color: #253c57 !important;
}
.cid-t34Ov0Rf1p .nav-link {
  position: relative;
  line-height: 1;
  margin: 0 !important;
  padding: 10px 20px !important;
}
.cid-t34Ov0Rf1p .nav-link:hover:before {
  opacity: 1;
}
.cid-t34Ov0Rf1p .nav-link:before {
  content: '';
  bottom: 0;
  width: calc(100% - 36px);
  left: 18px;
  height: 3px;
  position: absolute;
  opacity: 0;
  z-index: -1;
  background-color: #df6a4c;
  transition: opacity 0.3s linear;
}
@media (max-width: 991px) {
  .cid-t34Ov0Rf1p .nav-link {
    margin: 0 !important;
  }
}
.cid-t34Ov0Rf1p .icons-menu {
  line-height: 0;
}
.cid-t34Ov0Rf1p .icons__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 29px;
  margin-left: 15px;
}
.cid-t34Ov0Rf1p .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
  width: 247px;
}
@media (min-width: 992px) {
  .cid-t34Ov0Rf1p .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown {
    display: inline-block;
  }
}
.cid-t34Ov0Rf1p .dropdown-menu {
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.3);
}
.cid-t34Ov0Rf1p .dropdown-menu .menu__images {
  display: flex;
  transform: translateY(-11px);
}
.cid-t34Ov0Rf1p .dropdown-menu a {
  overflow: hidden;
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image1 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/235348988-10227204219470482-632662172255881587-n.jpeg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image1:hover {
  transform: scale(1.3);
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image2 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/20190803-103135.jpeg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image2:hover {
  transform: scale(1.3);
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image3 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/20819327-10154745558082823-6771256898008634431-o.jpeg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image3:hover {
  transform: scale(1.3);
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image4 {
  width: 250px;
  height: 208px;
  transition: all 0.3s;
  background-image: url("../../../assets/images/12031538-10153642973108582-1350293909553150580-o-1.jpeg");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.cid-t34Ov0Rf1p .dropdown-menu a > .image4:hover {
  transform: scale(1.3);
}
.cid-t34Ov0Rf1p .dropdown-menu .dropdown-item {
  display: inline-flex;
  justify-content: center;
  font-weight: normal;
  padding: 10px 40px 10px 20px;
  line-height: 1;
  position: relative;
  width: 100%;
  transition: all 0.3s;
}
@media (max-width: 1300px) {
  .cid-t34Ov0Rf1p .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 167px;
    padding: 10px;
    white-space: normal;
  }
  .cid-t34Ov0Rf1p .dropdown-menu a > .image1 {
    width: 170px;
    height: 140px;
  }
  .cid-t34Ov0Rf1p .dropdown-menu a > .image2 {
    width: 170px;
    height: 140px;
  }
  .cid-t34Ov0Rf1p .dropdown-menu a > .image3 {
    width: 170px;
    height: 140px;
  }
  .cid-t34Ov0Rf1p .dropdown-menu a > .image4 {
    width: 170px;
    height: 140px;
  }
}
@media (min-width: 992px) {
  .cid-t34Ov0Rf1p.dropdown.open > .dropdown-menu:not(.dropdown-submenu) > .dropdown > .dropdown-submenu {
    visibility: visible;
    opacity: 1;
  }
  .cid-t34Ov0Rf1p .mbr-section-btn {
    margin-left: 31px;
  }
  .cid-t34Ov0Rf1p .btn {
    white-space: nowrap;
  }
  .cid-t34Ov0Rf1p .dropdown-menu {
    min-width: 210px;
    display: block;
    z-index: 5;
    background-color: #ffffff !important;
    border: 1px solid #da9153;
    border-radius: 4px;
    left: 17px;
    right: auto;
    top: 100%;
    opacity: 0;
    padding: 11px 0 !important;
    margin: 0 !important;
    visibility: hidden;
    transition: all .3s linear;
    transform: translateY(0);
  }
  .cid-t34Ov0Rf1p .nav-item:hover .nav-link + .dropdown-menu {
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
  }
  .cid-t34Ov0Rf1p .nav-item.dropdown:hover::before,
  .cid-t34Ov0Rf1p .nav-item.dropdown.open:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .is-builder .cid-t34Ov0Rf1p .nav-item:hover .nav-link + .dropdown-menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1200px) {
  .cid-t34Ov0Rf1p .navbar .navbar-collapse {
    align-items: center !important;
  }
}
.cid-t34Ov0Rf1p .navbar > .container,
.cid-t34Ov0Rf1p .navbar > .container-fluid {
  align-items: center;
}
.cid-t34Ov0Rf1p .dropdown-toggle::after,
.cid-t34Ov0Rf1p .link.dropdown-toggle:after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 6px;
  content: "";
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  transition: all .25s ease 0s;
}
.cid-t34Ov0Rf1p .dropdown-menu .dropdown-toggle:after {
  border: 2px solid;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
}
.cid-t34Ov0Rf1p .open > .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-bottom: -8px;
  transform: rotate(225deg);
}
.cid-t34Ov0Rf1p .dropdown.open .dropdown-toggle[aria-expanded="true"] + .dropdown-submenu {
  visibility: visible;
  opacity: 1;
  display: flex;
  flex-direction: column;
}
.cid-t34Ov0Rf1p .nav-dropdown .dropdown-submenu {
  display: none;
  margin: 0 !important;
  font-weight: 400;
  top: 0 !important;
}
.cid-t34Ov0Rf1p .nav-item:focus,
.cid-t34Ov0Rf1p .nav-link:focus {
  outline: none;
}
.cid-t34Ov0Rf1p .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-t34Ov0Rf1p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t34Ov0Rf1p .collapsed .dropdown .dropdown-menu .dropdown-item {
  transition: none;
  margin: 0 !important;
}
.cid-t34Ov0Rf1p a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
  transition: all 0.3s linear;
}
.cid-t34Ov0Rf1p ul.navbar-nav {
  flex-wrap: wrap;
  flex: 1;
}
@media (max-width: 991px) {
  .cid-t34Ov0Rf1p {
    min-height: 90px !important;
  }
  .cid-t34Ov0Rf1p .dropdown-menu .menu__images {
    display: none;
  }
  .cid-t34Ov0Rf1p .nav-item:hover .nav-link + .dropdown-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .cid-t34Ov0Rf1p .dropdown-item:hover {
    filter: brightness(50%);
  }
  .cid-t34Ov0Rf1p .nav-item .nav-link::before {
    display: none;
  }
  .cid-t34Ov0Rf1p.opened .dropdown-menu {
    top: 0;
  }
  .cid-t34Ov0Rf1p .mbr-section-btn .btn {
    min-width: auto;
    padding: 5px ;
    font-size: 14px;
  }
  .cid-t34Ov0Rf1p .dropdown-menu {
    margin: 0;
    padding: 0;
    line-height: 45px;
    border: 0;
    left: 8px;
    width: 100%;
    max-width: 100% !important;
    box-shadow: none;
  }
  .cid-t34Ov0Rf1p .dropdown-menu .dropdown-submenu {
    left: 0 !important;
    position: relative !important;
  }
  .cid-t34Ov0Rf1p .navbar-logo {
    margin: 0;
  }
  .cid-t34Ov0Rf1p .navbar-logo img {
    height: 60px !important;
  }
  .cid-t34Ov0Rf1p .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    margin: 0 !important;
    padding: 0;
  }
  .cid-t34Ov0Rf1p .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t34Ov0Rf1p .icons-menu {
    margin: 30px 0;
    text-align: center;
  }
  .cid-t34Ov0Rf1p .navbar {
    padding: 13px 90px;
  }
  .cid-t34Ov0Rf1p .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    background-color: #ffffff !important;
    padding-left: 20px;
    padding-right: 20px;
    left: 0px;
    right: 0px;
  }
  .cid-t34Ov0Rf1p .navbar .dropdown-menu .dropdown-item {
    justify-content: flex-start;
    padding: 15.5px 23px;
    line-height: 1;
  }
  .cid-t34Ov0Rf1p .dropdown-submenu .dropdown-item {
    padding-left: 45px !important;
  }
  .cid-t34Ov0Rf1p .dropdown-toggle::after,
  .cid-t34Ov0Rf1p .link.dropdown-toggle:after {
    position: absolute;
    right: 12px;
  }
  .cid-t34Ov0Rf1p .nav-item {
    border-bottom: 1px solid #da9153;
  }
  .cid-t34Ov0Rf1p a.nav-link {
    justify-content: flex-start;
    line-height: 21px;
    padding: 35px 43px 35px 19px !important;
  }
  .cid-t34Ov0Rf1p ul.navbar-nav {
    padding: 0 100px;
    margin: 0;
  }
  .cid-t34Ov0Rf1p .navbar .dropdown.open > .dropdown-menu {
    display: block;
  }
  .cid-t34Ov0Rf1p .navbar-nav .nav-item:nth-child(2) .dropdown-menu .dropdown-item {
    width: 100%;
  }
}
.cid-t34Ov0Rf1p.navbar-short {
  background: #ffbe87 !important;
  min-height: 70px;
  height: 70px;
}
.cid-t34Ov0Rf1p.navbar-short .nav-dropdown {
  height: 70px;
}
.cid-t34Ov0Rf1p.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t34Ov0Rf1p.navbar-short .navbar-logo img {
  height: 70px !important;
}
@media (max-width: 767px) {
  .cid-t34Ov0Rf1p .navbar {
    padding: 0 !important;
  }
  .cid-t34Ov0Rf1p ul.navbar-nav {
    padding: 0 !important;
  }
  .cid-t34Ov0Rf1p a.nav-link {
    padding: 27px 26px 27px 19px !important;
  }
}
.cid-t34Ov0Rf1p .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 12px;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
}
.cid-t34Ov0Rf1p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t34Ov0Rf1p .dropdown-item.active,
.cid-t34Ov0Rf1p .dropdown-item:active {
  background-color: transparent;
}
.cid-t34Ov0Rf1p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffbe87;
}
.cid-t34Ov0Rf1p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  left: 100%;
  position: absolute;
}
.cid-t34Ov0Rf1p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-t34Ov0Rf1p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #b30c10;
}
.cid-t34Ov0Rf1p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t34Ov0Rf1p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t34Ov0Rf1p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t34Ov0Rf1p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t34Ov0Rf1p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t34Ov0Rf1p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t34Ov0Rf1p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t34Ov0Rf1p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.is-builder .cid-t34Ov0Rf1p .dropdown.open > .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(20px);
}
.cid-t34Ov0Rf1p .navbar-dropdown {
  position: absolute;
  position: fixed;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t34Ov0Rf1p .navbar {
    height: 97px;
  }
  .cid-t34Ov0Rf1p .navbar.opened {
    height: auto;
  }
  .cid-t34Ov0Rf1p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t3PPOinDw8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t3PPOinDw8 .carousel {
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-t3PPOinDw8 .carousel {
    height: 800px;
  }
}
@media (max-width: 768px) {
  .cid-t3PPOinDw8 .carousel {
    height: 400px;
  }
}
.cid-t3PPOinDw8 .carousel img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-t3PPOinDw8 .carousel .carousel-item,
.cid-t3PPOinDw8 .carousel .carousel-inner {
  height: 100%;
}
.cid-t3PPOinDw8 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  transform: translateY(-50%);
  -webkit-align-items: center;
}
@media (min-width: 991px) {
  .cid-t3PPOinDw8 .carousel-caption {
    left: -150px !important;
  }
}
.cid-t3PPOinDw8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t3PPOinDw8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t3PPOinDw8 .carousel-control:hover {
  color: #fff;
  opacity: 1;
}
.cid-t3PPOinDw8 .item-wrapper {
  position: relative;
  text-align: start;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t3PPOinDw8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t3PPOinDw8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t3PPOinDw8 .row {
  position: relative;
}
.cid-t3PPOinDw8 .container {
  margin-bottom: 3px;
}
.cid-t3PPOinDw8 .carousel-control {
  color: #ffffff;
  top: 50%;
  width: 100px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 40px;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: .8;
}
.cid-t3PPOinDw8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3PPOinDw8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3PPOinDw8 .carousel-control {
    top: 70%;
  }
  .cid-t3PPOinDw8 .carousel-control.carousel-control-prev {
    margin-left: .5rem;
  }
  .cid-t3PPOinDw8 .carousel-control.carousel-control-next {
    margin-right: .5rem;
  }
}
.cid-t3PPOinDw8 .buttons-wrap {
  justify-content: start;
}
.cid-t3PPOinDw8 .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .cid-t3PPOinDw8 .carousel-caption {
    padding-left: 15px;
    padding-right: 15px;
  }
  .cid-t3PPOinDw8 .buttons-wrap {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cid-t3PPOinDw8 .buttons-wrap .mbr-section-btn {
    margin-bottom: 10px;
  }
}
.cid-t3PPOinDw8 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-t3PPOinDw8 .wrap {
  z-index: 9999;
}
.cid-t3PPOinDw8 .btnHeader {
  font-family: 'Cormorant Garamond';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  cursor: pointer;
  left: 50%;
  top: 70%;
  border: 1px solid #9a948d;
  justify-content: center;
  transition: border 0.5s ease;
  transform: translateX(-50%);
}
.cid-t3PPOinDw8 .btnHeader::before,
.cid-t3PPOinDw8 .btnHeader::after {
  content: '';
  width: 102%;
  height: 102%;
  position: absolute;
  border-radius: 50%;
  top: -1px;
  left: -1%;
}
.cid-t3PPOinDw8 .btnHeader::before {
  border: 1px solid transparent;
  transition: border-top-color 0.1s linear, border-right-color 0.1s linear 0.1s, border-bottom-color 0.1s linear 0.2s;
}
.cid-t3PPOinDw8 .btnHeader:hover::before {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-t3PPOinDw8 .btnHeader::after {
  border: 0 solid transparent;
  transition: transform 0.2s linear 0s, border-left-width 0s linear 0.3s;
}
.cid-t3PPOinDw8 .btnHeader:hover::after {
  border-top: 1px solid #ffffff;
  border-left-color: #ffffff;
  border-left-width: 1px;
  bordersborder-right-width: 1px;
  borderstransform: rotate(270deg);
}
.cid-t3PPOinDw8 .img {
  position: relative;
}
.cid-t3PPOinDw8 #IDMyLogoImg {
  width: 100%;
  border-radius: 3px;
}
.cid-t3PPOinDw8 #IDmyinfo {
  height: 150px;
  width: 200px;
  background: transparent;
  position: absolute;
  bottom: 20%;
  right: 5%;
  z-index: 3;
}
@media (max-width: 768px) {
  .cid-t3PPOinDw8 #IDmyinfo {
    display: none;
  }
}
.cid-t34Wl8GVir {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t34Wl8GVir .mbr-section-title {
  text-align: center;
  color: #253c57;
}
.cid-t34Wl8GVir .mbr-section-subtitle {
  text-align: center;
}
.cid-t34Wl8GVir .mbr-text {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t34Wl8GVir .display-1 {
    font-size: 75px;
  }
  .cid-t34Wl8GVir .display-5 {
    font-size: 29px;
  }
  .cid-t34Wl8GVir .display-4 {
    font-weight: 300;
  }
}
.cid-t3bV0XEMnY .icon-bar {
  z-index: 100002;
  left: 0.4%;
  position: fixed;
  top: 50%;
  font-weight: normal;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-t3bV0XEMnY .icon-bar a:hover {
  background-color: #ff0040;
  width: 100px;
}
.cid-t3bV0XEMnY .text-white {
  padding-left: 10px;
}
.cid-t3bV0XEMnY .myimg {
  font-size: 35px;
  line-height: 35px;
}
.cid-t3bV0XEMnY .mybox {
  width: 40px;
  height: 41px;
  float: left;
  padding: 5px ;
}
.cid-t3bV0XEMnY li {
  margin-bottom: 5px!important;
}
.cid-t3bV0XEMnY p {
  font-family: 'open sans';
}
.cid-t3bV0XEMnY .icon-bar a {
  display: block;
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  font-weight: normal;
  margin: 2px;
  border-radius: 14px;
}
.cid-t3bV0XEMnY .facebook {
  background: #3B5998;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .twitter {
  background: #55ACEE;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .google {
  background: #dd4b39;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .linkedin {
  background: #007bb5;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .youtube {
  background: #bb0000;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .instagram {
  background: #6F3AA7;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .custom1 {
  background: #ff7300;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .custom2 {
  background: #01bf46;
  color: white;
  width: 50px;
}
.cid-t3bV0XEMnY .content {
  margin-left: 75px;
  font-size: 30px;
}
.cid-t3bV0XEMnY .corner-ribbon {
  z-index: 20001;
  width: 200px;
  background-image: linear-gradient(#55b4d4, #000000);
  position: absolute;
  top: 25px;
  left: -50px;
  text-align: center;
  line-height: 50px;
  letter-spacing: 1px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.cid-t3bV0XEMnY .corner-ribbon ov:hover .effetover {
  background-image: linear-gradient(#000000, #55b4d4);
}
.cid-t3bV0XEMnY .corner-ribbon.top-zen {
  top: 25px;
  left: -50px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: fixed;
}
.cid-t3bV0XEMnY P {
  color: #232323;
}
.cid-t3bV0XEMnY DIV {
  color: #ffffff;
}
.cid-t3bV0XEMnY H10 {
  color: #767676;
}
.cid-t3bV0XEMnY .hidden {
  display: none;
}
.cid-t3bV0XEMnY p {
  color: #ecf0f1;
  line-height: 28px;
  font-size: 15px;
  padding-top: 50px;
}
.cid-t3bV0XEMnY .sticky-container {
  z-index: 1001;
  padding: 0px;
  margin: 0px;
  position: fixed;
  Right: -125px;
  top: 240px;
  width: 200px;
}
.cid-t3bV0XEMnY .sticky li {
  list-style-type: none;
  border-radius: 4px;
  background-color: #cccccc;
  color: #efefef;
  height: 43px;
  padding: 0px;
  margin: 0px 0px 1px 0px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-t3bV0XEMnY .sticky li:hover {
  margin-left: -100px;
}
.cid-t3bV0XEMnY .sticky li img {
  float: left;
  margin: 1px 1px;
  margin-right: 10px;
}
.cid-t3bV0XEMnY .sticky li p {
  padding: 0px;
  margin: 0px;
  line-height: 43px;
}
#custom-html-v {
  /* Type valid CSS here */
}
#custom-html-v p {
  color: #ddd;
  font-family: 'Arial';
}
#custom-html-v .Kopf {
  font-size: 11rem;
  font-weight: 700;
  overflow: hidden;
}
@media (max-width: 991px) {
  #custom-html-v .Kopf {
    font-size: 9rem;
  }
}
@media (max-width: 768px) {
  #custom-html-v .Kopf {
    font-size: 9rem;
  }
}
#custom-html-v .ZeigMichNicht {
  visibility: hidden;
  transition: visibility 1s;
}
#custom-html-v .slidebutton {
  width: 50px;
  height: 150px;
  border-radius: 0px 5px 5px 0;
  background: #E06A4C;
}
#custom-html-v .slidebutton:after {
  position: absolute;
  font-family: 'arial';
  top: 60px;
  left: -1px;
  font-size: 1.1rem;
  font-weight: 500;
  content: "NEWS";
  color: white;
  transform: rotate(90deg);
  -webkit-transform: rotate(-90deg);
}
#custom-html-v .mytextlink {
  font-family: 'Arial';
  color: white;
}
#custom-html-v .mytextlink:hover {
  color: #FFC20A;
}
#custom-html-v .ZeigMichNicht {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}
#custom-html-v #slideout {
  position: fixed;
  top: 240px;
  left: 0;
  width: 40px;
  padding: 0px 0px 0px 0px;
  text-align: center;
  background: transparent;
  z-index: 10000;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 0 3px 3px 0;
  z-index: 99999!important;
}
@media (max-width: 768px) {
  #custom-html-v #slideout {
    display: none;
  }
}
#custom-html-v hr.style-one {
  border: 0;
  height: 1px;
  background: #000;
}
#custom-html-v #idTexte {
  position: absolute;
  top: 10px;
  padding: 20px;
  font-family: 'arial';
}
#custom-html-v #idBild {
  position: absolute;
  top: 400px;
  padding: 22px;
}
#custom-html-v #slideout_inner {
  position: fixed;
  top: 00px;
  background: #232323;
  width: 33%;
  left: -33%;
  height: 100vh;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-align: left;
  border-top: 2px solid #8d97ad;
  border-bottom: 2px solid #8d97ad;
}
@media (max-width: 1200px) {
  #custom-html-v #slideout_inner {
    width: 50%;
    left: -50%;
  }
}
#custom-html-v #slideout_inner textarea {
  width: 30%;
  height: 100px;
  margin-bottom: 6px;
}
@media (max-width: 1200px) {
  #custom-html-v #slideout_inner textarea {
    width: 50%;
  }
}
#custom-html-v #slideout:hover {
  left: 33%;
}
@media (max-width: 1200px) {
  #custom-html-v #slideout:hover {
    left: 50%;
  }
}
#custom-html-v #slideout:hover #slideout_inner {
  left: 0;
}
#custom-html-v #overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
@keyframes animationName {
  from {
    background-color: transparent;
    display: block;
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
  }
}
@keyframes animation2Name {
  from {
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }
  to {
    background-color: transparent;
    display: none;
    z-index: -1;
  }
}
.cid-t3aZPP2ra9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffe2b7;
}
.cid-t3aZPP2ra9 .carousel {
  height: 800px;
}
.cid-t3aZPP2ra9 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-t3aZPP2ra9 .carousel-item,
.cid-t3aZPP2ra9 .carousel-inner {
  height: 100%;
}
.cid-t3aZPP2ra9 .carousel-caption {
  bottom: 40px;
}
.cid-t3aZPP2ra9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-t3aZPP2ra9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-t3aZPP2ra9 .carousel-control:hover {
  background-color: #6f8bab;
}
.cid-t3aZPP2ra9 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-t3aZPP2ra9 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-t3aZPP2ra9 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-t3aZPP2ra9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-t3aZPP2ra9 .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s;
  font-weight: 600;
  opacity: 1;
  color: #000000;
  background-color: #fdfcff;
}
.cid-t3aZPP2ra9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t3aZPP2ra9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t3aZPP2ra9 .carousel-control.carousel-control-prev {
    margin-left: 1.5rem;
  }
  .cid-t3aZPP2ra9 .carousel-control.carousel-control-next {
    margin-right: 1.5rem;
  }
}
.cid-t3aZPP2ra9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-t3aZPP2ra9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: #fdfcff;
  border: 2px solid #fdfcff;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-t3aZPP2ra9 .carousel-indicators li.active,
.cid-t3aZPP2ra9 .carousel-indicators li:hover {
  background-color: #6f8bab;
  border-color: #6f8bab;
}
.cid-t3aZPP2ra9 .carousel-indicators li::after,
.cid-t3aZPP2ra9 .carousel-indicators li::before {
  content: none;
}
.cid-t3aZPP2ra9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-t3aZPP2ra9 .carousel-indicators {
    display: none !important;
  }
}
.cid-t3aZPP2ra9 ul {
  list-style: none;
  margin: 0;
  padding-left: 61px;
}
.cid-t3aZPP2ra9 li {
  position: relative;
  margin-bottom: 1.5rem;
}
.cid-t3aZPP2ra9 ul li::before {
  position: absolute;
  content: "\2192";
  left: -61px;
  top: -8%;
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
@media (max-width: 768px) {
  .cid-t3aZPP2ra9 ul li::before {
    top: 0;
  }
}
.cid-t3aZPP2ra9 .btn {
  padding: 13px 37px 17px;
  margin-top: 25px;
}
.cid-t3aZPP2ra9 .btn:hover,
.cid-t3aZPP2ra9 .btn:focus {
  border-color: #ffbe87 !important;
  background-color: #ffbe87 !important;
}
.cid-t3aZPP2ra9 .mbr-section-title {
  margin-bottom: 65px;
}
.cid-t3aZPP2ra9 .list {
  color: #000000;
}
.cid-t3aZPP2ra9 .wrap {
  padding: 5rem 1rem;
}
@media (min-width: 1400px) {
  .cid-t3aZPP2ra9 .wrap {
    padding: 0 3rem;
  }
}
.cid-t34XhrvMk3 {
  background-color: #ffe2b7;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.cid-t34XhrvMk3 .content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fef2f2;
  padding: 0 10%;
  text-align: center;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-t34XhrvMk3 .content_wrap {
    padding: 100px 15%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .cid-t34XhrvMk3 .content_wrap {
    padding: 60px 12px;
  }
}
.cid-t34XhrvMk3 .mbr-section-title {
  margin-bottom: 25px;
  color: #253c57;
}
.cid-t34XhrvMk3 .mbr-section-btn {
  margin-top: 42px;
}
@media (max-width: 991px) {
  .cid-t34XhrvMk3 .height_100 {
    height: 100%;
  }
}
.cid-t34XhrvMk3 .item-image,
.cid-t34XhrvMk3 img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cid-t34XhrvMk3 .mbr-section-text,
.cid-t34XhrvMk3 .mbr-section-btn {
  color: #000000;
}
.cid-sV8vnipo9b {
  background-image: url("../../../assets/images/10408597-846483668714847-4262530970422855574-n.jpg");
}
.cid-sV8vnipo9b ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sV8vnipo9b li {
  position: relative;
}
.cid-sV8vnipo9b li:nth-last-child(n+2) {
  margin-bottom: 1rem;
}
.cid-sV8vnipo9b ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #415d7d;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sV8vnipo9b .background {
  padding: 3rem 1rem;
  background-color: #ffbe87;
}
@media (min-width: 992px) {
  .cid-sV8vnipo9b .background {
    margin-top: 5rem;
  }
}
@media (min-width: 992px) {
  .cid-sV8vnipo9b .display-1 {
    font-size: 70px;
  }
  .cid-sV8vnipo9b .display-5 {
    font-size: 29px;
  }
  .cid-sV8vnipo9b .display-7 {
    font-size: 22px;
  }
}
.cid-t353pEvLWl {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffe2b7;
}
.cid-t353pEvLWl .item-img:hover img {
  width: 100%;
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}
.cid-t353pEvLWl .item-img {
  cursor: pointer;
  overflow: hidden;
  height: 460px;
}
.cid-t353pEvLWl .item-img img {
  transition: all 1.5s;
  object-fit: cover;
  height: 100%;
}
.cid-t353pEvLWl .mbr-section-subtitle {
  font-family: "EB Garamond";
  color: #c0bcb7;
}
.cid-t353pEvLWl .text {
  font-family: 'Josefin Sans';
  color: #BA9B67;
}
.cid-t353pEvLWl .author {
  font-family: 'Cormorant Garamond';
  color: #000000;
  font-style: italic;
}
.cid-t353pEvLWl .item-title {
  line-height: 1.161em;
}
@media (min-width: 992px) {
  .cid-t353pEvLWl .right {
    padding-right: 32px;
    padding-left: 32px;
  }
}
.cid-t353pEvLWl .mbr-text {
  color: #000000;
}
.cid-sV8voJvft5 {
  overflow: visible !important;
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sV8voJvft5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.5;
}
.cid-sV8voJvft5 .container-fluid {
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .row {
    margin-bottom: -390px;
  }
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .display-1 {
    font-size: 65px;
  }
  .cid-sV8voJvft5 .display-5 {
    font-size: 29px;
  }
  .cid-sV8voJvft5 .display-7 {
    font-size: 24px;
  }
  .cid-sV8voJvft5 .display-4 {
    font-weight: 300;
  }
}
.cid-sV8voJvft5 .parallax {
  background-image: url("../../../assets/images/safariwueste.jpg");
  height: 400px;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  position: relative;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .parallax {
    height: 640px;
  }
}
.cid-sV8voJvft5 .index {
  z-index: 3;
}
.cid-sV8voJvft5 .text {
  padding: 0;
  background: #ffbe87;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .text {
    width: 777px;
    transform: translate(-35.3%, -75%);
  }
}
@media (min-width: 1400px) {
  .cid-sV8voJvft5 .text {
    transform: translate(-47%, -75%);
  }
}
@media (min-width: 1400px) {
  .cid-sV8voJvft5 .text {
    transform: translate(-7%, -75%);
  }
}
.cid-sV8voJvft5 .wrapper {
  padding: 3rem 1rem 5rem;
  background: #ffbe87;
}
@media (min-width: 992px) {
  .cid-sV8voJvft5 .wrapper {
    padding: 80px 127px 40px;
  }
}
.cid-sV8voJvft5 .mbr-text {
  font-weight: 300;
}
.cid-sV8voJvft5 .mbr-section-btn {
  background: #ffbe87;
  margin-left: 0;
  margin-right: 0;
}
.cid-sV8voJvft5 .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 70px;
  padding-left: 70px;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sV8voJvft5 .btn {
    width: 100%;
  }
}
.cid-sV8voJvft5 .btn:hover {
  background: #18293D !important;
  border-color: #18293D !important;
  color: #fff !important;
}
.cid-t45EqLOQ6L {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-t45EqLOQ6L .mbr-overlay {
  z-index: 1;
}
.cid-t45EqLOQ6L .embla {
  position: relative;
  width: 100%;
}
.cid-t45EqLOQ6L .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-t45EqLOQ6L .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-t45EqLOQ6L .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-t45EqLOQ6L .embla__container {
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-t45EqLOQ6L .embla__slide {
  position: relative;
  min-width: 25%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1400px) {
  .cid-t45EqLOQ6L .embla__slide {
    min-width: 22%;
    max-width: 26%;
  }
}
@media (max-width: 1200px) {
  .cid-t45EqLOQ6L .embla__slide {
    min-width: 30%;
  }
}
@media (max-width: 900px) {
  .cid-t45EqLOQ6L .embla__slide {
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-t45EqLOQ6L .embla__slide {
    min-width: 70%;
  }
}
.cid-t45EqLOQ6L .text-content-block {
  background: #FFE2B7;
  border-radius: 4px;
  padding: 1rem;
}
.cid-t45EqLOQ6L .loop-warning {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  top: 0;
  z-index: 999;
}
.cid-t45EqLOQ6L .loop-warning__content {
  background: #FFE2B7;
  border-radius: 4px;
  padding: 2rem;
}
.cid-t45EqLOQ6L .align-content-block {
  margin: 50% 0 10% 0;
}
.cid-t45EqLOQ6L h5,
.cid-t45EqLOQ6L p {
  text-align: center;
}
.cid-t45EqLOQ6L .embla__slide__inner {
  position: relative;
  overflow: hidden;
  margin: -50% 0 0 0;
}
.cid-t45EqLOQ6L .item-wrapper {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t45EqLOQ6L .item-menu-overlay {
  border-radius: px;
  z-index: 0;
}
.cid-t45EqLOQ6L .embla__slide__img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.cid-t45EqLOQ6L .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(20, 20, 20, 0.5);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-t45EqLOQ6L .embla__button:disabled {
  cursor: default;
  opacity: 0.3;
}
.cid-t45EqLOQ6L .embla__button:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
}
.cid-t45EqLOQ6L .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t45EqLOQ6L .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-t45EqLOQ6L .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-t35pc0Or27 {
  padding-top: 21rem;
  padding-bottom: 21rem;
  background-image: url("../../../assets/images/adobestock-158763365.jpg");
  background-attachment: fixed;
  background-position: bottom;
}
.cid-t35pc0Or27 .mbr-section-title {
  color: #ffe2b7;
}
.cid-t35pc0Or27 h1 {
  top: -480px !important;
  right: 100px;
  font-size: 15rem;
  text-align: right;
  position: absolute;
}
@media (max-width: 768px) {
  .cid-t35pc0Or27 h1 {
    font-size: 5rem;
    top: -300px !important;
  }
}
.cid-t35pc0Or27 h2 {
  top: -250px !important;
  right: 100px;
  font-size: 3rem;
  text-align: right;
  position: absolute;
}
@media (max-width: 768px) {
  .cid-t35pc0Or27 h2 {
    font-size: 1.5rem;
    top: -250px !important;
  }
}
.cid-t35pc0Or27 .mbr-section-subtitle {
  color: #ffddc0;
  text-align: right;
}
.cid-sV8Aot9xoV {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffe2b7;
}
.cid-sV8Aot9xoV .text-wrapper {
  margin-bottom: 85px;
}
.cid-sV8Aot9xoV .list-group-item {
  background-color: transparent;
  padding: .5rem 3.25rem;
}
.cid-sV8Aot9xoV .plan-body {
  border-top: 1px solid #000000;
  padding: 30px;
}
.cid-sV8Aot9xoV .plan-header {
  padding: 30px;
  position: relative;
}
.cid-sV8Aot9xoV .dollar {
  font-size: 18px;
  vertical-align: top;
}
.cid-sV8Aot9xoV .plan {
  height: 100%;
  border: 1px solid #000000;
  word-break: break-word;
  background-color: #ffffff;
}
.cid-sV8Aot9xoV .plan .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-sV8Aot9xoV .sideB {
  background-color: #ffffff;
}
.cid-sV8Aot9xoV .side {
  background-color: #b65636;
  background: rgba(182, 86, 54, 0.4);
}
.cid-sV8Aot9xoV .centerB {
  background-color: #fcf5f0;
}
.cid-sV8Aot9xoV .center {
  background-color: #ffbe87;
  background: #ffbe87;
}
@media (max-width: 991px) {
  .cid-sV8Aot9xoV .wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sV8Aot9xoV .mbr-section-btn {
  margin: 0;
}
.cid-sV8Aot9xoV .btn {
  min-height: 50px;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  margin: 26px 0 0 0;
  padding: 8px 16px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sV8Aot9xoV .display-1 {
    font-size: 70px;
  }
  .cid-sV8Aot9xoV .display-5 {
    font-size: 29px;
  }
  .cid-sV8Aot9xoV .display-7 {
    font-size: 24px;
  }
}
.cid-sV8Aot9xoV .popular {
  padding: .5rem 1rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%);
  background-color: #18293d;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-sV8Aot9xoV .popular {
    padding: 8px 40px;
  }
}
.cid-sV8Aot9xoV .price-term {
  line-height: 20px !important;
}
.cid-sV8Aot9xoV .mbr-section-title {
  text-align: center;
}
.cid-sV8Aot9xoV .mbr-section-subtitle {
  text-align: center;
}
.cid-sV8Aot9xoV .mbr-text {
  text-align: center;
}
.cid-sV8vsLBCZG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eeff42;
  overflow: hidden;
}
.cid-sV8vsLBCZG .media-container-row .mbr-text {
  color: #18293d;
}
.cid-sV8vsLBCZG .mbr-text {
  font-weight: 300;
}
