body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ef7f1a !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #b05a0c !important;
  border-color: #b05a0c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b30000 !important;
  border-color: #b30000 !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: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !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: #984e0b;
  color: #984e0b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ef7f1a;
  border-color: #ef7f1a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ef7f1a !important;
  border-color: #ef7f1a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #990000;
  color: #990000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff0000;
  border-color: #ff0000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !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: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #ef7f1a !important;
}
.text-secondary {
  color: #ff0000 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #984e0b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #990000 !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: #7a6e45 !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: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ef7f1a;
  border-color: #ef7f1a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ef7f1a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fcead9;
}
.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: #dfd9c6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Rubik-VariableFont_wght';
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #ef7f1a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ef7f1a;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ef7f1a;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ef7f1a;
  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: #ef7f1a;
  border-bottom-color: #ef7f1a;
}
.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: #000000 !important;
  background-color: #ef7f1a !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: #ff0000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ef7f1a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-vd4tSnF1ag {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vd4tSnF1ag .mbr-text,
.cid-vd4tSnF1ag blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vd4tSnF1ag .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vd4tSnF1ag .text-center {
    display: none;
  }
}
.cid-vd4tSnF1ag .text-center {
  color: #ef7f1a;
}
.cid-vg2BI2nTCH .mega-menu-block {
  position: relative;
}
.cid-vg2BI2nTCH .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2BI2nTCH .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2BI2nTCH .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2BI2nTCH .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2BI2nTCH .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2BI2nTCH .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2BI2nTCH .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2BI2nTCH .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2BI2nTCH .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2BI2nTCH .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2BI2nTCH .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2BI2nTCH .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2BI2nTCH .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2BI2nTCH .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2BI2nTCH .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2BI2nTCH .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2BI2nTCH .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2BI2nTCH .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2BI2nTCH .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2BI2nTCH .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2BI2nTCH .mm-main-link {
  text-decoration: none;
}
.cid-vg2BI2nTCH .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2BI2nTCH .mm-hamburger {
    display: block;
  }
  .cid-vg2BI2nTCH .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2BI2nTCH .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2BI2nTCH .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2BI2nTCH .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2BI2nTCH .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2BI2nTCH .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2BI2nTCH .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2BI2nTCH .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2BI2nTCH .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2BI2nTCH .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vfybrj7i4E {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vfybrj7i4E .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfybrj7i4E .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfybrj7i4E .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfybrj7i4E [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfybrj7i4E [data-align="left"] {
  flex-direction: row;
}
.cid-vfybrj7i4E .split-column {
  min-height: 150px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfybrj7i4E .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfybrj7i4E .text-col {
  padding: calc(0rem) !important;
}
.cid-vfybrj7i4E .content-inner {
  width: 100%;
}
.cid-vfybrj7i4E H2 {
  text-align: center;
  color: #ef7f1a;
  font-size: 3vw;
}
.cid-vfybrj7i4E P {
  text-align: center;
}
.cid-vfybrj7i4E H1 {
  text-align: center;
}
.cid-vfybrj7i4E .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vfybrj7i4E .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfybrj7i4E .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfybrj7i4E .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfybrj7i4E .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfybrj7i4E .image-col {
    height: 350px;
  }
  .cid-vfybrj7i4E H2 {
    text-align: center;
    color: #ef7f1a;
    font-size: 14px;
  }
}
.cid-vfxODvLMJu {
  padding-top: calc(2rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vfxODvLMJu .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfxODvLMJu .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfxODvLMJu .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfxODvLMJu [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfxODvLMJu [data-align="left"] {
  flex-direction: row;
}
.cid-vfxODvLMJu .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  background-color: transparent;
  border-radius: 38px 0px 0px 38px;
}
.cid-vfxODvLMJu .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfxODvLMJu .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfxODvLMJu .content-inner {
  width: 100%;
}
.cid-vfxODvLMJu h2 {
  font-size: 2.7vw;
  color: #ef7f1a;
}
@media (max-width: 991px) {
  .cid-vfxODvLMJu .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfxODvLMJu .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfxODvLMJu .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfxODvLMJu .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfxODvLMJu .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfxODvLMJu h2 {
    font-size: 30px;
    color: #ef7f1a;
  }
}
@media (max-width: 600px) {
  .cid-vfxODvLMJu .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfxODvLMJu .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfxODvLMJu .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfxODvLMJu .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfxODvLMJu .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfxODvLMJu h2 {
    font-size: 20px;
    color: #ef7f1a;
  }
}
.cid-t6PG9gC5sE {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-t6PG9gC5sE .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t6PG9gC5sE .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t6PG9gC5sE .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t6PG9gC5sE .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-t6PG9gC5sE .media-content {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-t6PG9gC5sE .media-content h1 {
    font-size: 20px;
  }
}
.cid-t6PG9gC5sE H1 {
  color: #232323;
}
.cid-t6PG9gC5sE .mbr-text,
.cid-t6PG9gC5sE .mbr-section-btn {
  color: #ffffff;
}
@media screen and (min-width: 901px) {
  .cid-t6PG9gC5sE div.example {
    font-size: 19px;
    text-align: center;
  }
  .cid-t6PG9gC5sE div.image {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-t6PG9gC5sE th,
  .cid-t6PG9gC5sE td {
    font-size: 16px;
  }
}
@media screen and (max-width: 900px) {
  .cid-t6PG9gC5sE div.example {
    font-size: 16px;
    text-align: center;
  }
  .cid-t6PG9gC5sE div.image {
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-t6PG9gC5sE th,
  .cid-t6PG9gC5sE td {
    font-size: 12px;
  }
}
.cid-t6PG9gC5sE .center {
  margin-left: auto;
}
.cid-t6PG9gC5sE .container {
  transition: transform 2s ease;
}
.cid-t6PG9gC5sE .container:hover {
  -ms-transform: scale(1.02);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.cid-t6PG9gC5sE img {
  height: 400px;
  width: auto;
}
.cid-t6PG9gC5sE H2 {
  color: #ef7f1a;
}
.cid-t6PG9gC5sE H3 {
  color: #ef7f1a;
}
.cid-t6PG9gC5sE H4 {
  color: #ffffff;
}
.cid-vfILem7Qkm {
  padding-top: calc(2rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vfILem7Qkm .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfILem7Qkm .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfILem7Qkm .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfILem7Qkm [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfILem7Qkm [data-align="left"] {
  flex-direction: row;
}
.cid-vfILem7Qkm .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfILem7Qkm .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 38px 0px 0px 38px;
}
.cid-vfILem7Qkm .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfILem7Qkm .content-inner {
  width: 100%;
}
.cid-vfILem7Qkm h1 {
  font-size: 25px;
}
.cid-vfILem7Qkm h2 {
  color: #ef7f1a;
  font-size: 2.7vw;
}
@media (max-width: 991px) {
  .cid-vfILem7Qkm .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfILem7Qkm .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfILem7Qkm .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfILem7Qkm .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfILem7Qkm .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfILem7Qkm h2 {
    font-size: 30px;
    color: #ef7f1a;
  }
}
@media (max-width: 600px) {
  .cid-vfILem7Qkm .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfILem7Qkm .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfILem7Qkm .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfILem7Qkm .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfILem7Qkm .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfILem7Qkm h2 {
    font-size: 20px;
    color: #ef7f1a;
  }
}
.cid-tbmulJ8rTN {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: transparent;
}
.cid-tbmulJ8rTN .line {
  background-color: transparent;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tbmulJ8rTN .section-text {
  padding: 2rem 0;
  text-align: center;
  color: #ffffff;
}
.cid-tbmulJ8rTN .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tbmulJ8rTN .inner-container {
    width: 100% !important;
  }
  .cid-tbmulJ8rTN .section-text2 {
    padding: 2rem 0;
    text-align: right;
    color: blk;
  }
  .cid-tbmulJ8rTN .h3 {
    padding: 2rem 0;
    text-align: right;
    color: blk;
  }
}
.cid-tbmulJ8rTN .section-text DIV {
  text-align: center;
}
.cid-tbmulJ8rTN b {
  text-align: center;
}
.cid-tbmulJ8rTN .container {
  transition: transform 2s ease;
}
.cid-tbmulJ8rTN .container:hover {
  -ms-transform: scale(1.02);
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.cid-vfy8KOf1TL {
  padding-top: calc(2rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfy8KOf1TL .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfy8KOf1TL .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfy8KOf1TL .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfy8KOf1TL [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfy8KOf1TL [data-align="left"] {
  flex-direction: row;
}
.cid-vfy8KOf1TL .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfy8KOf1TL .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 38px 0px 0px 38px;
}
.cid-vfy8KOf1TL .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfy8KOf1TL .content-inner {
  width: 100%;
}
.cid-vfy8KOf1TL h1 {
  font-size: 2vw;
}
.cid-vfy8KOf1TL H1 {
  color: #ef7f1a;
  font-size: 30px;
}
@media (max-width: 991px) {
  .cid-vfy8KOf1TL .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfy8KOf1TL .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfy8KOf1TL .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfy8KOf1TL .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfy8KOf1TL .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfy8KOf1TL h2 {
    font-size: 30px;
    color: #ef7f1a;
  }
}
@media (max-width: 600px) {
  .cid-vfy8KOf1TL .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfy8KOf1TL .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfy8KOf1TL .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfy8KOf1TL .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfy8KOf1TL .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfy8KOf1TL h2 {
    font-size: 20px;
    color: #ef7f1a;
  }
}
.cid-vfJJCUwGms {
  padding-top: calc(2rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfJJCUwGms .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfJJCUwGms .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: transparent;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfJJCUwGms .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfJJCUwGms [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfJJCUwGms [data-align="left"] {
  flex-direction: row;
}
.cid-vfJJCUwGms .split-column {
  background-color: transparent;
  min-height: 300px;
  margin: 0 !important;
  display: flex;
  align-items: center;
  border-radius: 40px 0px 0px 40px;
}
.cid-vfJJCUwGms H1 {
  color: #ef7f1a;
  font-size: 30px;
}
.cid-vfJJCUwGms .image-col img {
  background-color: transparent;
  width: 50%;
  height: 50%;
  object-fit: contain;
  display: block;
  border-radius: 40px 0px 0px 40px;
}
.cid-vfJJCUwGms .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfJJCUwGms .content-inner {
  width: 100%;
}
.cid-vfJJCUwGms h1 {
  font-size: 4vw;
}
@media (max-width: 991px) {
  .cid-vfJJCUwGms .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfJJCUwGms .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfJJCUwGms .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfJJCUwGms .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfJJCUwGms .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfJJCUwGms P {
  color: #ffffff;
}
.cid-vfy9w3wdrK {
  padding-top: calc(2rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfy9w3wdrK .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfy9w3wdrK .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfy9w3wdrK .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfy9w3wdrK [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfy9w3wdrK [data-align="left"] {
  flex-direction: row;
}
.cid-vfy9w3wdrK .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 0px 0px 38px;
}
.cid-vfy9w3wdrK .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfy9w3wdrK .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfy9w3wdrK .content-inner {
  width: 100%;
}
.cid-vfy9w3wdrK h1 {
  font-size: 2vw;
}
.cid-vfy9w3wdrK H1 {
  color: #232323;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfy9w3wdrK .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfy9w3wdrK .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfy9w3wdrK .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfy9w3wdrK .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfy9w3wdrK .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfy9w3wdrK h2 {
    font-size: 30px;
    color: #ef7f1a;
  }
}
@media (max-width: 600px) {
  .cid-vfy9w3wdrK .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfy9w3wdrK .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfy9w3wdrK .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfy9w3wdrK .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfy9w3wdrK .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vfy9w3wdrK h2 {
    font-size: 20px;
    color: #ef7f1a;
  }
}
.cid-vg0sGXWkbc {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg0sGXWkbc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg0sGXWkbc p {
  color: #767676;
  text-align: left;
}
.cid-vg0sGXWkbc .card-box {
  padding-top: 2rem;
}
.cid-vg0sGXWkbc .card-wrapper {
  height: 100%;
}
.cid-vg0sGXWkbc img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg0sGXWkbc div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg0sGXWkbc div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg0sGXWkbc div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg0sGXWkbc div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg0sGXWkbc .center {
  margin-left: auto;
}
.cid-urVnILNzrL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVnILNzrL P {
  color: #767676;
}
.cid-urVnILNzrL H1 {
  color: #ffffff;
}
#custom-html-1pq {
  /* Type valid CSS here */
}
#custom-html-1pq div {
  padding: 2px 0;
  color: #777;
  text-align: center;
  background-color: black;
}
#custom-html-1pq p {
  font-size: 20px;
  color: white;
}
#custom-html-1pq a {
  font-size: 20px;
  color: #4b5457;
  font-weight: 800;
}
#custom-html-1pq h1 {
  color: #4b5457;
  margin: auto;
  text-align: center;
  font-size: 7vmin;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  background-color: black;
  background-clip: text;
  color: transparent;
  text-shadow: rgba(255, 255, 255, 0.5) 0px 3px 3px;
}
#custom-html-1pq .modalDialog {
  position: Fixed;
  font-family: Verdana, Sans-Serif;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
  z-index: 99999;
  opacity: 0;
  transition: opacity 400ms ease-in;
  pointer-events: None;
}
#custom-html-1pq .modalDialog:target {
  opacity: 1;
  pointer-events: Auto;
}
#custom-html-1pq .modalDialog > div {
  width: 700px;
  max-width: 70%;
  position: relative;
  margin: 10% Auto;
  padding: 30px 5px 30px 5px;
  border-radius: 30px;
  background: #ffffff;
  background: linear-gradient(181deg, #ffffff 0%, #c8c8c8 67%);
  cursor: Default;
}
#custom-html-1pq .close {
  background-color: #ef7f1a;
  opacity: 1.0;
  color: #ffffff;
  line-height: 30px;
  width: 30px;
  position: Absolute;
  right: -30px;
  text-align: Center;
  top: -25px;
  text-decoration: None;
  font-size: 14px;
  font-weight: Bold;
  border-radius: 12px;
  box-shadow: 5px 5px 8px #000000;
}
#custom-html-1pq .close:hover {
  background-color: grey;
}
.cid-vfXoWqoM7q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vfXoWqoM7q .mbr-text,
.cid-vfXoWqoM7q blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vfXoWqoM7q .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vfXoWqoM7q .text-center {
    display: none;
  }
}
.cid-vfXoWqoM7q .text-center {
  color: #ef7f1a;
}
.cid-vg2Km6c12n .mega-menu-block {
  position: relative;
}
.cid-vg2Km6c12n .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2Km6c12n .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2Km6c12n .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2Km6c12n .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2Km6c12n .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2Km6c12n .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2Km6c12n .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2Km6c12n .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2Km6c12n .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2Km6c12n .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2Km6c12n .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2Km6c12n .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2Km6c12n .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2Km6c12n .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2Km6c12n .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2Km6c12n .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2Km6c12n .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2Km6c12n .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2Km6c12n .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2Km6c12n .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2Km6c12n .mm-main-link {
  text-decoration: none;
}
.cid-vg2Km6c12n .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2Km6c12n .mm-hamburger {
    display: block;
  }
  .cid-vg2Km6c12n .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2Km6c12n .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2Km6c12n .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2Km6c12n .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2Km6c12n .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2Km6c12n .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2Km6c12n .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2Km6c12n .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2Km6c12n .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2Km6c12n .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vfXmbrnqIg {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vfXmbrnqIg .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfXmbrnqIg .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vfXmbrnqIg .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfXmbrnqIg [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfXmbrnqIg [data-align="left"] {
  flex-direction: row;
}
.cid-vfXmbrnqIg .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfXmbrnqIg .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfXmbrnqIg .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfXmbrnqIg .content-inner {
  width: 100%;
}
.cid-vfXmbrnqIg h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vfXmbrnqIg P {
  text-align: center;
}
.cid-vfXmbrnqIg H1 {
  text-align: center;
}
.cid-vfXmbrnqIg .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vfXmbrnqIg .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfXmbrnqIg .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfXmbrnqIg .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfXmbrnqIg .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfXmbrnqIg .image-col {
    height: 350px;
  }
  .cid-vfXmbrnqIg h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vfDTY4QI1d {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vfDTY4QI1d .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDTY4QI1d .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDTY4QI1d .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDTY4QI1d [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDTY4QI1d [data-align="left"] {
  flex-direction: row;
}
.cid-vfDTY4QI1d .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDTY4QI1d .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(5deg);
}
.cid-vfDTY4QI1d .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDTY4QI1d .content-inner {
  width: 100%;
}
.cid-vfDTY4QI1d th {
  color: #ef7f1a;
}
.cid-vfDTY4QI1d td {
  color: white;
}
.cid-vfDTY4QI1d h1 {
  font-size: 2vw;
}
.cid-vfDTY4QI1d H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDTY4QI1d .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDTY4QI1d .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDTY4QI1d .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDTY4QI1d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDTY4QI1d .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDTY4QI1d .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDTY4QI1d .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDTY4QI1d .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDTY4QI1d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDTY4QI1d .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDVSamxyC {
  padding-top: calc(1rem);
  padding-bottom: calc(4rem);
  background-color: transparent;
}
.cid-vfDVSamxyC .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDVSamxyC .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDVSamxyC .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDVSamxyC [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDVSamxyC [data-align="left"] {
  flex-direction: row;
}
.cid-vfDVSamxyC .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDVSamxyC .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(-5deg);
}
.cid-vfDVSamxyC .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDVSamxyC .content-inner {
  width: 100%;
}
.cid-vfDVSamxyC th {
  color: #ef7f1a;
}
.cid-vfDVSamxyC td {
  color: white;
}
.cid-vfDVSamxyC h1 {
  font-size: 2vw;
}
.cid-vfDVSamxyC H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDVSamxyC .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDVSamxyC .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDVSamxyC .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDVSamxyC .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDVSamxyC .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDVSamxyC .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDVSamxyC .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDVSamxyC .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDVSamxyC .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDVSamxyC .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-sQMUmgtswa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f46e10;
}
.cid-sQMUmgtswa .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sQMUmgtswa .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #232323;
}
.cid-sQMUmgtswa .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sQMUmgtswa .inner-container {
    width: 100% !important;
  }
}
.cid-vfDXhAqwf7 {
  padding-top: calc(0rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfDXhAqwf7 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDXhAqwf7 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDXhAqwf7 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDXhAqwf7 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDXhAqwf7 [data-align="left"] {
  flex-direction: row;
}
.cid-vfDXhAqwf7 .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDXhAqwf7 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(5deg);
}
.cid-vfDXhAqwf7 .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDXhAqwf7 .content-inner {
  width: 100%;
}
.cid-vfDXhAqwf7 th {
  color: #ef7f1a;
}
.cid-vfDXhAqwf7 td {
  color: white;
}
.cid-vfDXhAqwf7 h1 {
  font-size: 2vw;
}
.cid-vfDXhAqwf7 H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDXhAqwf7 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDXhAqwf7 .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDXhAqwf7 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDXhAqwf7 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDXhAqwf7 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDXhAqwf7 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDXhAqwf7 .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDXhAqwf7 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDXhAqwf7 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDXhAqwf7 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDXQ3KvkU {
  padding-top: calc(4rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfDXQ3KvkU .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDXQ3KvkU .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDXQ3KvkU .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDXQ3KvkU [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDXQ3KvkU [data-align="left"] {
  flex-direction: row;
}
.cid-vfDXQ3KvkU .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDXQ3KvkU .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(-5deg);
}
.cid-vfDXQ3KvkU .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDXQ3KvkU .content-inner {
  width: 100%;
}
.cid-vfDXQ3KvkU th {
  color: #ef7f1a;
}
.cid-vfDXQ3KvkU td {
  color: white;
}
.cid-vfDXQ3KvkU h1 {
  font-size: 2vw;
}
.cid-vfDXQ3KvkU H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDXQ3KvkU .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDXQ3KvkU .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDXQ3KvkU .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDXQ3KvkU .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDXQ3KvkU .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDXQ3KvkU .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDXQ3KvkU .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDXQ3KvkU .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDXQ3KvkU .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDXQ3KvkU .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDYrfIAQF {
  padding-top: calc(2rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfDYrfIAQF .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDYrfIAQF .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDYrfIAQF .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDYrfIAQF [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDYrfIAQF [data-align="left"] {
  flex-direction: row;
}
.cid-vfDYrfIAQF .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDYrfIAQF .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(5deg);
}
.cid-vfDYrfIAQF .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDYrfIAQF .content-inner {
  width: 100%;
}
.cid-vfDYrfIAQF th {
  color: #ef7f1a;
}
.cid-vfDYrfIAQF td {
  color: white;
}
.cid-vfDYrfIAQF h1 {
  font-size: 2vw;
}
.cid-vfDYrfIAQF H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDYrfIAQF .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDYrfIAQF .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDYrfIAQF .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDYrfIAQF .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDYrfIAQF .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDYrfIAQF .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDYrfIAQF .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDYrfIAQF .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDYrfIAQF .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDYrfIAQF .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDYZ0XhA3 {
  padding-top: calc(4rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfDYZ0XhA3 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDYZ0XhA3 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDYZ0XhA3 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDYZ0XhA3 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDYZ0XhA3 [data-align="left"] {
  flex-direction: row;
}
.cid-vfDYZ0XhA3 .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDYZ0XhA3 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: rotate(-5deg);
}
.cid-vfDYZ0XhA3 .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDYZ0XhA3 .content-inner {
  width: 100%;
}
.cid-vfDYZ0XhA3 th {
  color: #ef7f1a;
}
.cid-vfDYZ0XhA3 td {
  color: white;
}
.cid-vfDYZ0XhA3 h1 {
  font-size: 2vw;
}
.cid-vfDYZ0XhA3 H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDYZ0XhA3 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDYZ0XhA3 .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDYZ0XhA3 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDYZ0XhA3 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDYZ0XhA3 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDYZ0XhA3 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDYZ0XhA3 .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfDYZ0XhA3 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfDYZ0XhA3 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDYZ0XhA3 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vg0s3CQN1o {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg0s3CQN1o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg0s3CQN1o p {
  color: #767676;
  text-align: left;
}
.cid-vg0s3CQN1o .card-box {
  padding-top: 2rem;
}
.cid-vg0s3CQN1o .card-wrapper {
  height: 100%;
}
.cid-vg0s3CQN1o img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg0s3CQN1o div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg0s3CQN1o div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg0s3CQN1o div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg0s3CQN1o div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg0s3CQN1o .center {
  margin-left: auto;
}
.cid-urVR5HYK2N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVR5HYK2N P {
  color: #767676;
}
.cid-urVR5HYK2N H1 {
  color: #dcdcdc;
}
.cid-vg0Cwcjbhe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg0Cwcjbhe .mbr-text,
.cid-vg0Cwcjbhe blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg0Cwcjbhe .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg0Cwcjbhe .text-center {
    display: none;
  }
}
.cid-vg0Cwcjbhe .text-center {
  color: #ef7f1a;
}
.cid-vg2KQyaEHZ .mega-menu-block {
  position: relative;
}
.cid-vg2KQyaEHZ .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2KQyaEHZ .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2KQyaEHZ .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2KQyaEHZ .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2KQyaEHZ .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2KQyaEHZ .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2KQyaEHZ .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2KQyaEHZ .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2KQyaEHZ .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2KQyaEHZ .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2KQyaEHZ .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2KQyaEHZ .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2KQyaEHZ .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2KQyaEHZ .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2KQyaEHZ .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2KQyaEHZ .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2KQyaEHZ .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2KQyaEHZ .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2KQyaEHZ .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2KQyaEHZ .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2KQyaEHZ .mm-main-link {
  text-decoration: none;
}
.cid-vg2KQyaEHZ .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2KQyaEHZ .mm-hamburger {
    display: block;
  }
  .cid-vg2KQyaEHZ .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2KQyaEHZ .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2KQyaEHZ .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2KQyaEHZ .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2KQyaEHZ .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2KQyaEHZ .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2KQyaEHZ .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2KQyaEHZ .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2KQyaEHZ .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2KQyaEHZ .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg0ARn0m7d {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg0ARn0m7d .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg0ARn0m7d .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg0ARn0m7d .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg0ARn0m7d [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg0ARn0m7d [data-align="left"] {
  flex-direction: row;
}
.cid-vg0ARn0m7d .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg0ARn0m7d .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg0ARn0m7d .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg0ARn0m7d .content-inner {
  width: 100%;
}
.cid-vg0ARn0m7d h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg0ARn0m7d P {
  text-align: center;
}
.cid-vg0ARn0m7d H1 {
  text-align: center;
}
.cid-vg0ARn0m7d .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg0ARn0m7d .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg0ARn0m7d .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg0ARn0m7d .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg0ARn0m7d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg0ARn0m7d .image-col {
    height: 350px;
  }
  .cid-vg0ARn0m7d h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vfECslig7Y {
  padding-top: calc(3rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfECslig7Y .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfECslig7Y .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfECslig7Y .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfECslig7Y [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfECslig7Y [data-align="left"] {
  flex-direction: row;
}
.cid-vfECslig7Y .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfECslig7Y .image-col img {
  background-color: #131212;
  width: 100%;
  height: 100%;
  object-fit: fit;
  display: block;
}
.cid-vfECslig7Y .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfECslig7Y .content-inner {
  width: 100%;
}
.cid-vfECslig7Y h1 {
  font-size: 30px;
}
.cid-vfECslig7Y p {
  font-size: 20px;
}
@media (max-width: 991px) {
  .cid-vfECslig7Y .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfECslig7Y .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfECslig7Y .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfECslig7Y .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfECslig7Y .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfECslig7Y .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfECslig7Y .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfECslig7Y .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfECslig7Y .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfECslig7Y .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfECslig7Y H1 {
  color: #ef7f1a;
}
.cid-vfECslig7Y P {
  color: #ffffff;
}
.cid-vg0BVuklHk {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg0BVuklHk .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg0BVuklHk .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg0BVuklHk .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg0BVuklHk [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg0BVuklHk [data-align="left"] {
  flex-direction: row;
}
.cid-vg0BVuklHk .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg0BVuklHk .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg0BVuklHk .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg0BVuklHk .content-inner {
  width: 100%;
}
.cid-vg0BVuklHk h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg0BVuklHk P {
  text-align: center;
}
.cid-vg0BVuklHk H1 {
  text-align: center;
}
.cid-vg0BVuklHk .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg0BVuklHk .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg0BVuklHk .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg0BVuklHk .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg0BVuklHk .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg0BVuklHk .image-col {
    height: 350px;
  }
  .cid-vg0BVuklHk h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg0BVuklHk H2 {
  text-align: justify;
}
.cid-vg0BtLQAJy {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg0BtLQAJy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg0BtLQAJy p {
  color: #767676;
  text-align: left;
}
.cid-vg0BtLQAJy .card-box {
  padding-top: 2rem;
}
.cid-vg0BtLQAJy .card-wrapper {
  height: 100%;
}
.cid-vg0BtLQAJy img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg0BtLQAJy div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg0BtLQAJy div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg0BtLQAJy div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg0BtLQAJy div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg0BtLQAJy .center {
  margin-left: auto;
}
.cid-urVRbsI2BA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRbsI2BA P {
  color: #767676;
}
.cid-urVRbsI2BA H1 {
  color: #dcdcdc;
}
.cid-vg0E2zAQ67 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg0E2zAQ67 .mbr-text,
.cid-vg0E2zAQ67 blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg0E2zAQ67 .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg0E2zAQ67 .text-center {
    display: none;
  }
}
.cid-vg0E2zAQ67 .text-center {
  color: #ef7f1a;
}
.cid-vg2KYUkxaf .mega-menu-block {
  position: relative;
}
.cid-vg2KYUkxaf .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2KYUkxaf .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2KYUkxaf .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2KYUkxaf .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2KYUkxaf .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2KYUkxaf .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2KYUkxaf .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2KYUkxaf .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2KYUkxaf .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2KYUkxaf .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2KYUkxaf .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2KYUkxaf .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2KYUkxaf .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2KYUkxaf .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2KYUkxaf .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2KYUkxaf .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2KYUkxaf .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2KYUkxaf .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2KYUkxaf .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2KYUkxaf .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2KYUkxaf .mm-main-link {
  text-decoration: none;
}
.cid-vg2KYUkxaf .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2KYUkxaf .mm-hamburger {
    display: block;
  }
  .cid-vg2KYUkxaf .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2KYUkxaf .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2KYUkxaf .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2KYUkxaf .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2KYUkxaf .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2KYUkxaf .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2KYUkxaf .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2KYUkxaf .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2KYUkxaf .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2KYUkxaf .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg0FxNSPmm {
  padding-top: calc(45px);
  padding-bottom: calc(35px);
  background-color: transparent;
}
.cid-vg0FxNSPmm .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg0FxNSPmm .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg0FxNSPmm .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg0FxNSPmm [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg0FxNSPmm [data-align="left"] {
  flex-direction: row;
}
.cid-vg0FxNSPmm .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg0FxNSPmm .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg0FxNSPmm .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg0FxNSPmm .content-inner {
  width: 100%;
}
.cid-vg0FxNSPmm h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg0FxNSPmm P {
  text-align: center;
}
.cid-vg0FxNSPmm H1 {
  text-align: center;
}
.cid-vg0FxNSPmm .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg0FxNSPmm .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg0FxNSPmm .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg0FxNSPmm .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg0FxNSPmm .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg0FxNSPmm .image-col {
    height: 350px;
  }
  .cid-vg0FxNSPmm h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg0FxNSPmm H2 {
  text-align: justify;
}
.cid-vg1wqV6cLr {
  padding-top: calc(2rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg1wqV6cLr .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1wqV6cLr .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg1wqV6cLr .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1wqV6cLr [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1wqV6cLr [data-align="left"] {
  flex-direction: row;
}
.cid-vg1wqV6cLr .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 0px 0px 40px;
}
.cid-vg1wqV6cLr .image-col img {
  padding-right: 50px;
  background-color: #131212;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1wqV6cLr .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vg1wqV6cLr .content-inner {
  width: 100%;
}
.cid-vg1wqV6cLr h2 {
  font-size: 2.7vw;
  color: #ef7f1a;
}
@media (max-width: 991px) {
  .cid-vg1wqV6cLr .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1wqV6cLr .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vg1wqV6cLr .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vg1wqV6cLr .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1wqV6cLr .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vg1wqV6cLr h2 {
    font-size: 30px;
    color: #ef7f1a;
  }
}
@media (max-width: 600px) {
  .cid-vg1wqV6cLr .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1wqV6cLr .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vg1wqV6cLr .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vg1wqV6cLr .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1wqV6cLr .image-col {
    border-radius: 0px 38px 38px 0px;
  }
  .cid-vg1wqV6cLr h2 {
    font-size: 20px;
    color: #ef7f1a;
  }
}
.cid-vg0Ey2fxDu {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg0Ey2fxDu .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg0Ey2fxDu .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg0Ey2fxDu .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg0Ey2fxDu [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg0Ey2fxDu [data-align="left"] {
  flex-direction: row;
}
.cid-vg0Ey2fxDu .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg0Ey2fxDu .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg0Ey2fxDu .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg0Ey2fxDu .content-inner {
  width: 100%;
}
.cid-vg0Ey2fxDu h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg0Ey2fxDu P {
  text-align: center;
}
.cid-vg0Ey2fxDu H1 {
  text-align: center;
}
.cid-vg0Ey2fxDu .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg0Ey2fxDu .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg0Ey2fxDu .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg0Ey2fxDu .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg0Ey2fxDu .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg0Ey2fxDu .image-col {
    height: 350px;
  }
  .cid-vg0Ey2fxDu h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg0Ey2fxDu H2 {
  text-align: justify;
}
.cid-sQN3laVHSY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: transparent;
}
.cid-sQN3laVHSY .mbr-section-subtitle,
.cid-sQN3laVHSY .mbr-text {
  color: #767676;
}
.cid-sQN3laVHSY .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sQN3laVHSY .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sQN3laVHSY .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sQN3laVHSY .card-wrapper .card-img .mbr-overlay {
  background-color: #f9934c;
  display: none;
  transition: opacity .3s;
}
.cid-sQN3laVHSY .card-wrapper .card-img img {
  width: 100%;
}
.cid-sQN3laVHSY .card-wrapper .card-box {
  background-color: #f9934c;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sQN3laVHSY .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sQN3laVHSY .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-sQN3laVHSY .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sQN3laVHSY .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sQN3laVHSY .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-sQN3Hd0mVY {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: transparent;
}
.cid-sQN3Hd0mVY .mbr-section-subtitle,
.cid-sQN3Hd0mVY .mbr-text {
  color: #767676;
}
.cid-sQN3Hd0mVY .card {
  display: -webkit-flex;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sQN3Hd0mVY .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sQN3Hd0mVY .card-wrapper .card-img {
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-flex-direction: column;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sQN3Hd0mVY .card-wrapper .card-img .mbr-overlay {
  background-color: #f9934c;
  display: none;
  transition: opacity .3s;
}
.cid-sQN3Hd0mVY .card-wrapper .card-img img {
  width: 100%;
}
.cid-sQN3Hd0mVY .card-wrapper .card-box {
  background-color: #f9934c;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-sQN3Hd0mVY .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-sQN3Hd0mVY .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-top: 2rem;
}
.cid-sQN3Hd0mVY .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cid-sQN3Hd0mVY .card-img .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-sQN3Hd0mVY .card-img:hover .mbr-overlay {
  opacity: .5;
}
.cid-vg0EEdfo9r {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg0EEdfo9r h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg0EEdfo9r p {
  color: #767676;
  text-align: left;
}
.cid-vg0EEdfo9r .card-box {
  padding-top: 2rem;
}
.cid-vg0EEdfo9r .card-wrapper {
  height: 100%;
}
.cid-vg0EEdfo9r img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg0EEdfo9r div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg0EEdfo9r div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg0EEdfo9r div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg0EEdfo9r div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg0EEdfo9r .center {
  margin-left: auto;
}
.cid-urVRixYoUe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRixYoUe P {
  color: #767676;
}
.cid-urVRixYoUe H1 {
  color: #dcdcdc;
}
.cid-vg1ESfopcR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1ESfopcR .mbr-text,
.cid-vg1ESfopcR blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1ESfopcR .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1ESfopcR .text-center {
    display: none;
  }
}
.cid-vg1ESfopcR .text-center {
  color: #ef7f1a;
}
.cid-vg2LbAf0mB .mega-menu-block {
  position: relative;
}
.cid-vg2LbAf0mB .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LbAf0mB .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LbAf0mB .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LbAf0mB .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LbAf0mB .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LbAf0mB .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LbAf0mB .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LbAf0mB .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LbAf0mB .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LbAf0mB .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LbAf0mB .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LbAf0mB .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LbAf0mB .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LbAf0mB .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LbAf0mB .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LbAf0mB .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LbAf0mB .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LbAf0mB .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LbAf0mB .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LbAf0mB .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LbAf0mB .mm-main-link {
  text-decoration: none;
}
.cid-vg2LbAf0mB .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LbAf0mB .mm-hamburger {
    display: block;
  }
  .cid-vg2LbAf0mB .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LbAf0mB .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LbAf0mB .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LbAf0mB .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LbAf0mB .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LbAf0mB .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LbAf0mB .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LbAf0mB .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LbAf0mB .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LbAf0mB .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1F5gnpB6 {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1F5gnpB6 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1F5gnpB6 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1F5gnpB6 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1F5gnpB6 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1F5gnpB6 [data-align="left"] {
  flex-direction: row;
}
.cid-vg1F5gnpB6 .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1F5gnpB6 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1F5gnpB6 .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1F5gnpB6 .content-inner {
  width: 100%;
}
.cid-vg1F5gnpB6 h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1F5gnpB6 P {
  text-align: center;
}
.cid-vg1F5gnpB6 H1 {
  text-align: center;
}
.cid-vg1F5gnpB6 .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1F5gnpB6 .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1F5gnpB6 .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1F5gnpB6 .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1F5gnpB6 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1F5gnpB6 .image-col {
    height: 350px;
  }
  .cid-vg1F5gnpB6 h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-urs4pP0ubl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #817f7f;
  margin: 0 auto;
}
.cid-urs4pP0ubl .mbr-text,
.cid-urs4pP0ubl blockquote {
  color: #767676;
}
.cid-vg1Fe4XCMD {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1Fe4XCMD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1Fe4XCMD p {
  color: #767676;
  text-align: left;
}
.cid-vg1Fe4XCMD .card-box {
  padding-top: 2rem;
}
.cid-vg1Fe4XCMD .card-wrapper {
  height: 100%;
}
.cid-vg1Fe4XCMD img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1Fe4XCMD div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1Fe4XCMD div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1Fe4XCMD div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1Fe4XCMD div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1Fe4XCMD .center {
  margin-left: auto;
}
.cid-sQWFO6wMrx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f46e10;
}
.cid-sQWFO6wMrx .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sQWFO6wMrx .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #232323;
}
.cid-sQWFO6wMrx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sQWFO6wMrx .inner-container {
    width: 100% !important;
  }
}
.cid-urVRm2WBrx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRm2WBrx P {
  color: #767676;
}
.cid-urVRm2WBrx H1 {
  color: #dcdcdc;
}
.cid-vg1EOFsz6y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1EOFsz6y .mbr-text,
.cid-vg1EOFsz6y blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1EOFsz6y .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1EOFsz6y .text-center {
    display: none;
  }
}
.cid-vg1EOFsz6y .text-center {
  color: #ef7f1a;
}
.cid-vg2LitioCn .mega-menu-block {
  position: relative;
}
.cid-vg2LitioCn .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LitioCn .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LitioCn .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LitioCn .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LitioCn .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LitioCn .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LitioCn .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LitioCn .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LitioCn .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LitioCn .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LitioCn .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LitioCn .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LitioCn .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LitioCn .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LitioCn .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LitioCn .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LitioCn .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LitioCn .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LitioCn .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LitioCn .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LitioCn .mm-main-link {
  text-decoration: none;
}
.cid-vg2LitioCn .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LitioCn .mm-hamburger {
    display: block;
  }
  .cid-vg2LitioCn .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LitioCn .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LitioCn .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LitioCn .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LitioCn .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LitioCn .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LitioCn .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LitioCn .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LitioCn .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LitioCn .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vfA6WsLq7H {
  padding-top: calc(4rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfA6WsLq7H .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfA6WsLq7H .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfA6WsLq7H .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA6WsLq7H [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfA6WsLq7H [data-align="left"] {
  flex-direction: row;
}
.cid-vfA6WsLq7H .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA6WsLq7H .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfA6WsLq7H .text-col {
  padding: calc(2rem) !important;
}
.cid-vfA6WsLq7H .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfA6WsLq7H .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfA6WsLq7H .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfA6WsLq7H .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfA6WsLq7H .image-col {
    height: 350px;
  }
}
.cid-vfA6WsLq7H H2 {
  text-align: justify;
}
.cid-vfA6WsLq7H P {
  text-align: justify;
}
.cid-sWeiID7laB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fd5e0d;
}
.cid-sWeiID7laB .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sWeiID7laB .section-text {
  padding: 2rem 0;
  text-align: left;
}
.cid-sWeiID7laB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sWeiID7laB .inner-container {
    width: 100% !important;
  }
}
.cid-vfA96yK5xv {
  padding-top: calc(3rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfA96yK5xv .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfA96yK5xv .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfA96yK5xv .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA96yK5xv [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfA96yK5xv [data-align="left"] {
  flex-direction: row;
}
.cid-vfA96yK5xv .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA96yK5xv .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfA96yK5xv .text-col {
  padding: calc(2rem) !important;
}
.cid-vfA96yK5xv .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfA96yK5xv .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfA96yK5xv .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfA96yK5xv .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfA96yK5xv .image-col {
    height: 350px;
  }
}
.cid-vfA96yK5xv H2 {
  text-align: justify;
}
.cid-vfA96yK5xv P {
  text-align: justify;
}
.cid-vfA9EIZ0Yf {
  padding-top: calc(3rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfA9EIZ0Yf .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfA9EIZ0Yf .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfA9EIZ0Yf .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA9EIZ0Yf [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfA9EIZ0Yf [data-align="left"] {
  flex-direction: row;
}
.cid-vfA9EIZ0Yf .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfA9EIZ0Yf .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfA9EIZ0Yf .text-col {
  padding: calc(2rem) !important;
}
.cid-vfA9EIZ0Yf .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfA9EIZ0Yf .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfA9EIZ0Yf .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfA9EIZ0Yf .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfA9EIZ0Yf .image-col {
    height: 350px;
  }
}
.cid-vfA9EIZ0Yf H2 {
  text-align: justify;
}
.cid-vfA9EIZ0Yf P {
  text-align: justify;
}
.cid-vfAaieM8tx {
  padding-top: calc(3rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vfAaieM8tx .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfAaieM8tx .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfAaieM8tx .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfAaieM8tx [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfAaieM8tx [data-align="left"] {
  flex-direction: row;
}
.cid-vfAaieM8tx .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfAaieM8tx .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfAaieM8tx .text-col {
  padding: calc(2rem) !important;
}
.cid-vfAaieM8tx .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfAaieM8tx .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfAaieM8tx .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfAaieM8tx .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfAaieM8tx .image-col {
    height: 350px;
  }
}
.cid-vfAaieM8tx H2 {
  text-align: justify;
}
.cid-vfAaieM8tx P {
  text-align: justify;
}
.cid-vfAaO1xBml {
  padding-top: calc(3rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vfAaO1xBml .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfAaO1xBml .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfAaO1xBml .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfAaO1xBml [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfAaO1xBml [data-align="left"] {
  flex-direction: row;
}
.cid-vfAaO1xBml .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfAaO1xBml .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfAaO1xBml .text-col {
  padding: calc(2rem) !important;
}
.cid-vfAaO1xBml .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfAaO1xBml .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfAaO1xBml .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfAaO1xBml .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfAaO1xBml .image-col {
    height: 350px;
  }
}
.cid-vfAaO1xBml H2 {
  text-align: justify;
}
.cid-vfAaO1xBml P {
  text-align: justify;
}
.cid-vg1MJJWLEy {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1MJJWLEy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1MJJWLEy p {
  color: #767676;
  text-align: left;
}
.cid-vg1MJJWLEy .card-box {
  padding-top: 2rem;
}
.cid-vg1MJJWLEy .card-wrapper {
  height: 100%;
}
.cid-vg1MJJWLEy img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1MJJWLEy div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1MJJWLEy div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1MJJWLEy div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1MJJWLEy div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1MJJWLEy .center {
  margin-left: auto;
}
.cid-urVRq5Fo9c {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRq5Fo9c P {
  color: #767676;
}
.cid-urVRq5Fo9c H1 {
  color: #dcdcdc;
}
.cid-vg1EIHI46u {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1EIHI46u .mbr-text,
.cid-vg1EIHI46u blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1EIHI46u .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1EIHI46u .text-center {
    display: none;
  }
}
.cid-vg1EIHI46u .text-center {
  color: #ef7f1a;
}
.cid-vg2LrVouK7 .mega-menu-block {
  position: relative;
}
.cid-vg2LrVouK7 .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LrVouK7 .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LrVouK7 .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LrVouK7 .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LrVouK7 .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LrVouK7 .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LrVouK7 .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LrVouK7 .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LrVouK7 .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LrVouK7 .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LrVouK7 .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LrVouK7 .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LrVouK7 .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LrVouK7 .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LrVouK7 .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LrVouK7 .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LrVouK7 .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LrVouK7 .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LrVouK7 .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LrVouK7 .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LrVouK7 .mm-main-link {
  text-decoration: none;
}
.cid-vg2LrVouK7 .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LrVouK7 .mm-hamburger {
    display: block;
  }
  .cid-vg2LrVouK7 .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LrVouK7 .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LrVouK7 .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LrVouK7 .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LrVouK7 .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LrVouK7 .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LrVouK7 .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LrVouK7 .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LrVouK7 .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LrVouK7 .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1PxV5I50 {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1PxV5I50 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1PxV5I50 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1PxV5I50 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1PxV5I50 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1PxV5I50 [data-align="left"] {
  flex-direction: row;
}
.cid-vg1PxV5I50 .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1PxV5I50 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1PxV5I50 .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1PxV5I50 .content-inner {
  width: 100%;
}
.cid-vg1PxV5I50 h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1PxV5I50 P {
  text-align: center;
}
.cid-vg1PxV5I50 H1 {
  text-align: center;
}
.cid-vg1PxV5I50 .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1PxV5I50 .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1PxV5I50 .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1PxV5I50 .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1PxV5I50 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1PxV5I50 .image-col {
    height: 350px;
  }
  .cid-vg1PxV5I50 h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg1PxV5I50 DIV {
  text-align: center;
}
.cid-vg1PxV5I50 H2 {
  text-align: center;
}
.cid-vg1XAcJaGj {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg1XAcJaGj .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1XAcJaGj .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg1XAcJaGj .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1XAcJaGj [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1XAcJaGj [data-align="left"] {
  flex-direction: row;
}
.cid-vg1XAcJaGj .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg1XAcJaGj .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1XAcJaGj .text-col {
  padding: calc(0rem) !important;
}
.cid-vg1XAcJaGj .content-inner {
  width: 100%;
}
.cid-vg1XAcJaGj h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg1XAcJaGj .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1XAcJaGj .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1XAcJaGj .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1XAcJaGj .image-col {
    height: 350px;
  }
}
.cid-vg1XAcJaGj H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1Z8NEE4z {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg1Z8NEE4z .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1Z8NEE4z .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg1Z8NEE4z .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg1Z8NEE4z [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1Z8NEE4z [data-align="left"] {
  flex-direction: row;
}
.cid-vg1Z8NEE4z .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg1Z8NEE4z .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg1Z8NEE4z .text-col {
  padding: calc(2rem) !important;
}
.cid-vg1Z8NEE4z .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg1Z8NEE4z .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1Z8NEE4z .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1Z8NEE4z .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1Z8NEE4z .image-col {
    height: 350px;
  }
}
.cid-vg1Z8NEE4z H2 {
  text-align: justify;
}
.cid-vg1Z8NEE4z P {
  text-align: justify;
}
.cid-tLvHe39CNz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f46e10;
}
.cid-tLvHe39CNz .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLvHe39CNz .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #232323;
}
.cid-tLvHe39CNz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLvHe39CNz .inner-container {
    width: 100% !important;
  }
}
.cid-vg21HKbp7H {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg21HKbp7H .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg21HKbp7H .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg21HKbp7H .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg21HKbp7H [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg21HKbp7H [data-align="left"] {
  flex-direction: row;
}
.cid-vg21HKbp7H .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg21HKbp7H .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg21HKbp7H .text-col {
  padding: calc(0rem) !important;
}
.cid-vg21HKbp7H .content-inner {
  width: 100%;
}
.cid-vg21HKbp7H h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg21HKbp7H .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg21HKbp7H .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg21HKbp7H .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg21HKbp7H .image-col {
    height: 350px;
  }
}
.cid-vg21HKbp7H H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg220aIoD7 {
  padding-top: calc(0rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vg220aIoD7 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg220aIoD7 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg220aIoD7 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg220aIoD7 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg220aIoD7 [data-align="left"] {
  flex-direction: row;
}
.cid-vg220aIoD7 .split-column {
  min-height: 15;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg220aIoD7 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg220aIoD7 .text-col {
  padding: calc(2rem) !important;
}
.cid-vg220aIoD7 .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg220aIoD7 .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg220aIoD7 .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg220aIoD7 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg220aIoD7 .image-col {
    height: 350px;
  }
}
.cid-vg220aIoD7 H2 {
  text-align: justify;
}
.cid-vg220aIoD7 P {
  text-align: center;
}
.cid-vg1PFlOvHs {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1PFlOvHs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1PFlOvHs p {
  color: #767676;
  text-align: left;
}
.cid-vg1PFlOvHs .card-box {
  padding-top: 2rem;
}
.cid-vg1PFlOvHs .card-wrapper {
  height: 100%;
}
.cid-vg1PFlOvHs img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1PFlOvHs div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1PFlOvHs div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1PFlOvHs div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1PFlOvHs div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1PFlOvHs .center {
  margin-left: auto;
}
.cid-urVRtMFuI6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRtMFuI6 P {
  color: #767676;
}
.cid-urVRtMFuI6 H1 {
  color: #dcdcdc;
}
.cid-vg1EG33FXg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1EG33FXg .mbr-text,
.cid-vg1EG33FXg blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1EG33FXg .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1EG33FXg .text-center {
    display: none;
  }
}
.cid-vg1EG33FXg .text-center {
  color: #ef7f1a;
}
.cid-vg2Lvw1UHq .mega-menu-block {
  position: relative;
}
.cid-vg2Lvw1UHq .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2Lvw1UHq .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2Lvw1UHq .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2Lvw1UHq .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2Lvw1UHq .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2Lvw1UHq .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2Lvw1UHq .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2Lvw1UHq .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2Lvw1UHq .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2Lvw1UHq .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2Lvw1UHq .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2Lvw1UHq .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2Lvw1UHq .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2Lvw1UHq .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2Lvw1UHq .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2Lvw1UHq .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2Lvw1UHq .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2Lvw1UHq .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2Lvw1UHq .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2Lvw1UHq .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2Lvw1UHq .mm-main-link {
  text-decoration: none;
}
.cid-vg2Lvw1UHq .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2Lvw1UHq .mm-hamburger {
    display: block;
  }
  .cid-vg2Lvw1UHq .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2Lvw1UHq .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2Lvw1UHq .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2Lvw1UHq .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2Lvw1UHq .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2Lvw1UHq .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2Lvw1UHq .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2Lvw1UHq .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2Lvw1UHq .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2Lvw1UHq .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1PTNVgQJ {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1PTNVgQJ .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1PTNVgQJ .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1PTNVgQJ .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1PTNVgQJ [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1PTNVgQJ [data-align="left"] {
  flex-direction: row;
}
.cid-vg1PTNVgQJ .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1PTNVgQJ .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1PTNVgQJ .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1PTNVgQJ .content-inner {
  width: 100%;
}
.cid-vg1PTNVgQJ h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1PTNVgQJ P {
  text-align: center;
}
.cid-vg1PTNVgQJ H1 {
  text-align: center;
}
.cid-vg1PTNVgQJ .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1PTNVgQJ .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1PTNVgQJ .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1PTNVgQJ .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1PTNVgQJ .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1PTNVgQJ .image-col {
    height: 350px;
  }
  .cid-vg1PTNVgQJ h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg1PTNVgQJ DIV {
  text-align: center;
}
.cid-vg1PTNVgQJ H2 {
  text-align: center;
}
.cid-vg24eYSPjW {
  padding-top: calc(0rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vg24eYSPjW .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg24eYSPjW .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg24eYSPjW .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg24eYSPjW [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg24eYSPjW [data-align="left"] {
  flex-direction: row;
}
.cid-vg24eYSPjW .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg24eYSPjW .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg24eYSPjW .text-col {
  padding: calc(0rem) !important;
}
.cid-vg24eYSPjW .content-inner {
  width: 100%;
}
.cid-vg24eYSPjW h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg24eYSPjW .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg24eYSPjW .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg24eYSPjW .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg24eYSPjW .image-col {
    height: 350px;
  }
}
.cid-vg24eYSPjW H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg24s2luxg {
  padding-top: calc(1rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg24s2luxg .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg24s2luxg .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg24s2luxg .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg24s2luxg [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg24s2luxg [data-align="left"] {
  flex-direction: row;
}
.cid-vg24s2luxg .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg24s2luxg .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg24s2luxg .text-col {
  padding: calc(2rem) !important;
}
.cid-vg24s2luxg .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg24s2luxg .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg24s2luxg .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg24s2luxg .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg24s2luxg .image-col {
    height: 350px;
  }
}
.cid-vg24s2luxg H2 {
  text-align: justify;
}
.cid-vg24s2luxg P {
  text-align: justify;
}
.cid-vg24GJ4gdf {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg24GJ4gdf .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg24GJ4gdf .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg24GJ4gdf .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg24GJ4gdf [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg24GJ4gdf [data-align="left"] {
  flex-direction: row;
}
.cid-vg24GJ4gdf .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg24GJ4gdf .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg24GJ4gdf .text-col {
  padding: calc(0rem) !important;
}
.cid-vg24GJ4gdf .content-inner {
  width: 100%;
}
.cid-vg24GJ4gdf h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg24GJ4gdf .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg24GJ4gdf .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg24GJ4gdf .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg24GJ4gdf .image-col {
    height: 350px;
  }
}
.cid-vg24GJ4gdf H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg24TekxHu {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg24TekxHu .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg24TekxHu .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg24TekxHu .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg24TekxHu [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg24TekxHu [data-align="left"] {
  flex-direction: row;
}
.cid-vg24TekxHu .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg24TekxHu .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg24TekxHu .text-col {
  padding: calc(2rem) !important;
}
.cid-vg24TekxHu .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg24TekxHu .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg24TekxHu .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg24TekxHu .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg24TekxHu .image-col {
    height: 350px;
  }
}
.cid-vg24TekxHu H2 {
  text-align: justify;
}
.cid-vg24TekxHu P {
  text-align: justify;
}
.cid-uswY9y9AXc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-uswY9y9AXc .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uswY9y9AXc .modal-body .close {
  background: #1b1b1b;
}
.cid-uswY9y9AXc .modal-body .close span {
  font-style: normal;
}
.cid-uswY9y9AXc .carousel-inner > .active,
.cid-uswY9y9AXc .carousel-inner > .next,
.cid-uswY9y9AXc .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uswY9y9AXc .carousel-control .icon-next,
.cid-uswY9y9AXc .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uswY9y9AXc .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uswY9y9AXc .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uswY9y9AXc .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-uswY9y9AXc .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uswY9y9AXc .boxed-slider > div {
  position: relative;
}
.cid-uswY9y9AXc .container img {
  width: 100%;
}
.cid-uswY9y9AXc .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-uswY9y9AXc .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uswY9y9AXc .mbr-table-cell {
  padding: 0;
}
.cid-uswY9y9AXc .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uswY9y9AXc .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uswY9y9AXc .mbr-overlay {
  z-index: 1;
}
.cid-uswY9y9AXc .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uswY9y9AXc .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uswY9y9AXc .carousel-item .container {
    width: 100%;
  }
}
.cid-uswY9y9AXc .carousel-item-next.carousel-item-left,
.cid-uswY9y9AXc .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uswY9y9AXc .active.carousel-item-right,
.cid-uswY9y9AXc .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uswY9y9AXc .active.carousel-item-left,
.cid-uswY9y9AXc .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uswY9y9AXc .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uswY9y9AXc .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uswY9y9AXc .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uswY9y9AXc .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uswY9y9AXc .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uswY9y9AXc .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uswY9y9AXc .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uswY9y9AXc .mbr-slider .carousel-indicators li.active,
.cid-uswY9y9AXc .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uswY9y9AXc .mbr-slider .carousel-indicators li::after,
.cid-uswY9y9AXc .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uswY9y9AXc .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uswY9y9AXc .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uswY9y9AXc .mbr-slider > .container img {
  width: 100%;
}
.cid-uswY9y9AXc .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-uswY9y9AXc .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uswY9y9AXc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uswY9y9AXc .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uswY9y9AXc .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uswY9y9AXc .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uswY9y9AXc .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uswY9y9AXc .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uswY9y9AXc .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uswY9y9AXc .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uswY9y9AXc .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uswY9y9AXc .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uswY9y9AXc .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uswY9y9AXc .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uswY9y9AXc .carousel-inner {
  height: 100%;
}
.cid-uswY9y9AXc .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uswY9y9AXc .image_wrapper {
  height: 510px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uswY9y9AXc .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-uswY9y9AXc .carousel-item .container-slide {
  text-align: center;
}
.cid-uswY9y9AXc .content-slider-wrap {
  width: 100%;
}
.cid-vg266Qvvbn {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg266Qvvbn .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg266Qvvbn .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg266Qvvbn .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg266Qvvbn [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg266Qvvbn [data-align="left"] {
  flex-direction: row;
}
.cid-vg266Qvvbn .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg266Qvvbn .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg266Qvvbn .text-col {
  padding: calc(2rem) !important;
}
.cid-vg266Qvvbn .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg266Qvvbn .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg266Qvvbn .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg266Qvvbn .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg266Qvvbn .image-col {
    height: 350px;
  }
}
.cid-vg266Qvvbn H2 {
  text-align: justify;
}
.cid-vg266Qvvbn P {
  text-align: justify;
}
.cid-uswTvkM9mu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: transparent;
}
.cid-uswTvkM9mu .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 30px;
}
.cid-uswTvkM9mu .modal-body .close {
  background: #1b1b1b;
}
.cid-uswTvkM9mu .modal-body .close span {
  font-style: normal;
}
.cid-uswTvkM9mu .carousel-inner > .active,
.cid-uswTvkM9mu .carousel-inner > .next,
.cid-uswTvkM9mu .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-uswTvkM9mu .carousel-control .icon-next,
.cid-uswTvkM9mu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uswTvkM9mu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uswTvkM9mu .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uswTvkM9mu .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-uswTvkM9mu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uswTvkM9mu .boxed-slider > div {
  position: relative;
}
.cid-uswTvkM9mu .container img {
  width: 100%;
}
.cid-uswTvkM9mu .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-uswTvkM9mu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uswTvkM9mu .mbr-table-cell {
  padding: 0;
}
.cid-uswTvkM9mu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uswTvkM9mu .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uswTvkM9mu .mbr-overlay {
  z-index: 1;
}
.cid-uswTvkM9mu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uswTvkM9mu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uswTvkM9mu .carousel-item .container {
    width: 100%;
  }
}
.cid-uswTvkM9mu .carousel-item-next.carousel-item-left,
.cid-uswTvkM9mu .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uswTvkM9mu .active.carousel-item-right,
.cid-uswTvkM9mu .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-uswTvkM9mu .active.carousel-item-left,
.cid-uswTvkM9mu .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-uswTvkM9mu .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uswTvkM9mu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uswTvkM9mu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uswTvkM9mu .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uswTvkM9mu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uswTvkM9mu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uswTvkM9mu .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uswTvkM9mu .mbr-slider .carousel-indicators li.active,
.cid-uswTvkM9mu .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uswTvkM9mu .mbr-slider .carousel-indicators li::after,
.cid-uswTvkM9mu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uswTvkM9mu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uswTvkM9mu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uswTvkM9mu .mbr-slider > .container img {
  width: 100%;
}
.cid-uswTvkM9mu .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-uswTvkM9mu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uswTvkM9mu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uswTvkM9mu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uswTvkM9mu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uswTvkM9mu .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uswTvkM9mu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uswTvkM9mu .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uswTvkM9mu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uswTvkM9mu .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uswTvkM9mu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uswTvkM9mu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uswTvkM9mu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uswTvkM9mu .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-uswTvkM9mu .carousel-inner {
  height: 100%;
}
.cid-uswTvkM9mu .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-uswTvkM9mu .image_wrapper {
  height: 610px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-uswTvkM9mu .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-uswTvkM9mu .carousel-item .container-slide {
  text-align: center;
}
.cid-uswTvkM9mu .content-slider-wrap {
  width: 96%;
}
.cid-vg260nD93d {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg260nD93d .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg260nD93d .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg260nD93d .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg260nD93d [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg260nD93d [data-align="left"] {
  flex-direction: row;
}
.cid-vg260nD93d .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg260nD93d .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg260nD93d .text-col {
  padding: calc(2rem) !important;
}
.cid-vg260nD93d .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg260nD93d .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg260nD93d .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg260nD93d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg260nD93d .image-col {
    height: 350px;
  }
}
.cid-vg260nD93d H2 {
  text-align: justify;
}
.cid-vg260nD93d P {
  text-align: justify;
}
.cid-vg25lERzlo {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg25lERzlo .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg25lERzlo .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg25lERzlo .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg25lERzlo [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg25lERzlo [data-align="left"] {
  flex-direction: row;
}
.cid-vg25lERzlo .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg25lERzlo .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg25lERzlo .text-col {
  padding: calc(0rem) !important;
}
.cid-vg25lERzlo .content-inner {
  width: 100%;
}
.cid-vg25lERzlo h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg25lERzlo .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg25lERzlo .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg25lERzlo .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg25lERzlo .image-col {
    height: 350px;
  }
}
.cid-vg25lERzlo H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg25CDfpk1 {
  padding-top: calc(0rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vg25CDfpk1 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg25CDfpk1 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg25CDfpk1 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg25CDfpk1 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg25CDfpk1 [data-align="left"] {
  flex-direction: row;
}
.cid-vg25CDfpk1 .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg25CDfpk1 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg25CDfpk1 .text-col {
  padding: calc(2rem) !important;
}
.cid-vg25CDfpk1 .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg25CDfpk1 .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg25CDfpk1 .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg25CDfpk1 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg25CDfpk1 .image-col {
    height: 350px;
  }
}
.cid-vg25CDfpk1 H2 {
  text-align: justify;
}
.cid-vg25CDfpk1 P {
  text-align: justify;
}
.cid-vg1Q0KEWMI {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1Q0KEWMI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1Q0KEWMI p {
  color: #767676;
  text-align: left;
}
.cid-vg1Q0KEWMI .card-box {
  padding-top: 2rem;
}
.cid-vg1Q0KEWMI .card-wrapper {
  height: 100%;
}
.cid-vg1Q0KEWMI img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1Q0KEWMI div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1Q0KEWMI div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1Q0KEWMI div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1Q0KEWMI div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1Q0KEWMI .center {
  margin-left: auto;
}
.cid-urVRxCZ05e {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVRxCZ05e P {
  color: #767676;
}
.cid-urVRxCZ05e H1 {
  color: #dcdcdc;
}
.cid-vfXg7GDqw7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vfXg7GDqw7 .mbr-text,
.cid-vfXg7GDqw7 blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vfXg7GDqw7 .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vfXg7GDqw7 .text-center {
    display: none;
  }
}
.cid-vfXg7GDqw7 .text-center {
  color: #ef7f1a;
}
.cid-vg2Kdb6hFO .mega-menu-block {
  position: relative;
}
.cid-vg2Kdb6hFO .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2Kdb6hFO .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2Kdb6hFO .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2Kdb6hFO .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2Kdb6hFO .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2Kdb6hFO .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2Kdb6hFO .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2Kdb6hFO .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2Kdb6hFO .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2Kdb6hFO .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2Kdb6hFO .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2Kdb6hFO .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2Kdb6hFO .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2Kdb6hFO .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2Kdb6hFO .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2Kdb6hFO .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2Kdb6hFO .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2Kdb6hFO .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2Kdb6hFO .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2Kdb6hFO .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2Kdb6hFO .mm-main-link {
  text-decoration: none;
}
.cid-vg2Kdb6hFO .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2Kdb6hFO .mm-hamburger {
    display: block;
  }
  .cid-vg2Kdb6hFO .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2Kdb6hFO .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2Kdb6hFO .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2Kdb6hFO .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2Kdb6hFO .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2Kdb6hFO .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2Kdb6hFO .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2Kdb6hFO .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2Kdb6hFO .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2Kdb6hFO .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vfKELrePxZ {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vfKELrePxZ .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfKELrePxZ .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vfKELrePxZ .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfKELrePxZ [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfKELrePxZ [data-align="left"] {
  flex-direction: row;
}
.cid-vfKELrePxZ .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfKELrePxZ .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfKELrePxZ .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfKELrePxZ .content-inner {
  width: 100%;
}
.cid-vfKELrePxZ h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vfKELrePxZ P {
  text-align: center;
}
.cid-vfKELrePxZ H1 {
  text-align: center;
}
.cid-vfKELrePxZ .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vfKELrePxZ .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfKELrePxZ .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfKELrePxZ .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfKELrePxZ .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfKELrePxZ .image-col {
    height: 350px;
  }
  .cid-vfKELrePxZ h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vfDk8uKfTP {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vfDk8uKfTP .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDk8uKfTP .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDk8uKfTP .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfDk8uKfTP [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDk8uKfTP [data-align="left"] {
  flex-direction: row;
}
.cid-vfDk8uKfTP .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDk8uKfTP .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDk8uKfTP .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfDk8uKfTP .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfDk8uKfTP .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfDk8uKfTP .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfDk8uKfTP .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDk8uKfTP .image-col {
    height: 350px;
  }
}
.cid-vfDk8uKfTP H2 {
  text-align: center;
}
.cid-vfDk8uKfTP P {
  text-align: justify;
}
.cid-vg0to9AazS {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg0to9AazS .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg0to9AazS .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg0to9AazS .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg0to9AazS [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg0to9AazS [data-align="left"] {
  flex-direction: row;
}
.cid-vg0to9AazS .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg0to9AazS .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg0to9AazS .text-col {
  padding: calc(0rem) !important;
}
.cid-vg0to9AazS .content-inner {
  width: 100%;
}
.cid-vg0to9AazS h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg0to9AazS .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg0to9AazS .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg0to9AazS .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg0to9AazS .image-col {
    height: 350px;
  }
}
.cid-vg0to9AazS H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vfDkNn0v9T {
  padding-top: calc(3rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfDkNn0v9T .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDkNn0v9T .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDkNn0v9T .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vfDkNn0v9T [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDkNn0v9T [data-align="left"] {
  flex-direction: row;
}
.cid-vfDkNn0v9T .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDkNn0v9T .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDkNn0v9T .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfDkNn0v9T .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vfDkNn0v9T .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vfDkNn0v9T .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vfDkNn0v9T .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDkNn0v9T .image-col {
    height: 350px;
  }
}
.cid-vfDkNn0v9T H2 {
  text-align: center;
}
.cid-vfDkNn0v9T P {
  text-align: justify;
}
.cid-t2l16RLBM5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f46e10;
}
.cid-t2l16RLBM5 .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t2l16RLBM5 .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #232323;
}
.cid-t2l16RLBM5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-t2l16RLBM5 .inner-container {
    width: 100% !important;
  }
}
.cid-vfDzeqbaak {
  padding-top: calc(2rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vfDzeqbaak .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDzeqbaak .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDzeqbaak .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDzeqbaak [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDzeqbaak [data-align="left"] {
  flex-direction: row;
}
.cid-vfDzeqbaak .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 0px 0px 40px;
}
.cid-vfDzeqbaak .image-col img {
  background-color: #131212;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDzeqbaak .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfDzeqbaak .content-inner {
  width: 100%;
}
.cid-vfDzeqbaak h1 {
  font-size: 2vw;
}
.cid-vfDzeqbaak H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vfDzeqbaak P {
  text-align: justify;
}
@media (max-width: 991px) {
  .cid-vfDzeqbaak .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDzeqbaak .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDzeqbaak .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDzeqbaak .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDzeqbaak .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDzeqbaak .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDzeqbaak .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDzeqbaak .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDzeqbaak .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDzeqbaak .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDRmyS6W0 {
  padding-top: calc(0rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfDRmyS6W0 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDRmyS6W0 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDRmyS6W0 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDRmyS6W0 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDRmyS6W0 [data-align="left"] {
  flex-direction: row;
}
.cid-vfDRmyS6W0 .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDRmyS6W0 .image-col img {
  background-color: #131212;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cid-vfDRmyS6W0 .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDRmyS6W0 .content-inner {
  width: 100%;
}
.cid-vfDRmyS6W0 th {
  color: #ef7f1a;
}
.cid-vfDRmyS6W0 td {
  color: white;
}
.cid-vfDRmyS6W0 h1 {
  font-size: 2vw;
}
.cid-vfDRmyS6W0 H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDRmyS6W0 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDRmyS6W0 .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDRmyS6W0 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDRmyS6W0 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDRmyS6W0 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDRmyS6W0 .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDRmyS6W0 .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDRmyS6W0 .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDRmyS6W0 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDRmyS6W0 .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDNPU3L7d {
  padding-top: calc(2rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vfDNPU3L7d .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDNPU3L7d .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDNPU3L7d .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDNPU3L7d [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDNPU3L7d [data-align="left"] {
  flex-direction: row;
}
.cid-vfDNPU3L7d .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 0px 0px 40px;
}
.cid-vfDNPU3L7d .image-col img {
  background-color: #131212;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDNPU3L7d .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vfDNPU3L7d .content-inner {
  width: 100%;
}
.cid-vfDNPU3L7d h1 {
  font-size: 2vw;
}
.cid-vfDNPU3L7d H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vfDNPU3L7d P {
  text-align: justify;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vfDNPU3L7d .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDNPU3L7d .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDNPU3L7d .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDNPU3L7d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDNPU3L7d .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDNPU3L7d .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDNPU3L7d .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDNPU3L7d .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDNPU3L7d .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDNPU3L7d .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfDLq9biTG {
  padding-top: calc(0rem);
  padding-bottom: calc(2rem);
  background-color: transparent;
}
.cid-vfDLq9biTG .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfDLq9biTG .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfDLq9biTG .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #131212;
  border-radius: 38px 38px 38px 38px;
}
.cid-vfDLq9biTG [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfDLq9biTG [data-align="left"] {
  flex-direction: row;
}
.cid-vfDLq9biTG .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 40px 40px 0px;
}
.cid-vfDLq9biTG .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cid-vfDLq9biTG .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfDLq9biTG .content-inner {
  width: 100%;
}
.cid-vfDLq9biTG th {
  color: #ef7f1a;
}
.cid-vfDLq9biTG td {
  color: white;
}
.cid-vfDLq9biTG h1 {
  font-size: 2vw;
}
.cid-vfDLq9biTG H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfDLq9biTG .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDLq9biTG .image-col img {
    background-color: transparent;
    width: 50%;
    height: 50%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDLq9biTG .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDLq9biTG .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDLq9biTG .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfDLq9biTG .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfDLq9biTG .image-col img {
    background-color: transparent;
    width: 80%;
    height: 80%;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 38px 38px 38px 38px;
  }
  .cid-vfDLq9biTG .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    border-radius: 40px 40px 40px 40px;
    width: 100% !important;
  }
  .cid-vfDLq9biTG .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfDLq9biTG .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vg0thsk26b {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg0thsk26b h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg0thsk26b p {
  color: #767676;
  text-align: left;
}
.cid-vg0thsk26b .card-box {
  padding-top: 2rem;
}
.cid-vg0thsk26b .card-wrapper {
  height: 100%;
}
.cid-vg0thsk26b img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg0thsk26b div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg0thsk26b div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg0thsk26b div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg0thsk26b div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg0thsk26b .center {
  margin-left: auto;
}
.cid-urVR0UWOmY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-urVR0UWOmY P {
  color: #767676;
}
.cid-urVR0UWOmY H1 {
  color: #dcdcdc;
}
.cid-vg1ECrsaFz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1ECrsaFz .mbr-text,
.cid-vg1ECrsaFz blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1ECrsaFz .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1ECrsaFz .text-center {
    display: none;
  }
}
.cid-vg1ECrsaFz .text-center {
  color: #ef7f1a;
}
.cid-vg2Lzd1zWT .mega-menu-block {
  position: relative;
}
.cid-vg2Lzd1zWT .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2Lzd1zWT .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2Lzd1zWT .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2Lzd1zWT .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2Lzd1zWT .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2Lzd1zWT .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2Lzd1zWT .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2Lzd1zWT .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2Lzd1zWT .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2Lzd1zWT .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2Lzd1zWT .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2Lzd1zWT .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2Lzd1zWT .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2Lzd1zWT .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2Lzd1zWT .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2Lzd1zWT .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2Lzd1zWT .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2Lzd1zWT .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2Lzd1zWT .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2Lzd1zWT .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2Lzd1zWT .mm-main-link {
  text-decoration: none;
}
.cid-vg2Lzd1zWT .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2Lzd1zWT .mm-hamburger {
    display: block;
  }
  .cid-vg2Lzd1zWT .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2Lzd1zWT .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2Lzd1zWT .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2Lzd1zWT .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2Lzd1zWT .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2Lzd1zWT .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2Lzd1zWT .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2Lzd1zWT .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2Lzd1zWT .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2Lzd1zWT .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1Qswuvsq {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1Qswuvsq .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1Qswuvsq .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1Qswuvsq .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1Qswuvsq [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1Qswuvsq [data-align="left"] {
  flex-direction: row;
}
.cid-vg1Qswuvsq .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1Qswuvsq .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1Qswuvsq .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1Qswuvsq .content-inner {
  width: 100%;
}
.cid-vg1Qswuvsq h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1Qswuvsq P {
  text-align: center;
}
.cid-vg1Qswuvsq H1 {
  text-align: center;
}
.cid-vg1Qswuvsq .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1Qswuvsq .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1Qswuvsq .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1Qswuvsq .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1Qswuvsq .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1Qswuvsq .image-col {
    height: 350px;
  }
  .cid-vg1Qswuvsq h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg1Qswuvsq DIV {
  text-align: center;
}
.cid-vg1Qswuvsq H2 {
  text-align: center;
}
.cid-vg29WzpTfy {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg29WzpTfy .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg29WzpTfy .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg29WzpTfy .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg29WzpTfy [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg29WzpTfy [data-align="left"] {
  flex-direction: row;
}
.cid-vg29WzpTfy .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg29WzpTfy .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg29WzpTfy .text-col {
  padding: calc(0rem) !important;
}
.cid-vg29WzpTfy .content-inner {
  width: 100%;
}
.cid-vg29WzpTfy h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg29WzpTfy .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg29WzpTfy .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg29WzpTfy .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg29WzpTfy .image-col {
    height: 350px;
  }
}
.cid-vg29WzpTfy H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2a65RwgH {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg2a65RwgH .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2a65RwgH .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2a65RwgH .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2a65RwgH [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2a65RwgH [data-align="left"] {
  flex-direction: row;
}
.cid-vg2a65RwgH .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2a65RwgH .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2a65RwgH .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2a65RwgH .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2a65RwgH .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2a65RwgH .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2a65RwgH .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2a65RwgH .image-col {
    height: 350px;
  }
}
.cid-vg2a65RwgH H2 {
  text-align: justify;
}
.cid-vg2a65RwgH P {
  text-align: justify;
}
.cid-vg2adLlczU {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg2adLlczU .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2adLlczU .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2adLlczU .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2adLlczU [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2adLlczU [data-align="left"] {
  flex-direction: row;
}
.cid-vg2adLlczU .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg2adLlczU .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2adLlczU .text-col {
  padding: calc(0rem) !important;
}
.cid-vg2adLlczU .content-inner {
  width: 100%;
}
.cid-vg2adLlczU h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg2adLlczU .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2adLlczU .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2adLlczU .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2adLlczU .image-col {
    height: 350px;
  }
}
.cid-vg2adLlczU H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2aqNGI0Q {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg2aqNGI0Q .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2aqNGI0Q .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2aqNGI0Q .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2aqNGI0Q [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2aqNGI0Q [data-align="left"] {
  flex-direction: row;
}
.cid-vg2aqNGI0Q .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2aqNGI0Q .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2aqNGI0Q .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2aqNGI0Q .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2aqNGI0Q .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2aqNGI0Q .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2aqNGI0Q .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2aqNGI0Q .image-col {
    height: 350px;
  }
}
.cid-vg2aqNGI0Q H2 {
  text-align: justify;
}
.cid-vg2aqNGI0Q P {
  text-align: justify;
}
.cid-uHzNh84o6p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f46e10;
}
.cid-uHzNh84o6p .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uHzNh84o6p .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #232323;
}
.cid-uHzNh84o6p .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uHzNh84o6p .inner-container {
    width: 100% !important;
  }
}
.cid-vg2aMDw9oB {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg2aMDw9oB .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2aMDw9oB .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2aMDw9oB .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2aMDw9oB [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2aMDw9oB [data-align="left"] {
  flex-direction: row;
}
.cid-vg2aMDw9oB .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg2aMDw9oB .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2aMDw9oB .text-col {
  padding: calc(0rem) !important;
}
.cid-vg2aMDw9oB .content-inner {
  width: 100%;
}
.cid-vg2aMDw9oB h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg2aMDw9oB .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2aMDw9oB .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2aMDw9oB .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2aMDw9oB .image-col {
    height: 350px;
  }
}
.cid-vg2aMDw9oB H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2aZXftmH {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg2aZXftmH .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2aZXftmH .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2aZXftmH .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2aZXftmH [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2aZXftmH [data-align="left"] {
  flex-direction: row;
}
.cid-vg2aZXftmH .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2aZXftmH .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2aZXftmH .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2aZXftmH .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2aZXftmH .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2aZXftmH .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2aZXftmH .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2aZXftmH .image-col {
    height: 350px;
  }
}
.cid-vg2aZXftmH H2 {
  text-align: justify;
}
.cid-vg2aZXftmH P {
  text-align: justify;
}
.cid-vg2b7xhrBo {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg2b7xhrBo .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2b7xhrBo .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2b7xhrBo .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2b7xhrBo [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2b7xhrBo [data-align="left"] {
  flex-direction: row;
}
.cid-vg2b7xhrBo .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg2b7xhrBo .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2b7xhrBo .text-col {
  padding: calc(0rem) !important;
}
.cid-vg2b7xhrBo .content-inner {
  width: 100%;
}
.cid-vg2b7xhrBo h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg2b7xhrBo .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2b7xhrBo .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2b7xhrBo .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2b7xhrBo .image-col {
    height: 350px;
  }
}
.cid-vg2b7xhrBo H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2bjenRUq {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg2bjenRUq .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2bjenRUq .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2bjenRUq .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2bjenRUq [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2bjenRUq [data-align="left"] {
  flex-direction: row;
}
.cid-vg2bjenRUq .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2bjenRUq .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2bjenRUq .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2bjenRUq .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2bjenRUq .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2bjenRUq .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2bjenRUq .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2bjenRUq .image-col {
    height: 350px;
  }
}
.cid-vg2bjenRUq H2 {
  text-align: justify;
}
.cid-vg2bjenRUq P {
  text-align: justify;
}
.cid-vg2bqPVW0t {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg2bqPVW0t .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2bqPVW0t .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2bqPVW0t .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2bqPVW0t [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2bqPVW0t [data-align="left"] {
  flex-direction: row;
}
.cid-vg2bqPVW0t .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg2bqPVW0t .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2bqPVW0t .text-col {
  padding: calc(0rem) !important;
}
.cid-vg2bqPVW0t .content-inner {
  width: 100%;
}
.cid-vg2bqPVW0t h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg2bqPVW0t .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2bqPVW0t .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2bqPVW0t .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2bqPVW0t .image-col {
    height: 350px;
  }
}
.cid-vg2bqPVW0t H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2byVCC9v {
  padding-top: calc(0rem);
  padding-bottom: calc(0rem);
  background-color: transparent;
}
.cid-vg2byVCC9v .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2byVCC9v .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2byVCC9v .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2byVCC9v [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2byVCC9v [data-align="left"] {
  flex-direction: row;
}
.cid-vg2byVCC9v .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2byVCC9v .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2byVCC9v .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2byVCC9v .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2byVCC9v .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2byVCC9v .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2byVCC9v .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2byVCC9v .image-col {
    height: 350px;
  }
}
.cid-vg2byVCC9v H2 {
  text-align: justify;
}
.cid-vg2byVCC9v P {
  text-align: justify;
}
.cid-vg1QygO1bG {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1QygO1bG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1QygO1bG p {
  color: #767676;
  text-align: left;
}
.cid-vg1QygO1bG .card-box {
  padding-top: 2rem;
}
.cid-vg1QygO1bG .card-wrapper {
  height: 100%;
}
.cid-vg1QygO1bG img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1QygO1bG div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1QygO1bG div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1QygO1bG div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1QygO1bG div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1QygO1bG .center {
  margin-left: auto;
}
.cid-uHzNh9Q1Gn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-uHzNh9Q1Gn P {
  color: #767676;
}
.cid-uHzNh9Q1Gn H1 {
  color: #dcdcdc;
}
.cid-vg1yqz49Pw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1yqz49Pw .mbr-text,
.cid-vg1yqz49Pw blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1yqz49Pw .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1yqz49Pw .text-center {
    display: none;
  }
}
.cid-vg1yqz49Pw .text-center {
  color: #ef7f1a;
}
.cid-vg2L6uLqhE .mega-menu-block {
  position: relative;
}
.cid-vg2L6uLqhE .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2L6uLqhE .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2L6uLqhE .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2L6uLqhE .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2L6uLqhE .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2L6uLqhE .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2L6uLqhE .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2L6uLqhE .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2L6uLqhE .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2L6uLqhE .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2L6uLqhE .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2L6uLqhE .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2L6uLqhE .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2L6uLqhE .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2L6uLqhE .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2L6uLqhE .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2L6uLqhE .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2L6uLqhE .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2L6uLqhE .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2L6uLqhE .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2L6uLqhE .mm-main-link {
  text-decoration: none;
}
.cid-vg2L6uLqhE .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2L6uLqhE .mm-hamburger {
    display: block;
  }
  .cid-vg2L6uLqhE .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2L6uLqhE .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2L6uLqhE .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2L6uLqhE .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2L6uLqhE .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2L6uLqhE .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2L6uLqhE .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2L6uLqhE .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2L6uLqhE .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2L6uLqhE .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1yjWto5a {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1yjWto5a .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1yjWto5a .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1yjWto5a .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1yjWto5a [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1yjWto5a [data-align="left"] {
  flex-direction: row;
}
.cid-vg1yjWto5a .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1yjWto5a .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1yjWto5a .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1yjWto5a .content-inner {
  width: 100%;
}
.cid-vg1yjWto5a h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1yjWto5a P {
  text-align: center;
}
.cid-vg1yjWto5a H1 {
  text-align: center;
}
.cid-vg1yjWto5a .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1yjWto5a .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1yjWto5a .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1yjWto5a .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1yjWto5a .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1yjWto5a .image-col {
    height: 350px;
  }
  .cid-vg1yjWto5a h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vfCXUpoQmU {
  padding-top: calc(1rem);
  padding-bottom: calc(4rem);
  background-color: transparent;
}
.cid-vfCXUpoQmU .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vfCXUpoQmU .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vfCXUpoQmU .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vfCXUpoQmU [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vfCXUpoQmU [data-align="left"] {
  flex-direction: row;
}
.cid-vfCXUpoQmU .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 0px 38px 38px 0px;
}
.cid-vfCXUpoQmU .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 38px 0px 0px 38px;
}
.cid-vfCXUpoQmU .text-col {
  padding: calc(2.5rem) !important;
}
.cid-vfCXUpoQmU .content-inner {
  width: 100%;
}
.cid-vfCXUpoQmU h1 {
  font-size: 2vw;
}
.cid-vfCXUpoQmU H1 {
  color: #ef7f1a;
  font-size: 40px;
}
@media (max-width: 991px) {
  .cid-vfCXUpoQmU .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfCXUpoQmU .image-col img {
    background-color: transparent;
    padding-top: 40px;
    width: 35%;
    height: 35%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfCXUpoQmU .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfCXUpoQmU .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfCXUpoQmU .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
@media (max-width: 600px) {
  .cid-vfCXUpoQmU .split-column {
    text-align: center;
    width: 100% !important;
    min-height: auto;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vfCXUpoQmU .image-col img {
    background-color: transparent;
    width: 60%;
    height: 60%;
    object-fit: cover;
    display: block;
    margin: auto;
  }
  .cid-vfCXUpoQmU .split-wrapper-outer {
    margin: 0 auto;
    padding: 0 !important;
    border-style: solid;
    border-color: transparent;
    width: 100% !important;
  }
  .cid-vfCXUpoQmU .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vfCXUpoQmU .image-col {
    border-radius: 0px 38px 38px 0px;
  }
}
.cid-vfCXUpoQmU P {
  color: #ffffff;
}
.cid-vg1zbRWJkA {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1zbRWJkA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1zbRWJkA p {
  color: #767676;
  text-align: left;
}
.cid-vg1zbRWJkA .card-box {
  padding-top: 2rem;
}
.cid-vg1zbRWJkA .card-wrapper {
  height: 100%;
}
.cid-vg1zbRWJkA img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1zbRWJkA div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1zbRWJkA div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1zbRWJkA div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1zbRWJkA div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1zbRWJkA .center {
  margin-left: auto;
}
.cid-uYbpOznY7z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ef7f1a;
}
.cid-uYbpOznY7z P {
  color: #767676;
}
.cid-uYbpOznY7z H1 {
  color: #ffffff;
}
.cid-vg1Ep9PFOu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1Ep9PFOu .mbr-text,
.cid-vg1Ep9PFOu blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1Ep9PFOu .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1Ep9PFOu .text-center {
    display: none;
  }
}
.cid-vg1Ep9PFOu .text-center {
  color: #ef7f1a;
}
.cid-vg2LPEw2xf .mega-menu-block {
  position: relative;
}
.cid-vg2LPEw2xf .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LPEw2xf .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LPEw2xf .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LPEw2xf .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LPEw2xf .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LPEw2xf .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LPEw2xf .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LPEw2xf .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LPEw2xf .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LPEw2xf .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LPEw2xf .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LPEw2xf .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LPEw2xf .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LPEw2xf .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LPEw2xf .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LPEw2xf .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LPEw2xf .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LPEw2xf .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LPEw2xf .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LPEw2xf .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LPEw2xf .mm-main-link {
  text-decoration: none;
}
.cid-vg2LPEw2xf .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LPEw2xf .mm-hamburger {
    display: block;
  }
  .cid-vg2LPEw2xf .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LPEw2xf .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LPEw2xf .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LPEw2xf .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LPEw2xf .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LPEw2xf .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LPEw2xf .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LPEw2xf .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LPEw2xf .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LPEw2xf .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-v6wjNajfsi {
  background: #efefef;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-v6wjNajfsi .image-block {
  margin: auto;
}
.cid-v6wjNajfsi figcaption {
  position: relative;
}
.cid-v6wjNajfsi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v6wjNajfsi .image-block {
    width: 100% !important;
  }
}
#custom-html-1p7 {
  /* Type valid CSS here */
}
#custom-html-1p7 div {
  padding: 1px 0;
  color: #777;
  text-align: center;
}
#custom-html-1p7 p {
  font-size: 3px;
  color: #777;
}
#custom-html-1p6 {
  /* Type valid CSS here */
}
#custom-html-1p6 div {
  padding: 2px 0;
  color: #777;
  text-align: center;
}
#custom-html-1p6 p {
  font-size: 60px;
  color: #777;
}
#custom-html-1lk {
  /* Type valid CSS here */
}
.cid-v6zGFk24Bn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-v6zGFk24Bn .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6zGFk24Bn .section-text {
  padding: 2rem 0;
  text-align: justify;
  color: #232323;
}
.cid-v6zGFk24Bn .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6zGFk24Bn .inner-container {
    width: 100% !important;
  }
}
@media screen and (min-width: 901px) {
  .cid-v6zGFk24Bn div.example {
    font-size: 19,2px;
  }
}
@media screen and (max-width: 900px) {
  .cid-v6zGFk24Bn div.example {
    font-size: 12px;
  }
}
.cid-v6zGFk24Bn a {
  color: black;
}
.cid-v6zGFk24Bn p {
  color: black;
  text-align: center;
}
.cid-v6zGFk24Bn .link {
  text-align: center;
}
.cid-v6zGFk24Bn .del {
  position: relative;
  top: 0;
  left: 0;
  width: 600px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v6zGFk24Bn .del div {
  font-size: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.5), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  letter-spacing: 1px;
  color: #ff0000;
  z-index: 1;
  transition: .6s;
}
.cid-v6zGFk24Bn .del:hover div {
  letter-spacing: 4px;
  color: #fff;
  background: #ff7f0c;
}
.cid-v6zGFk24Bn .center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-v5zh2y09PG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v5zh2y09PG P {
  color: #767676;
}
.cid-v5zh2y09PG H1 {
  color: #ffffff;
}
.cid-v5zh2yqlI1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  border-top: 4px solid white;
}
.cid-v5zh2yqlI1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-v5zh2yqlI1 p {
  color: #767676;
  text-align: left;
}
.cid-v5zh2yqlI1 .card-box {
  padding-top: 2rem;
}
.cid-v5zh2yqlI1 .card-wrapper {
  height: 100%;
}
.cid-v5zh2yqlI1 img {
  border-radius: 1px;
  box-shadow: 10px 10px 30px 2px grey;
}
@media screen and (min-width: 901px) {
  .cid-v5zh2yqlI1 div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-v5zh2yqlI1 div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-v5zh2yqlI1 div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-v5zh2yqlI1 div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-v5zh2yqlI1 .center {
  margin-left: auto;
}
.cid-v5zh2yFnBo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v5zh2yFnBo P {
  color: #767676;
}
.cid-v5zh2yFnBo H1 {
  color: #ffffff;
}
#custom-html-1kw {
  /* Type valid CSS here */
}
#custom-html-1kw div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1kw p {
  font-size: 60px;
  color: #777;
}
.cid-vg1Esuuyro {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1Esuuyro .mbr-text,
.cid-vg1Esuuyro blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1Esuuyro .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1Esuuyro .text-center {
    display: none;
  }
}
.cid-vg1Esuuyro .text-center {
  color: #ef7f1a;
}
.cid-vg2LKxxwvv .mega-menu-block {
  position: relative;
}
.cid-vg2LKxxwvv .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LKxxwvv .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LKxxwvv .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LKxxwvv .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LKxxwvv .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LKxxwvv .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LKxxwvv .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LKxxwvv .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LKxxwvv .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LKxxwvv .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LKxxwvv .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LKxxwvv .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LKxxwvv .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LKxxwvv .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LKxxwvv .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LKxxwvv .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LKxxwvv .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LKxxwvv .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LKxxwvv .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LKxxwvv .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LKxxwvv .mm-main-link {
  text-decoration: none;
}
.cid-vg2LKxxwvv .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LKxxwvv .mm-hamburger {
    display: block;
  }
  .cid-vg2LKxxwvv .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LKxxwvv .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LKxxwvv .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LKxxwvv .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LKxxwvv .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LKxxwvv .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LKxxwvv .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LKxxwvv .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LKxxwvv .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LKxxwvv .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
#custom-html-1ms {
  /* Type valid CSS here */
  /* Firefox */
  /* Chrome, Edge, Safari */
}
#custom-html-1ms div {
  padding: 0px 0;
  color: #777;
  text-align: center;
  width: 100%;
  background-color: white;
}
#custom-html-1ms p {
  font-size: 60px;
  color: #777;
}
#custom-html-1ms .ausrichtung {
  text-align: right;
}
#custom-html-1ms a {
  color: black;
}
#custom-html-1ms .scroll-top-link {
  float: right;
  color: black;
  /* Textfarbe */
}
#custom-html-1ms th {
  background-color: #f9934c;
  color: black;
  font-weight: 500;
  padding-left: 50px;
}
#custom-html-1ms tr {
  color: black;
  font-size: 17px;
}
#custom-html-1ms div.box {
  height: 70vh;
  max-height: 90vh;
  min-height: 600px;
  overflow-y: scroll;
  resize: vertical;
  background-color: white;
}
#custom-html-1ms table.tablehead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #ffffff;
  background-color: #f9934c;
}
#custom-html-1ms img {
  width: 300px;
  height: auto;
}
#custom-html-1ms input {
  background-color: white;
}
#custom-html-1ms * {
  scrollbar-color: #f9934c #cccccc;
}
#custom-html-1ms *::-webkit-scrollbar {
  width: 12px !important;
}
#custom-html-1ms *::-webkit-scrollbar-track {
  background: #bde5f9 !important;
}
#custom-html-1ms *::-webkit-scrollbar-thumb {
  background-color: #0d5072 !important;
  border-radius: 20px !important;
  border: 2px solid white;
}
#custom-html-1ms .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 450px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 10px;
  display: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  /* Zentrierung */
}
#custom-html-1ms .popup img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}
#custom-html-1ms .popup p {
  font-size: 0.01rem;
  line-height: 0.2;
  text-align: center;
  word-wrap: break-word;
  color: white;
}
.cid-v6iCeAeGWo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v6iCeAeGWo P {
  color: #767676;
}
.cid-v6iCeAeGWo H1 {
  color: #ffffff;
}
.cid-v6iCeAsA4X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v6iCeAsA4X .mbr-section-subtitle {
  color: #767676;
}
.cid-v6iCeAsA4X h2 {
  color: #767676;
  font-family: "Arial Rounded MT Bold", Arial Rounded MT, Arial, Helvetica, sans-serif;
}
.cid-v6zyzAbbWc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-v6zyzAbbWc .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6zyzAbbWc .section-text {
  padding: 2rem 0;
  text-align: justify;
  color: #232323;
}
.cid-v6zyzAbbWc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6zyzAbbWc .inner-container {
    width: 100% !important;
  }
}
@media screen and (min-width: 901px) {
  .cid-v6zyzAbbWc div.example {
    font-size: 18,2px;
  }
}
@media screen and (max-width: 900px) {
  .cid-v6zyzAbbWc div.example {
    font-size: 12px;
  }
}
.cid-v6zyzAbbWc p {
  color: black;
  font-size: 18px;
}
.cid-v6zyzAbbWc .link {
  text-align: center;
}
.cid-v6zyzAbbWc .del {
  position: relative;
  top: 0;
  left: 0;
  width: 160px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v6zyzAbbWc .del div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.5), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  letter-spacing: 1px;
  color: #ff0000;
  z-index: 1;
  transition: .6s;
}
.cid-v6zyzAbbWc .del:hover div {
  letter-spacing: 4px;
  color: #fff;
  background: #ff0000;
}
.cid-v6zyzAbbWc .center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-v6iCeAFM02 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-v6iCeAFM02 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-v6iCeAFM02 .section-text {
  padding: 2rem 0;
  text-align: justify;
  color: #232323;
}
.cid-v6iCeAFM02 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-v6iCeAFM02 .inner-container {
    width: 100% !important;
  }
}
@media screen and (min-width: 901px) {
  .cid-v6iCeAFM02 div.example {
    font-size: 19,2px;
  }
}
@media screen and (max-width: 900px) {
  .cid-v6iCeAFM02 div.example {
    font-size: 12px;
  }
}
.cid-v6iCeAFM02 a {
  color: black;
  font-size: 1.4vw;
  font-family: "Arial Rounded MT Bold", Arial Rounded MT, Arial, Helvetica, sans-serif;
}
.cid-v6iCeAFM02 .link {
  text-align: center;
}
.cid-v6iCeAFM02 .del {
  position: relative;
  top: 0;
  left: 0;
  width: 450px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v6iCeAFM02 .del div {
  font-size: 30px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.5), -4px -4px 6px 0 rgba(116, 125, 136, 0.5), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  letter-spacing: 1px;
  color: #ff0000;
  z-index: 1;
  transition: .6s;
}
.cid-v6iCeAFM02 .del:hover div {
  letter-spacing: 4px;
  color: #fff;
  background: #ff7f0c;
}
.cid-v6iCeAFM02 .center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-v6wq5Du0V8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v6wq5Du0V8 P {
  color: #767676;
}
.cid-v6wq5Du0V8 H1 {
  color: #ffffff;
}
#custom-html-1of {
  /* Show content when checked */
  /* Plus/minus icon */
  /* Responsive enhancements */
}
#custom-html-1of div {
  padding-top: 15px;
  padding-bottom: 5px;
  color: #777;
  text-align: center;
  background-color: #efefef;
}
#custom-html-1of p {
  font-size: 20px;
  color: #777;
}
#custom-html-1of a {
  font-size: 22px;
  color: black;
}
#custom-html-1of .bild-rechts {
  float: right;
  margin-left: 10px;
  /* Optional: Abstand zum Text */
}
#custom-html-1of .accordion {
  max-width: 900px;
  margin: 1em auto;
  font-family: Arial, sans-serif;
}
#custom-html-1of .accordion-input {
  display: none;
  /* Hide the checkbox visually */
}
#custom-html-1of .accordion-label {
  color: #090909;
  padding: 0.1em 1.3em;
  font-size: 1.5vw;
  border-radius: 0.5em;
  background: #e8e8e8;
  cursor: pointer;
  border: 1px solid #e8e8e8;
  transition: all 0.3s;
  box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  width: 100%;
  margin: 0 auto;
  font-family: "Arial Rounded MT Bold", Arial Rounded MT, Arial, Helvetica, sans-serif;
}
#custom-html-1of .accordion-label:hover,
#custom-html-1of .accordion-label:focus {
  color: #666;
  box-shadow: 0px 0px 0px #c5c5c5, 0px 0px 0px #ffffff, inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
}
#custom-html-1of .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1em;
  background-color: #f0f4f8;
  border-radius: 0 0 6px 6px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 2rem;
  line-height: 1.4;
  text-align: left;
}
#custom-html-1of .accordion-input:checked ~ .accordion-content {
  max-height: 500px;
  /* Adjust max-height to fit content */
  padding: 1em;
}
#custom-html-1of .accordion-label::after {
  content: '+';
  float: right;
  font-weight: bold;
  transition: transform 0.3s ease;
  font-size: 1.3rem;
}
#custom-html-1of .accordion-input:checked + .accordion-label::after {
  content: '-';
}
@media (max-width: 480px) {
  #custom-html-1of .accordion-label {
    font-size: 1rem;
    padding: 0.75em 1em;
  }
  #custom-html-1of .accordion-content {
    font-size: 0.95rem;
    padding: 0 0.75em;
  }
  #custom-html-1of .accordion-input:checked ~ .accordion-content {
    max-height: 400px;
    padding: 0.75em 1em;
  }
  #custom-html-1of .accordion-label::after {
    font-size: 1.2rem;
  }
}
.cid-v6iCeARTlK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v6iCeARTlK P {
  color: #767676;
}
.cid-v6iCeARTlK H1 {
  color: #ffffff;
}
#custom-html-1mx {
  /* Type valid CSS here */
}
#custom-html-1mx div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1mx p {
  font-size: 60px;
  color: #777;
}
.cid-v6iCeBceaN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  border-top: 4px solid white;
}
.cid-v6iCeBceaN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-v6iCeBceaN p {
  color: #767676;
  text-align: left;
}
.cid-v6iCeBceaN .card-box {
  padding-top: 2rem;
}
.cid-v6iCeBceaN .card-wrapper {
  height: 100%;
}
.cid-v6iCeBceaN img {
  border-radius: 1px;
  box-shadow: 10px 10px 30px 2px grey;
}
@media screen and (min-width: 901px) {
  .cid-v6iCeBceaN div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-v6iCeBceaN div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-v6iCeBceaN div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-v6iCeBceaN div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-v6iCeBceaN .center {
  margin-left: auto;
}
.cid-v6iCeBvn3u {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-v6iCeBvn3u P {
  color: #767676;
}
.cid-v6iCeBvn3u H1 {
  color: #ffffff;
}
.cid-vg1EvXGXug {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1EvXGXug .mbr-text,
.cid-vg1EvXGXug blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1EvXGXug .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1EvXGXug .text-center {
    display: none;
  }
}
.cid-vg1EvXGXug .text-center {
  color: #ef7f1a;
}
.cid-vg2LGHCzjK .mega-menu-block {
  position: relative;
}
.cid-vg2LGHCzjK .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LGHCzjK .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LGHCzjK .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LGHCzjK .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LGHCzjK .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LGHCzjK .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LGHCzjK .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LGHCzjK .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LGHCzjK .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LGHCzjK .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LGHCzjK .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LGHCzjK .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LGHCzjK .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LGHCzjK .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LGHCzjK .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LGHCzjK .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LGHCzjK .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LGHCzjK .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LGHCzjK .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LGHCzjK .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LGHCzjK .mm-main-link {
  text-decoration: none;
}
.cid-vg2LGHCzjK .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LGHCzjK .mm-hamburger {
    display: block;
  }
  .cid-vg2LGHCzjK .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LGHCzjK .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LGHCzjK .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LGHCzjK .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LGHCzjK .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LGHCzjK .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LGHCzjK .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LGHCzjK .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LGHCzjK .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LGHCzjK .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-v6voTUATOs {
  padding-top: 80px;
  padding-bottom: 15px;
  background-color: #efefef;
  background-image: url("https://www.shotokan-karate-dojo-neukirchen.de/assets/images/gruppe 2.png");
}
.cid-v6voTUATOs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v6voTUATOs H2 {
  color: #ffffff;
  font-size: 2.8vw;
  font-family: "Arial Rounded MT Bold", Arial Rounded MT, Arial, Helvetica, sans-serif;
  letter-spacing: 2px;
}
.cid-v6voTUATOs img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  float: left;
}
.cid-v6vp6hSoZ9 {
  padding-top: 0px;
  padding-bottom: 50px;
  background-color: #232323;
}
.cid-v6vp6hSoZ9 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-v6vp6hSoZ9 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v6vp6hSoZ9 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v6vp6hSoZ9 .mbr-text {
    text-align: center;
  }
}
.cid-v6vp6hSoZ9 label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ef7f1a;
}
.cid-v6vp6hSoZ9 input {
  margin: 10px;
  background: none;
  border: none;
  outline: none;
  min-width: 250px;
  max-width: 300px;
  padding: 12px 10px;
  font-size: 17px;
  border-radius: 20px;
  box-shadow: inset 2px 5px 10px #050505;
  color: #ef7f1a;
}
.cid-v6vp6hSoZ9 .bild-gedreht {
  transform: rotate(10deg);
  border-radius: 50px;
}
.cid-v6vp6hSoZ9 P {
  color: #ffffff;
}
.cid-v6vp0MpCKd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-v6vp0MpCKd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-v6vp0MpCKd p {
  color: #767676;
  text-align: left;
}
.cid-v6vp0MpCKd .card-box {
  padding-top: 2rem;
}
.cid-v6vp0MpCKd .card-wrapper {
  height: 100%;
}
.cid-v6vp0MpCKd img {
  border-radius: 1px;
  witdh: 200px;
  height: auto;
}
@media screen and (min-width: 901px) {
  .cid-v6vp0MpCKd div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-v6vp0MpCKd div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-v6vp0MpCKd div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-v6vp0MpCKd div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-v6vp0MpCKd .center {
  margin-left: auto;
}
.cid-v6vqBiCVDH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ef7f1a;
}
.cid-v6vqBiCVDH P {
  color: #767676;
}
.cid-v6vqBiCVDH H1 {
  color: #ffffff;
}
.cid-vg1ELz8UlR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1ELz8UlR .mbr-text,
.cid-vg1ELz8UlR blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1ELz8UlR .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1ELz8UlR .text-center {
    display: none;
  }
}
.cid-vg1ELz8UlR .text-center {
  color: #ef7f1a;
}
.cid-vg2Lnpl98G .mega-menu-block {
  position: relative;
}
.cid-vg2Lnpl98G .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2Lnpl98G .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2Lnpl98G .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2Lnpl98G .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2Lnpl98G .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2Lnpl98G .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2Lnpl98G .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2Lnpl98G .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2Lnpl98G .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2Lnpl98G .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2Lnpl98G .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2Lnpl98G .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2Lnpl98G .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2Lnpl98G .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2Lnpl98G .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2Lnpl98G .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2Lnpl98G .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2Lnpl98G .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2Lnpl98G .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2Lnpl98G .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2Lnpl98G .mm-main-link {
  text-decoration: none;
}
.cid-vg2Lnpl98G .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2Lnpl98G .mm-hamburger {
    display: block;
  }
  .cid-vg2Lnpl98G .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2Lnpl98G .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2Lnpl98G .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2Lnpl98G .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2Lnpl98G .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2Lnpl98G .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2Lnpl98G .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2Lnpl98G .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2Lnpl98G .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2Lnpl98G .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1NAmhQJ0 {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1NAmhQJ0 .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1NAmhQJ0 .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1NAmhQJ0 .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1NAmhQJ0 [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1NAmhQJ0 [data-align="left"] {
  flex-direction: row;
}
.cid-vg1NAmhQJ0 .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1NAmhQJ0 .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1NAmhQJ0 .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1NAmhQJ0 .content-inner {
  width: 100%;
}
.cid-vg1NAmhQJ0 h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1NAmhQJ0 P {
  text-align: center;
}
.cid-vg1NAmhQJ0 H1 {
  text-align: center;
}
.cid-vg1NAmhQJ0 .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1NAmhQJ0 .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1NAmhQJ0 .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1NAmhQJ0 .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1NAmhQJ0 .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1NAmhQJ0 .image-col {
    height: 350px;
  }
  .cid-vg1NAmhQJ0 h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg1NAmhQJ0 DIV {
  text-align: center;
}
.cid-vg1NAmhQJ0 H2 {
  text-align: center;
}
.cid-vd4C7NfDmU {
  padding-top: 0px;
  padding-bottom: 20px;
  background-color: transparent;
}
.cid-vd4C7NfDmU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vd4C7NfDmU p {
  color: #767676;
  text-align: left;
}
.cid-vd4C7NfDmU .card-box {
  padding-top: 2rem;
}
.cid-vd4C7NfDmU .card-wrapper {
  height: 100%;
}
.cid-vd4C7NfDmU .card-img {
  width: 200px;
  height: auto;
}
.cid-vg1O7yvorh {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1O7yvorh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1O7yvorh p {
  color: #767676;
  text-align: left;
}
.cid-vg1O7yvorh .card-box {
  padding-top: 2rem;
}
.cid-vg1O7yvorh .card-wrapper {
  height: 100%;
}
.cid-vg1O7yvorh img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1O7yvorh div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1O7yvorh div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1O7yvorh div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1O7yvorh div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1O7yvorh .center {
  margin-left: auto;
}
.cid-vd4J9jMMzq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ef7f1a;
}
.cid-vd4J9jMMzq P {
  color: #767676;
}
.cid-vd4J9jMMzq H1 {
  color: #ffffff;
}
.cid-vg1EzLlew4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #131212;
}
.cid-vg1EzLlew4 .mbr-text,
.cid-vg1EzLlew4 blockquote {
  color: #465052;
}
@media (max-width: 991px) {
  .cid-vg1EzLlew4 .text-center {
    display: none;
  }
}
@media (max-width: 600px) {
  .cid-vg1EzLlew4 .text-center {
    display: none;
  }
}
.cid-vg1EzLlew4 .text-center {
  color: #ef7f1a;
}
.cid-vg2LD4QSpO .mega-menu-block {
  position: relative;
}
.cid-vg2LD4QSpO .is-builder .mega-menu-block {
  padding-top: 60px !important;
}
.cid-vg2LD4QSpO .mm-wrapper {
  width: 100%;
  z-index: 100;
  font-family: sans-serif;
}
.cid-vg2LD4QSpO .mm-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cid-vg2LD4QSpO .mm-container {
  max-width: 1200px;
  background-color: #131212;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  position: relative;
}
.cid-vg2LD4QSpO .mm-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 10001;
}
.cid-vg2LD4QSpO .mm-hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
}
.cid-vg2LD4QSpO .mm-hamburger span:nth-child(1) {
  top: 0;
}
.cid-vg2LD4QSpO .mm-hamburger span:nth-child(2) {
  top: 9px;
}
.cid-vg2LD4QSpO .mm-hamburger span:nth-child(3) {
  top: 18px;
}
.cid-vg2LD4QSpO .mm-hamburger.mm-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.cid-vg2LD4QSpO .mm-hamburger.mm-active span:nth-child(2) {
  opacity: 0;
}
.cid-vg2LD4QSpO .mm-hamburger.mm-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.cid-vg2LD4QSpO .mm-nav {
  list-style: none;
  z-index: 9999;
  padding: 0;
  margin: 0;
  display: flex;
}
.cid-vg2LD4QSpO .mm-nav > li {
  margin: 0 15px;
}
.cid-vg2LD4QSpO .mm-nav > li > a {
  text-decoration: none;
  padding: 20px 0;
  font-weight: 600;
  display: block;
}
.cid-vg2LD4QSpO .mm-nav > li > a:hover {
  color: #ef7f1a !important;
}
.cid-vg2LD4QSpO .mm-mega-item {
  flex: 1;
  padding: 10px;
  text-align: center;
  background-color: #131212;
}
.cid-vg2LD4QSpO .mm-mega-item img {
  width: 100%;
  transition: transform -8s ease;
}
.cid-vg2LD4QSpO .mm-mega-item:hover img {
  transform: scale(0.96);
}
.cid-vg2LD4QSpO .mm-mega-title {
  margin-top: 16px;
  font-weight: 600;
  font-size: 1.3rem;
}
.cid-vg2LD4QSpO .mm-main-link {
  text-decoration: none;
}
.cid-vg2LD4QSpO .mm-main-link:hover .mm-mega-title {
  color: #ef7f1a !important;
}
@media (max-width: 992px) {
  .cid-vg2LD4QSpO .mm-hamburger {
    display: block;
  }
  .cid-vg2LD4QSpO .mm-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #131212;
    flex-direction: column;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
  }
  .cid-vg2LD4QSpO .mm-nav.mm-active {
    display: flex !important;
  }
  .cid-vg2LD4QSpO .mm-nav > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .cid-vg2LD4QSpO .mm-nav > li > a {
    padding: 14px 20px;
  }
  .cid-vg2LD4QSpO .mm-mega {
    display: none;
    background: rgba(19, 18, 18, 0.04);
    padding: 10px;
  }
  .cid-vg2LD4QSpO .mm-has-mega.mm-open > .mm-mega {
    display: block;
  }
  .cid-vg2LD4QSpO .mm-mega-item {
    display: inline-block;
    width: 45%;
    vertical-align: top;
  }
}
@media (min-width: 993px) {
  .cid-vg2LD4QSpO .mm-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 90%;
    background: #131212;
    display: flex;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.8s ease,
    transform 5s ease,
    visibility 1s;
    z-index: 9997;
  }
  .cid-vg2LD4QSpO .mm-has-mega:hover > .mm-mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .cid-vg2LD4QSpO .mm-shadow {
    box-shadow: 0 10px 30px black;
  }
}
.cid-vg1QO6KUAm {
  padding-top: calc(45px);
  padding-bottom: calc(25px);
  background-color: transparent;
}
.cid-vg1QO6KUAm .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg1QO6KUAm .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
}
.cid-vg1QO6KUAm .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.cid-vg1QO6KUAm [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg1QO6KUAm [data-align="left"] {
  flex-direction: row;
}
.cid-vg1QO6KUAm .split-column {
  min-height: 100px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg1QO6KUAm .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 38px 38px 0px;
}
.cid-vg1QO6KUAm .text-col {
  padding: calc(1.5rem) !important;
}
.cid-vg1QO6KUAm .content-inner {
  width: 100%;
}
.cid-vg1QO6KUAm h2 {
  text-align: justify;
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg1QO6KUAm P {
  text-align: center;
}
.cid-vg1QO6KUAm H1 {
  text-align: center;
}
.cid-vg1QO6KUAm .kein-umbruch {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .cid-vg1QO6KUAm .image-col img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0px 0px 0px 0px;
  }
  .cid-vg1QO6KUAm .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg1QO6KUAm .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg1QO6KUAm .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg1QO6KUAm .image-col {
    height: 350px;
  }
  .cid-vg1QO6KUAm h2 {
    text-align: justify;
    color: #ef7f1a;
    font-size: 20px;
  }
}
.cid-vg1QO6KUAm DIV {
  text-align: center;
}
.cid-vg1QO6KUAm H2 {
  text-align: center;
}
.cid-vg2d70CuTC {
  padding-top: calc(0rem);
  padding-bottom: calc(1rem);
  background-color: transparent;
}
.cid-vg2d70CuTC .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2d70CuTC .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2d70CuTC .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2d70CuTC [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2d70CuTC [data-align="left"] {
  flex-direction: row;
}
.cid-vg2d70CuTC .split-column {
  min-height: 300px;
  display: flex;
  align-items: center;
  margin: 0 !important;
}
.cid-vg2d70CuTC .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 38px 38px 38px 38px;
}
.cid-vg2d70CuTC .text-col {
  padding: calc(0rem) !important;
}
.cid-vg2d70CuTC .content-inner {
  width: 100%;
}
.cid-vg2d70CuTC h1 {
  font-size: 2vw;
}
@media (max-width: 991px) {
  .cid-vg2d70CuTC .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2d70CuTC .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2d70CuTC .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2d70CuTC .image-col {
    height: 350px;
  }
}
.cid-vg2d70CuTC H1 {
  color: #ef7f1a;
  font-size: 40px;
}
.cid-vg2djozy8L {
  padding-top: calc(0rem);
  padding-bottom: calc(3rem);
  background-color: transparent;
}
.cid-vg2djozy8L .full-bleed-wrapper {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.cid-vg2djozy8L .split-wrapper-outer {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-vg2djozy8L .split-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border-style: solid;
  border-color: #ef7f1a;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2djozy8L [data-align="right"] {
  flex-direction: row-reverse;
}
.cid-vg2djozy8L [data-align="left"] {
  flex-direction: row;
}
.cid-vg2djozy8L .split-column {
  min-height: 17px;
  display: flex;
  align-items: center;
  margin: 0 !important;
  border-radius: 40px 40px 40px 40px;
}
.cid-vg2djozy8L .image-col img {
  background-color: transparent;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0px 40px 40px 0px;
}
.cid-vg2djozy8L .text-col {
  padding: calc(2rem) !important;
}
.cid-vg2djozy8L .content-inner {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vg2djozy8L .split-wrapper-outer {
    width: 100% !important;
  }
  .cid-vg2djozy8L .split-column {
    width: 100% !important;
    min-height: auto;
  }
  .cid-vg2djozy8L .split-wrapper {
    flex-direction: column !important;
  }
  .cid-vg2djozy8L .image-col {
    height: 350px;
  }
}
.cid-vg2djozy8L H2 {
  text-align: justify;
}
.cid-vg2djozy8L P {
  text-align: justify;
}
.cid-vg1QTLyygF {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: transparent;
  border-top: 4px solid transparent;
}
.cid-vg1QTLyygF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-vg1QTLyygF p {
  color: #767676;
  text-align: left;
}
.cid-vg1QTLyygF .card-box {
  padding-top: 2rem;
}
.cid-vg1QTLyygF .card-wrapper {
  height: 100%;
}
.cid-vg1QTLyygF img {
  border-radius: 1px;
  width: auto;
  height: 150px;
}
@media screen and (min-width: 901px) {
  .cid-vg1QTLyygF div.example {
    font-size: 19px;
    text-align: justify;
  }
  .cid-vg1QTLyygF div.image {
    padding-left: 20px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 900px) {
  .cid-vg1QTLyygF div.example {
    font-size: 12px;
    text-align: justify;
  }
  .cid-vg1QTLyygF div.image {
    padding: 5px;
    max-width: 35%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.cid-vg1QTLyygF .center {
  margin-left: auto;
}
.cid-vfc6I4Vone {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ff7f0c;
}
.cid-vfc6I4Vone P {
  color: #767676;
}
.cid-vfc6I4Vone H1 {
  color: #dcdcdc;
}
