body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Old Standard TT', serif;
  font-size: 3.6rem;
}
.display-1 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-2 {
  font-family: 'Old Standard TT', serif;
  font-size: 2.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  letter-spacing: 2px;
  font-family: 'Muli', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Old Standard TT', serif;
  font-size: 1.7rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((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.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: #cc2952 !important;
}
.bg-success {
  background-color: #cebfaf !important;
}
.bg-info {
  background-color: #e4d295 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b2ccd2 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #8c1c38 !important;
  border-color: #8c1c38 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dae7ea !important;
  border-color: #dae7ea !important;
  color: #47737e !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #47737e !important;
  background-color: #a9c7ce !important;
  border-color: #a9c7ce !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #47737e !important;
  background-color: #a9c7ce !important;
  border-color: #a9c7ce !important;
}
.btn-info,
.btn-info:active {
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
  color: #615119 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #615119 !important;
  background-color: #d4b858 !important;
  border-color: #d4b858 !important;
}
.btn-success,
.btn-success:active {
  background-color: #cebfaf !important;
  border-color: #cebfaf !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #b19980 !important;
  border-color: #b19980 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #b19980 !important;
  border-color: #b19980 !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: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-white {
  color: #222222 !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: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #771830;
  color: #771830;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #cc2952;
  border-color: #cc2952;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  border-color: #cc2952 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #99bdc5;
  color: #99bdc5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #47737e;
  background-color: #dae7ea;
  border-color: #dae7ea;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #47737e !important;
  background-color: #dae7ea !important;
  border-color: #dae7ea !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #cfaf44;
  color: #cfaf44;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #615119;
  background-color: #e4d295;
  border-color: #e4d295;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #615119 !important;
  background-color: #e4d295 !important;
  border-color: #e4d295 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #a78c70;
  color: #a78c70;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #cebfaf;
  border-color: #cebfaf;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #cebfaf !important;
  border-color: #cebfaf !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: #72a1ac;
  color: #72a1ac;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !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: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !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: #cc2952 !important;
}
.text-secondary {
  color: #dae7ea !important;
}
.text-success {
  color: #cebfaf !important;
}
.text-info {
  color: #e4d295 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b2ccd2 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #771830 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #99bdc5 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a78c70 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cfaf44 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #72a1ac !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e4d295;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b2ccd2;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #cc2952;
  border-color: #cc2952;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #cc2952;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f5ccd6;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #cc2952;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #cc2952;
  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-number__spin {
  background: none;
  border: none;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #cc2952;
  border-bottom-color: #cc2952;
}
.btn-black:hover,
.btn-black:focus {
  background: white!important;
  color: black!important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #cc2952 !important;
  box-shadow: none!important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #dae7ea !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: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23cc2952' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rwXY5nlUuZ .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-rwXY5nlUuZ .navbar .show {
  height: 100vh;
}
.cid-rwXY5nlUuZ .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwXY5nlUuZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rwXY5nlUuZ .bottom {
  padding-bottom: 2rem;
}
.cid-rwXY5nlUuZ a {
  font-style: normal;
}
.cid-rwXY5nlUuZ .dropdown-backdrop {
  display: none;
}
.cid-rwXY5nlUuZ .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-rwXY5nlUuZ .nav-dropdown {
  padding-top: 8rem;
}
.cid-rwXY5nlUuZ .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-rwXY5nlUuZ .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-rwXY5nlUuZ .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-rwXY5nlUuZ .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-rwXY5nlUuZ .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwXY5nlUuZ .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-rwXY5nlUuZ .navbar-nav {
  width: 100%!important;
}
.cid-rwXY5nlUuZ .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwXY5nlUuZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwXY5nlUuZ .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-rwXY5nlUuZ .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-rwXY5nlUuZ .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-rwXY5nlUuZ .dropdown-item:hover,
.cid-rwXY5nlUuZ .dropdown-item:active {
  color: #ffffff !important;
}
.cid-rwXY5nlUuZ .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-rwXY5nlUuZ .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-rwXY5nlUuZ .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-rwXY5nlUuZ .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-rwXY5nlUuZ .navbar-logo {
  margin-right: 0!important;
}
.cid-rwXY5nlUuZ .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-rwXY5nlUuZ .menu-logo {
  position: fixed!important;
}
.cid-rwXY5nlUuZ .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwXY5nlUuZ .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-rwXY5nlUuZ .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-rwXY5nlUuZ .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwXY5nlUuZ .opened,
.cid-rwXY5nlUuZ .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-rwXY5nlUuZ .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-rwXY5nlUuZ .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-rwXY5nlUuZ .opened,
  .cid-rwXY5nlUuZ .show,
  .cid-rwXY5nlUuZ .navbar {
    width: 100%!important;
  }
  .cid-rwXY5nlUuZ .dropdown-toggle {
    margin: auto!important;
  }
  .cid-rwXY5nlUuZ .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-rwXY5nlUuZ .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-rwXY5nlUuZ .nav-item:focus,
.cid-rwXY5nlUuZ .nav-link:focus {
  outline: none;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwXY5nlUuZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwXY5nlUuZ button.navbar-toggler:focus {
  outline: none;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXY5nlUuZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXY5nlUuZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwXY5nlUuZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-rwXY5nlUuZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwXY5nlUuZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXY5nlUuZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwXY5nlUuZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwXY5nlUuZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rwXY5nlUuZ .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXY5nlUuZ img {
    height: 3.8rem !important;
  }
  .cid-rwXY5nlUuZ .btn {
    display: -webkit-flex;
  }
  .cid-rwXY5nlUuZ button.navbar-toggler {
    display: block;
  }
  .cid-rwXY5nlUuZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXY5nlUuZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing,
  .cid-rwXY5nlUuZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwXY5nlUuZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwXY5nlUuZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-rwXY5nlUuZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rmHL5JVzuL {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/ml-startmotiv250-1725x1020.webp");
}
.cid-uXr66KtEAu {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uXr66KtEAu h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uXr66KtEAu span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uXr66KtEAu .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uXr6dzhJ8n {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbfbfb;
}
.cid-uXr6dzhJ8n .mbr-subtitle {
  color: #ae211a;
  font-weight: 800;
  text-align: left;
}
.cid-uXr6dzhJ8n .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uXr6dzhJ8n .mbr-section-title {
  color: #073b4c;
  font-weight: 700;
  text-align: left;
}
.cid-uXr6dzhJ8n .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uXr6dzhJ8n .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
  text-align: justify;
}
.cid-uXr6dzhJ8n .timelines-container {
  margin-top: 60px;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #e9ea88;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uXr6dzhJ8n .container-fluid {
  padding: 0 2rem;
}
.cid-uXr6dzhJ8n .separline:before,
.cid-uXr6dzhJ8n .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #efefef;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-uXr6dzhJ8n .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #efefef;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-uXr6dzhJ8n .container-fluid {
    padding: 0 1rem;
  }
  .cid-uXr6dzhJ8n .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-uXr6dzhJ8n .separline:before,
  .cid-uXr6dzhJ8n .first-separline:before {
    left: -10px !important;
  }
  .cid-uXr6dzhJ8n .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-uXr6dzhJ8n .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-uXr6dzhJ8n .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-uXr6dzhJ8n .time-line-date-content p {
    float: left !important;
  }
  .cid-uXr6dzhJ8n .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-uXr6dzhJ8n .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-uXr6dzhJ8n .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .date .mbr-timeline-date {
  text-align: left;
  color: #073b4c;
}
.cid-uXr6dzhJ8n .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #073b4c;
}
.cid-sGokDSB5Ig {
  padding-top: 225px;
  padding-bottom: 0px;
  background-color: #dae7ea;
}
.cid-sGokDSB5Ig h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGokDSB5Ig h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-sGokDSB5Ig .mbr-text,
.cid-sGokDSB5Ig .mbr-section-btn {
  color: #cc2952;
}
.cid-sGokDSB5Ig H1 {
  color: #1c1c1c;
}
.cid-sGokDSB5Ig H3 {
  color: #cc2952;
}
.cid-sEbLmhodZI {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dae7ea;
}
.cid-sEbLmhodZI .card-img {
  background-color: #fff;
  overflow: hidden;
}
.cid-sEbLmhodZI .card-box {
  padding: 0rem;
  padding-top: 2rem;
}
.cid-sEbLmhodZI h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sEbLmhodZI h3 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
.cid-sEbLmhodZI p {
  text-align: left;
}
.cid-sEbLmhodZI img {
  transition: all 0.3s;
}
.cid-sEbLmhodZI .mbr-text {
  color: #1c1c1c;
}
.cid-sEbLmhodZI .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sEbLmhodZI .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-sEbLmhodZI .card-wrapper:hover img {
  filter: blur(2px);
}
.cid-sEbLmhodZI .card {
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .cid-sEbLmhodZI .card-columns {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .cid-sEbLmhodZI .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .cid-sEbLmhodZI .card-columns {
    column-gap: 4rem;
  }
}
.cid-sEbLmhodZI .card-title {
  color: #767676;
}
.cid-sIStreK4pY {
  padding-top: 225px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/2021-ml-repertoirecomposing2-1905x1067.webp");
}
.cid-sIStreK4pY h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sIStreK4pY h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #cc2952;
  margin-left: 10px;
}
.cid-sIStreK4pY .mbr-text,
.cid-sIStreK4pY .mbr-section-btn {
  color: #1c1c1c;
  text-align: center;
}
.cid-sGD9go6TnM {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #f2f3f7;
}
.cid-sGD9go6TnM .carousel {
  z-index: 0;
}
.cid-sGD9go6TnM .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sGD9go6TnM .carousel-item.active,
.cid-sGD9go6TnM .carousel-item-next,
.cid-sGD9go6TnM .carousel-item-prev {
  display: flex;
}
.cid-sGD9go6TnM .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sGD9go6TnM .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-sGD9go6TnM .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-sGD9go6TnM .line1 {
  margin-left: -2rem;
}
.cid-sGD9go6TnM .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-sGD9go6TnM .carousel-controls a {
  font-size: 2rem;
}
.cid-sGD9go6TnM .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #b2ccd2;
  background: transparent;
  opacity: 0.5;
}
.cid-sGD9go6TnM .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sGD9go6TnM ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-sGD9go6TnM .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #b2ccd2;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-sGD9go6TnM .carousel-indicators .active {
  opacity: 1;
}
.cid-sGD9go6TnM .user_text {
  color: #1c1c1c;
}
.cid-sGD9go6TnM .user_desk {
  color: #bca65b;
}
.cid-sGD9go6TnM .title,
.cid-sGD9go6TnM .line-align {
  color: #bca65b;
}
.cid-sCtcV3L7yI {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-sCtcV3L7yI h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-sCtcV3L7yI span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-sCtcV3L7yI .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-sCoYNZ0omc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-sCoYNZ0omc .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sCoYNZ0omc .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sCoYNZ0omc .col + .mbr-section-btn .btn,
.cid-sCoYNZ0omc .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sCoYNZ0omc .col + .mbr-section-btn .btn,
  .cid-sCoYNZ0omc .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sCoYNZ0omc .dragArea > *:nth-last-child(2).col,
  .cid-sCoYNZ0omc .dragArea > *:nth-last-child(2).col-auto,
  .cid-sCoYNZ0omc .col + .mbr-section-btn,
  .cid-sCoYNZ0omc .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sCoYNZ0omc .dragArea {
    flex-direction: column;
  }
}
.cid-sCoYNZ0omc .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-sCoYNZ0omc .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-sCoYNZ0omc .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sCoYNZ0omc .form-group {
  max-width: 220px;
}
.cid-sCoYNZ0omc .mbr-section-btn {
  padding-left: 0;
}
.cid-sCoYNZ0omc .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sCoYNZ0omc .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-sCoYNZ0omc .mbr-text {
  color: #444;
}
.cid-sCoYNZ0omc h5 {
  margin-bottom: 0;
}
.cid-sCoYNZ0omc .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sCoYNZ0omc .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCoYNZ0omc .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sCoYNZ0omc .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sCoYNZ0omc .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sCoYNZ0omc .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sCoYNZ0omc .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sCoYNZ0omc .social-list a:hover {
  opacity: 0.4;
}
.cid-sCoYNZ0omc .media-container-row > div {
  padding: 0px;
}
.cid-sCoYNZ0omc .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-sCoYNZ0omc .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-sCoYNZ0omc .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sCoYNZ0omc .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sCoYNZ0omc .social-list,
  .cid-sCoYNZ0omc .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sCoYNZ0omc h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sCoYNZ0omc .form-group {
    max-width: 180px;
  }
}
.cid-sCoYNZ0omc .links span {
  color: #9e9e9e;
}
.cid-sCoYNZ0omc .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-sCoYNZ0omc .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-sCoYNZ0omc .logo-title,
.cid-sCoYNZ0omc .logo {
  color: #7f1933;
}
.cid-rmHq6wCrpg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tzwKW0nrZy.popup-builder {
  background-color: #ffffff;
}
.cid-tzwKW0nrZy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tzwKW0nrZy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tzwKW0nrZy .modal-content,
.cid-tzwKW0nrZy .modal-dialog {
  height: auto;
}
.cid-tzwKW0nrZy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tzwKW0nrZy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tzwKW0nrZy .form-wrapper .mbr-form .form-group,
  .cid-tzwKW0nrZy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tzwKW0nrZy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tzwKW0nrZy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tzwKW0nrZy .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-tzwKW0nrZy .pt-0 {
  padding-top: 0 !important;
}
.cid-tzwKW0nrZy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tzwKW0nrZy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tzwKW0nrZy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tzwKW0nrZy .modal-open {
  overflow: hidden;
}
.cid-tzwKW0nrZy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tzwKW0nrZy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tzwKW0nrZy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tzwKW0nrZy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tzwKW0nrZy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tzwKW0nrZy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tzwKW0nrZy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tzwKW0nrZy .modal-content {
  background: #dae7ea;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tzwKW0nrZy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tzwKW0nrZy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tzwKW0nrZy .modal-backdrop.fade {
  opacity: 0;
}
.cid-tzwKW0nrZy .modal-backdrop.show {
  opacity: .5;
}
.cid-tzwKW0nrZy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tzwKW0nrZy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tzwKW0nrZy .modal-header {
    padding: 1rem;
  }
}
.cid-tzwKW0nrZy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tzwKW0nrZy .modal-header .close svg {
  fill: #353535;
}
.cid-tzwKW0nrZy .modal-header .close:hover {
  opacity: 1;
}
.cid-tzwKW0nrZy .modal-header .close:focus {
  outline: none;
}
.cid-tzwKW0nrZy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #571022;
}
.cid-tzwKW0nrZy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tzwKW0nrZy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzwKW0nrZy .modal-body {
    padding: 1rem;
  }
}
.cid-tzwKW0nrZy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tzwKW0nrZy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzwKW0nrZy .modal-footer {
    padding: 1rem;
  }
}
.cid-tzwKW0nrZy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tzwKW0nrZy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tzwKW0nrZy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tzwKW0nrZy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tzwKW0nrZy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tzwKW0nrZy .modal-lg,
  .cid-tzwKW0nrZy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tzwKW0nrZy .modal-xl {
    max-width: 1140px;
  }
}
.cid-tzwKW0nrZy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tzwKW0nrZy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tzwKW0nrZy .form-group {
  margin-bottom: 1rem;
}
.cid-tzwKW0nrZy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tzwKW0nrZy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tzwKW0nrZy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tzwKW0nrZy .mbr-section-btn {
  margin: 0;
}
.cid-tzwKW0nrZy .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIXnhkK7mh.popup-builder {
  background-color: #ffffff;
}
.cid-sIXnhkK7mh.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sIXnhkK7mh.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sIXnhkK7mh .modal-content,
.cid-sIXnhkK7mh .modal-dialog {
  height: auto;
}
.cid-sIXnhkK7mh .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sIXnhkK7mh .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sIXnhkK7mh .form-wrapper .mbr-form .form-group,
  .cid-sIXnhkK7mh .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sIXnhkK7mh .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sIXnhkK7mh .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIXnhkK7mh .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sIXnhkK7mh .pt-0 {
  padding-top: 0 !important;
}
.cid-sIXnhkK7mh .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sIXnhkK7mh .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sIXnhkK7mh .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sIXnhkK7mh .modal-open {
  overflow: hidden;
}
.cid-sIXnhkK7mh .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sIXnhkK7mh .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sIXnhkK7mh .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sIXnhkK7mh .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sIXnhkK7mh .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sIXnhkK7mh .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sIXnhkK7mh .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sIXnhkK7mh .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sIXnhkK7mh .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sIXnhkK7mh .modal-backdrop.fade {
  opacity: 0;
}
.cid-sIXnhkK7mh .modal-backdrop.show {
  opacity: .5;
}
.cid-sIXnhkK7mh .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sIXnhkK7mh .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXnhkK7mh .modal-header {
    padding: 1rem;
  }
}
.cid-sIXnhkK7mh .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sIXnhkK7mh .modal-header .close:hover {
  opacity: 1;
}
.cid-sIXnhkK7mh .modal-header .close:focus {
  outline: none;
}
.cid-sIXnhkK7mh .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-sIXnhkK7mh .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sIXnhkK7mh .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXnhkK7mh .modal-body {
    padding: 1rem;
  }
}
.cid-sIXnhkK7mh .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sIXnhkK7mh .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXnhkK7mh .modal-footer {
    padding: 1rem;
  }
}
.cid-sIXnhkK7mh .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sIXnhkK7mh .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sIXnhkK7mh .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sIXnhkK7mh .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sIXnhkK7mh .modal-sm {
    max-width: 300px;
  }
  .cid-sIXnhkK7mh .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sIXnhkK7mh .modal-lg,
  .cid-sIXnhkK7mh .modal-xl {
    max-width: 800px;
  }
  .cid-sIXnhkK7mh .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sIXnhkK7mh .modal-xl {
    max-width: 1140px;
  }
  .cid-sIXnhkK7mh .container {
    max-width: 1140px;
  }
}
.cid-sIXnhkK7mh .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sIXnhkK7mh .container {
    max-width: 720px;
  }
}
.cid-sIXnhkK7mh .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sIXnhkK7mh .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sIXnhkK7mh .form-group {
  margin-bottom: 1rem;
}
.cid-sIXnhkK7mh .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sIXnhkK7mh .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sIXnhkK7mh .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sIXnhkK7mh .mbr-section-btn {
  margin: 0;
}
.cid-sIXnhkK7mh .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIXo9ASESs.popup-builder {
  background-color: #ffffff;
}
.cid-sIXo9ASESs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sIXo9ASESs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sIXo9ASESs .modal-content,
.cid-sIXo9ASESs .modal-dialog {
  height: auto;
}
.cid-sIXo9ASESs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sIXo9ASESs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sIXo9ASESs .form-wrapper .mbr-form .form-group,
  .cid-sIXo9ASESs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sIXo9ASESs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sIXo9ASESs .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIXo9ASESs .mbr-text {
  text-align: center;
}
.cid-sIXo9ASESs .pt-0 {
  padding-top: 0 !important;
}
.cid-sIXo9ASESs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sIXo9ASESs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sIXo9ASESs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sIXo9ASESs .modal-open {
  overflow: hidden;
}
.cid-sIXo9ASESs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sIXo9ASESs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sIXo9ASESs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sIXo9ASESs .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sIXo9ASESs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sIXo9ASESs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sIXo9ASESs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sIXo9ASESs .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sIXo9ASESs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sIXo9ASESs .modal-backdrop.fade {
  opacity: 0;
}
.cid-sIXo9ASESs .modal-backdrop.show {
  opacity: .5;
}
.cid-sIXo9ASESs .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sIXo9ASESs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXo9ASESs .modal-header {
    padding: 1rem;
  }
}
.cid-sIXo9ASESs .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sIXo9ASESs .modal-header .close:hover {
  opacity: 1;
}
.cid-sIXo9ASESs .modal-header .close:focus {
  outline: none;
}
.cid-sIXo9ASESs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sIXo9ASESs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sIXo9ASESs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXo9ASESs .modal-body {
    padding: 1rem;
  }
}
.cid-sIXo9ASESs .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sIXo9ASESs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXo9ASESs .modal-footer {
    padding: 1rem;
  }
}
.cid-sIXo9ASESs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sIXo9ASESs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sIXo9ASESs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sIXo9ASESs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sIXo9ASESs .modal-sm {
    max-width: 300px;
  }
  .cid-sIXo9ASESs .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sIXo9ASESs .modal-lg,
  .cid-sIXo9ASESs .modal-xl {
    max-width: 800px;
  }
  .cid-sIXo9ASESs .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sIXo9ASESs .modal-xl {
    max-width: 1140px;
  }
  .cid-sIXo9ASESs .container {
    max-width: 1140px;
  }
}
.cid-sIXo9ASESs .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sIXo9ASESs .container {
    max-width: 720px;
  }
}
.cid-sIXo9ASESs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sIXo9ASESs .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sIXo9ASESs .form-group {
  margin-bottom: 1rem;
}
.cid-sIXo9ASESs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sIXo9ASESs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sIXo9ASESs .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sIXo9ASESs .mbr-section-btn {
  margin: 0;
}
.cid-sIXo9ASESs .mbr-section-btn .btn {
  margin: 0;
}
.cid-sIXooGIDAy.popup-builder {
  background-color: #ffffff;
}
.cid-sIXooGIDAy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sIXooGIDAy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sIXooGIDAy .modal-content,
.cid-sIXooGIDAy .modal-dialog {
  height: auto;
}
.cid-sIXooGIDAy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sIXooGIDAy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sIXooGIDAy .form-wrapper .mbr-form .form-group,
  .cid-sIXooGIDAy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sIXooGIDAy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sIXooGIDAy .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIXooGIDAy .mbr-text {
  text-align: center;
}
.cid-sIXooGIDAy .pt-0 {
  padding-top: 0 !important;
}
.cid-sIXooGIDAy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sIXooGIDAy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sIXooGIDAy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sIXooGIDAy .modal-open {
  overflow: hidden;
}
.cid-sIXooGIDAy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sIXooGIDAy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sIXooGIDAy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sIXooGIDAy .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sIXooGIDAy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sIXooGIDAy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sIXooGIDAy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sIXooGIDAy .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sIXooGIDAy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sIXooGIDAy .modal-backdrop.fade {
  opacity: 0;
}
.cid-sIXooGIDAy .modal-backdrop.show {
  opacity: .5;
}
.cid-sIXooGIDAy .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sIXooGIDAy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXooGIDAy .modal-header {
    padding: 1rem;
  }
}
.cid-sIXooGIDAy .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sIXooGIDAy .modal-header .close:hover {
  opacity: 1;
}
.cid-sIXooGIDAy .modal-header .close:focus {
  outline: none;
}
.cid-sIXooGIDAy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sIXooGIDAy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sIXooGIDAy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXooGIDAy .modal-body {
    padding: 1rem;
  }
}
.cid-sIXooGIDAy .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sIXooGIDAy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXooGIDAy .modal-footer {
    padding: 1rem;
  }
}
.cid-sIXooGIDAy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sIXooGIDAy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sIXooGIDAy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sIXooGIDAy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sIXooGIDAy .modal-sm {
    max-width: 300px;
  }
  .cid-sIXooGIDAy .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sIXooGIDAy .modal-lg,
  .cid-sIXooGIDAy .modal-xl {
    max-width: 800px;
  }
  .cid-sIXooGIDAy .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sIXooGIDAy .modal-xl {
    max-width: 1140px;
  }
  .cid-sIXooGIDAy .container {
    max-width: 1140px;
  }
}
.cid-sIXooGIDAy .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sIXooGIDAy .container {
    max-width: 720px;
  }
}
.cid-sIXooGIDAy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sIXooGIDAy .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sIXooGIDAy .form-group {
  margin-bottom: 1rem;
}
.cid-sIXooGIDAy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sIXooGIDAy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sIXooGIDAy .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sIXooGIDAy .mbr-section-btn {
  margin: 0;
}
.cid-sIXooGIDAy .mbr-section-btn .btn {
  margin: 0;
}
.cid-thcLlyIa8Y.popup-builder {
  background-color: #ffffff;
}
.cid-thcLlyIa8Y.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-thcLlyIa8Y.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-thcLlyIa8Y .modal-content,
.cid-thcLlyIa8Y .modal-dialog {
  height: auto;
}
.cid-thcLlyIa8Y .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-thcLlyIa8Y .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-thcLlyIa8Y .form-wrapper .mbr-form .form-group,
  .cid-thcLlyIa8Y .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-thcLlyIa8Y .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-thcLlyIa8Y .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-thcLlyIa8Y .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-thcLlyIa8Y .pt-0 {
  padding-top: 0 !important;
}
.cid-thcLlyIa8Y .pb-0 {
  padding-bottom: 0 !important;
}
.cid-thcLlyIa8Y .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-thcLlyIa8Y .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-thcLlyIa8Y .modal-open {
  overflow: hidden;
}
.cid-thcLlyIa8Y .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-thcLlyIa8Y .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-thcLlyIa8Y .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-thcLlyIa8Y .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-thcLlyIa8Y .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-thcLlyIa8Y .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-thcLlyIa8Y .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-thcLlyIa8Y .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-thcLlyIa8Y .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-thcLlyIa8Y .modal-backdrop.fade {
  opacity: 0;
}
.cid-thcLlyIa8Y .modal-backdrop.show {
  opacity: .5;
}
.cid-thcLlyIa8Y .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-thcLlyIa8Y .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-thcLlyIa8Y .modal-header {
    padding: 1rem;
  }
}
.cid-thcLlyIa8Y .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-thcLlyIa8Y .modal-header .close:hover {
  opacity: 1;
}
.cid-thcLlyIa8Y .modal-header .close:focus {
  outline: none;
}
.cid-thcLlyIa8Y .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-thcLlyIa8Y .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-thcLlyIa8Y .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thcLlyIa8Y .modal-body {
    padding: 1rem;
  }
}
.cid-thcLlyIa8Y .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-thcLlyIa8Y .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-thcLlyIa8Y .modal-footer {
    padding: 1rem;
  }
}
.cid-thcLlyIa8Y .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-thcLlyIa8Y .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-thcLlyIa8Y .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-thcLlyIa8Y .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-thcLlyIa8Y .modal-sm {
    max-width: 300px;
  }
  .cid-thcLlyIa8Y .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-thcLlyIa8Y .modal-lg,
  .cid-thcLlyIa8Y .modal-xl {
    max-width: 800px;
  }
  .cid-thcLlyIa8Y .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-thcLlyIa8Y .modal-xl {
    max-width: 1140px;
  }
  .cid-thcLlyIa8Y .container {
    max-width: 1140px;
  }
}
.cid-thcLlyIa8Y .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-thcLlyIa8Y .container {
    max-width: 720px;
  }
}
.cid-thcLlyIa8Y .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-thcLlyIa8Y .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-thcLlyIa8Y .form-group {
  margin-bottom: 1rem;
}
.cid-thcLlyIa8Y .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-thcLlyIa8Y .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-thcLlyIa8Y .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-thcLlyIa8Y .mbr-section-btn {
  margin: 0;
}
.cid-thcLlyIa8Y .mbr-section-btn .btn {
  margin: 0;
}
.cid-rwXY5nlUuZ .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-rwXY5nlUuZ .navbar .show {
  height: 100vh;
}
.cid-rwXY5nlUuZ .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rwXY5nlUuZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rwXY5nlUuZ .bottom {
  padding-bottom: 2rem;
}
.cid-rwXY5nlUuZ a {
  font-style: normal;
}
.cid-rwXY5nlUuZ .dropdown-backdrop {
  display: none;
}
.cid-rwXY5nlUuZ .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-rwXY5nlUuZ .nav-dropdown {
  padding-top: 8rem;
}
.cid-rwXY5nlUuZ .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-rwXY5nlUuZ .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-rwXY5nlUuZ .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-rwXY5nlUuZ .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-rwXY5nlUuZ .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rwXY5nlUuZ .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-rwXY5nlUuZ .navbar-nav {
  width: 100%!important;
}
.cid-rwXY5nlUuZ .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rwXY5nlUuZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rwXY5nlUuZ .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-rwXY5nlUuZ .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-rwXY5nlUuZ .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-rwXY5nlUuZ .dropdown-item:hover,
.cid-rwXY5nlUuZ .dropdown-item:active {
  color: #ffffff !important;
}
.cid-rwXY5nlUuZ .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-rwXY5nlUuZ .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-rwXY5nlUuZ .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-rwXY5nlUuZ .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-rwXY5nlUuZ .navbar-logo {
  margin-right: 0!important;
}
.cid-rwXY5nlUuZ .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-rwXY5nlUuZ .menu-logo {
  position: fixed!important;
}
.cid-rwXY5nlUuZ .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rwXY5nlUuZ .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-rwXY5nlUuZ .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-rwXY5nlUuZ .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rwXY5nlUuZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rwXY5nlUuZ .opened,
.cid-rwXY5nlUuZ .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-rwXY5nlUuZ .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-rwXY5nlUuZ .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-rwXY5nlUuZ .opened,
  .cid-rwXY5nlUuZ .show,
  .cid-rwXY5nlUuZ .navbar {
    width: 100%!important;
  }
  .cid-rwXY5nlUuZ .dropdown-toggle {
    margin: auto!important;
  }
  .cid-rwXY5nlUuZ .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-rwXY5nlUuZ .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-rwXY5nlUuZ .nav-item:focus,
.cid-rwXY5nlUuZ .nav-link:focus {
  outline: none;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rwXY5nlUuZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rwXY5nlUuZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rwXY5nlUuZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rwXY5nlUuZ button.navbar-toggler:focus {
  outline: none;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rwXY5nlUuZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rwXY5nlUuZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rwXY5nlUuZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXY5nlUuZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rwXY5nlUuZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-rwXY5nlUuZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-rwXY5nlUuZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-rwXY5nlUuZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rwXY5nlUuZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rwXY5nlUuZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rwXY5nlUuZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rwXY5nlUuZ .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXY5nlUuZ img {
    height: 3.8rem !important;
  }
  .cid-rwXY5nlUuZ .btn {
    display: -webkit-flex;
  }
  .cid-rwXY5nlUuZ button.navbar-toggler {
    display: block;
  }
  .cid-rwXY5nlUuZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rwXY5nlUuZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing,
  .cid-rwXY5nlUuZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rwXY5nlUuZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rwXY5nlUuZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rwXY5nlUuZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rwXY5nlUuZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rwXY5nlUuZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-rwXY5nlUuZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sCttas54Qk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dae7e9;
}
.cid-sCttas54Qk .counter-container {
  color: #464646;
}
.cid-sCttas54Qk .counter-container div {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.cid-sCttas54Qk .counter-container li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-sCttas54Qk .counter-container .counter {
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
  font-size: 40px;
  position: absolute;
  left: 0;
  display: inline-block;
  margin: 0 0 5px;
  line-height: 40px;
  transition: all .2s;
  width: 60px;
  height: 40px;
}
.cid-sCttas54Qk P {
  text-align: left;
  color: #000000;
}
.cid-sCttas54Qk H2 {
  color: #82786e;
}
.cid-sCttas54Qk H3 {
  color: #82786e;
}
.cid-sCttas54Qk H1 {
  color: #8d071d;
}
.cid-rmHq6wCrpg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sCtuafTvPQ .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-sCtuafTvPQ .navbar .show {
  height: 100vh;
}
.cid-sCtuafTvPQ .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sCtuafTvPQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sCtuafTvPQ .bottom {
  padding-bottom: 2rem;
}
.cid-sCtuafTvPQ a {
  font-style: normal;
}
.cid-sCtuafTvPQ .dropdown-backdrop {
  display: none;
}
.cid-sCtuafTvPQ .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-sCtuafTvPQ .nav-dropdown {
  padding-top: 8rem;
}
.cid-sCtuafTvPQ .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sCtuafTvPQ .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sCtuafTvPQ .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sCtuafTvPQ .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sCtuafTvPQ .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sCtuafTvPQ .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-sCtuafTvPQ .navbar-nav {
  width: 100%!important;
}
.cid-sCtuafTvPQ .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sCtuafTvPQ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sCtuafTvPQ .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sCtuafTvPQ .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-sCtuafTvPQ .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-sCtuafTvPQ .dropdown-item:hover,
.cid-sCtuafTvPQ .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sCtuafTvPQ .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sCtuafTvPQ .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sCtuafTvPQ .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sCtuafTvPQ .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sCtuafTvPQ .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sCtuafTvPQ .navbar-logo {
  margin-right: 0!important;
}
.cid-sCtuafTvPQ .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sCtuafTvPQ .menu-logo {
  position: fixed!important;
}
.cid-sCtuafTvPQ .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sCtuafTvPQ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sCtuafTvPQ .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sCtuafTvPQ .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-sCtuafTvPQ .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sCtuafTvPQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sCtuafTvPQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sCtuafTvPQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sCtuafTvPQ .opened,
.cid-sCtuafTvPQ .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sCtuafTvPQ .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sCtuafTvPQ .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sCtuafTvPQ .opened,
  .cid-sCtuafTvPQ .show,
  .cid-sCtuafTvPQ .navbar {
    width: 100%!important;
  }
  .cid-sCtuafTvPQ .dropdown-toggle {
    margin: auto!important;
  }
  .cid-sCtuafTvPQ .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-sCtuafTvPQ .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sCtuafTvPQ .nav-item:focus,
.cid-sCtuafTvPQ .nav-link:focus {
  outline: none;
}
.cid-sCtuafTvPQ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sCtuafTvPQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sCtuafTvPQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCtuafTvPQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sCtuafTvPQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sCtuafTvPQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sCtuafTvPQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCtuafTvPQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sCtuafTvPQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sCtuafTvPQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sCtuafTvPQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sCtuafTvPQ button.navbar-toggler:focus {
  outline: none;
}
.cid-sCtuafTvPQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-sCtuafTvPQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCtuafTvPQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCtuafTvPQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCtuafTvPQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCtuafTvPQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCtuafTvPQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCtuafTvPQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCtuafTvPQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCtuafTvPQ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sCtuafTvPQ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sCtuafTvPQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sCtuafTvPQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sCtuafTvPQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-sCtuafTvPQ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sCtuafTvPQ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sCtuafTvPQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sCtuafTvPQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sCtuafTvPQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sCtuafTvPQ .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sCtuafTvPQ img {
    height: 3.8rem !important;
  }
  .cid-sCtuafTvPQ .btn {
    display: -webkit-flex;
  }
  .cid-sCtuafTvPQ button.navbar-toggler {
    display: block;
  }
  .cid-sCtuafTvPQ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sCtuafTvPQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing,
  .cid-sCtuafTvPQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing .navbar-nav,
  .cid-sCtuafTvPQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sCtuafTvPQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sCtuafTvPQ .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sCtuafTvPQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sCtuafTvPQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sCtuafTvPQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sCtuafTvPQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sCtuafTvPQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sCtuafTvPQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sCtuafTvPQ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sCtuaeZMSX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #dae7e9;
}
.cid-sCtuaeZMSX .counter-container {
  color: #464646;
}
.cid-sCtuaeZMSX .counter-container div {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.cid-sCtuaeZMSX .counter-container li {
  list-style: none;
  padding-left: 1rem;
  position: relative;
}
.cid-sCtuaeZMSX .counter-container .counter {
  text-overflow: clip;
  overflow: hidden;
  white-space: nowrap;
  font-size: 40px;
  position: absolute;
  left: 0;
  display: inline-block;
  margin: 0 0 5px;
  line-height: 40px;
  transition: all .2s;
  width: 60px;
  height: 40px;
}
.cid-sCtuaeZMSX P {
  text-align: left;
  color: #000000;
}
.cid-sCtuaeZMSX H2 {
  color: #888888;
}
.cid-sCtuaeZMSX H3 {
  color: #ffffff;
}
.cid-sCtuaeZMSX H1 {
  color: #8d071d;
}
.cid-sCtuafHcpE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sGrk2bUutV .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-sGrk2bUutV .navbar .show {
  height: 100vh;
}
.cid-sGrk2bUutV .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sGrk2bUutV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sGrk2bUutV .bottom {
  padding-bottom: 2rem;
}
.cid-sGrk2bUutV a {
  font-style: normal;
}
.cid-sGrk2bUutV .dropdown-backdrop {
  display: none;
}
.cid-sGrk2bUutV .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-sGrk2bUutV .nav-dropdown {
  padding-top: 8rem;
}
.cid-sGrk2bUutV .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sGrk2bUutV .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sGrk2bUutV .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sGrk2bUutV .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sGrk2bUutV .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sGrk2bUutV .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-sGrk2bUutV .navbar-nav {
  width: 100%!important;
}
.cid-sGrk2bUutV .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sGrk2bUutV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sGrk2bUutV .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sGrk2bUutV .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-sGrk2bUutV .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-sGrk2bUutV .dropdown-item:hover,
.cid-sGrk2bUutV .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sGrk2bUutV .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sGrk2bUutV .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sGrk2bUutV .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sGrk2bUutV .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sGrk2bUutV .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sGrk2bUutV .navbar-logo {
  margin-right: 0!important;
}
.cid-sGrk2bUutV .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sGrk2bUutV .menu-logo {
  position: fixed!important;
}
.cid-sGrk2bUutV .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sGrk2bUutV .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sGrk2bUutV .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sGrk2bUutV .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-sGrk2bUutV .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sGrk2bUutV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sGrk2bUutV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sGrk2bUutV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sGrk2bUutV .opened,
.cid-sGrk2bUutV .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sGrk2bUutV .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sGrk2bUutV .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sGrk2bUutV .opened,
  .cid-sGrk2bUutV .show,
  .cid-sGrk2bUutV .navbar {
    width: 100%!important;
  }
  .cid-sGrk2bUutV .dropdown-toggle {
    margin: auto!important;
  }
  .cid-sGrk2bUutV .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-sGrk2bUutV .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sGrk2bUutV .nav-item:focus,
.cid-sGrk2bUutV .nav-link:focus {
  outline: none;
}
.cid-sGrk2bUutV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sGrk2bUutV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sGrk2bUutV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGrk2bUutV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sGrk2bUutV .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sGrk2bUutV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sGrk2bUutV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGrk2bUutV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sGrk2bUutV .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGrk2bUutV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sGrk2bUutV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sGrk2bUutV button.navbar-toggler:focus {
  outline: none;
}
.cid-sGrk2bUutV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-sGrk2bUutV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGrk2bUutV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGrk2bUutV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGrk2bUutV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGrk2bUutV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGrk2bUutV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGrk2bUutV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGrk2bUutV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGrk2bUutV .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sGrk2bUutV .collapsed .btn {
  display: -webkit-flex;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sGrk2bUutV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sGrk2bUutV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGrk2bUutV .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-sGrk2bUutV .collapsed button.navbar-toggler {
  display: block;
}
.cid-sGrk2bUutV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sGrk2bUutV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sGrk2bUutV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sGrk2bUutV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sGrk2bUutV .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sGrk2bUutV img {
    height: 3.8rem !important;
  }
  .cid-sGrk2bUutV .btn {
    display: -webkit-flex;
  }
  .cid-sGrk2bUutV button.navbar-toggler {
    display: block;
  }
  .cid-sGrk2bUutV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sGrk2bUutV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing,
  .cid-sGrk2bUutV .navbar-collapse.show {
    display: block !important;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing .navbar-nav,
  .cid-sGrk2bUutV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sGrk2bUutV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sGrk2bUutV .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing .navbar-buttons,
  .cid-sGrk2bUutV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sGrk2bUutV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sGrk2bUutV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sGrk2bUutV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sGrk2bUutV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sGrk2bUutV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sGrk2bUutV .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sGshxLBKzf {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/bildschirmfoto-2021-08-16-um-17.41.52-654x372.webp");
}
.cid-sGshxLBKzf .link-align {
  width: 100%;
}
.cid-sGshxLBKzf .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-sGshxLBKzf .mbr-text,
.cid-sGshxLBKzf .link-align {
  color: #ffffff;
}
.cid-sGshxLBKzf .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #cebfaf;
  height: 100px;
  cursor: pointer;
}
.cid-sGshxLBKzf .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-sGshxLBKzf .icon-wrap span {
  padding-left: 4px;
}
.cid-sGshxLBKzf .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sGshxLBKzf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sGshxLBKzf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sGshxLBKzf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sGshxLBKzf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sGshxLBKzf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sGshxLBKzf a.close:hover {
  color: #ffffff;
}
.cid-sGrk26XhRM {
  padding-top: 225px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sGrk26XhRM h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGrk26XhRM h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #e4d295;
  margin-left: 10px;
}
.cid-sGrk26XhRM .mbr-text,
.cid-sGrk26XhRM .mbr-section-btn {
  color: #c4bc3b;
}
.cid-sGrk26XhRM H1 {
  color: #1c1c1c;
}
.cid-sGrk26XhRM H3 {
  color: #cc2952;
}
.cid-sGrouzgGdO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sGrouzgGdO .card-box {
  padding: 2rem 2rem 0rem 2rem;
}
.cid-sGrouzgGdO .mbr-section-btn {
  padding-top: 0.5rem;
}
.cid-sGrouzgGdO .card {
  height: fit-content;
}
.cid-sGrouzgGdO h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sGrouzgGdO .card1 {
  background: #ffffff;
}
.cid-sGrouzgGdO .card2 {
  background: #232323;
}
.cid-sGrouzgGdO .card3 {
  background: #ffffff;
}
.cid-sGrouzgGdO .card4 {
  background: #232323;
}
.cid-sGrouzgGdO .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sGrouzgGdO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sGrouzgGdO .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-sGrouzgGdO .card-subtitle1 {
  text-align: center;
}
.cid-sGrouzgGdO .card-title1 {
  text-align: center;
}
.cid-sGrouzgGdO .mbr-text1 {
  text-align: center;
  color: #cc2952;
}
.cid-sGrouzgGdO .card-title2 {
  text-align: center;
  color: #ffffff;
}
.cid-sGrouzgGdO .mbr-text2 {
  color: #e4d295;
  text-align: center;
}
.cid-sGrouzgGdO .card-subtitle2 {
  color: #ffffff;
  text-align: center;
}
.cid-sGrouzgGdO .card-title3 {
  text-align: center;
}
.cid-sGrouzgGdO .mbr-text3 {
  text-align: center;
  color: #cc2952;
}
.cid-sGrouzgGdO .card-subtitle3 {
  text-align: center;
  color: #232323;
}
.cid-sGrouzgGdO .card-title4 {
  text-align: center;
}
.cid-sGrouzgGdO .mbr-text4 {
  text-align: center;
  color: #ffffff;
}
.cid-sGrouzgGdO .card-subtitle4 {
  text-align: center;
  color: #ffffff;
}
.cid-sGrouzgGdO .card-title2,
.cid-sGrouzgGdO .title-wrap2 {
  text-align: center;
  color: #ffffff;
}
.cid-sGrouzgGdO .card-title3,
.cid-sGrouzgGdO .title-wrap3 {
  text-align: center;
}
.cid-sGrouzgGdO .card-title4,
.cid-sGrouzgGdO .title-wrap4 {
  text-align: center;
  color: #ffffff;
}
.cid-sGrouzgGdO .card-title1,
.cid-sGrouzgGdO .title-wrap1 {
  text-align: center;
}
.cid-sGrouzgGdO .title {
  text-align: center;
}
.cid-sJDGfCYF1J {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sJDGfCYF1J .carousel {
  z-index: 0;
}
.cid-sJDGfCYF1J .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sJDGfCYF1J .carousel-item.active,
.cid-sJDGfCYF1J .carousel-item-next,
.cid-sJDGfCYF1J .carousel-item-prev {
  display: flex;
}
.cid-sJDGfCYF1J .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sJDGfCYF1J .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-sJDGfCYF1J .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-sJDGfCYF1J .line1 {
  margin-left: -2rem;
}
.cid-sJDGfCYF1J .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-sJDGfCYF1J .carousel-controls a {
  font-size: 2rem;
}
.cid-sJDGfCYF1J .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  opacity: 0.5;
}
.cid-sJDGfCYF1J .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sJDGfCYF1J ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-sJDGfCYF1J .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #ffffff;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-sJDGfCYF1J .carousel-indicators .active {
  opacity: 1;
}
.cid-sJDGfCYF1J .user_text {
  color: #7f1933;
}
.cid-sJDGfCYF1J .user_desk {
  color: #879a9f;
}
.cid-sJDGfCYF1J .title,
.cid-sJDGfCYF1J .line-align {
  color: #1c1c1c;
}
.cid-sKa2kOydy7 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/-cah6380-rgb-1-1331x2000.webp");
}
.cid-sKa2kOydy7 .mbr-section-title {
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #7f1933;
  text-align: center;
}
.cid-sKa2kOydy7 .nav {
  border: none;
}
.cid-sKa2kOydy7 .nav-tabs {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sKa2kOydy7 .nav-tabs .nav-link {
  box-sizing: border-box;
  color: #7f1933;
  font-style: normal;
  font-weight: 500;
  padding: 1rem 3rem;
  margin: 0px -0.5px 1rem -0.5px;
  transition: all .5s;
  border-radius: 0px !important;
  border-bottom: 1px solid #7f1933;
}
.cid-sKa2kOydy7 .nav-tabs .nav-link:hover {
  border: 1px solid #7f1933;
  background-color: #571022;
  color: #ffffff;
}
.cid-sKa2kOydy7 .nav-tabs .nav-link.active {
  border: 1px solid #7f1933;
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
  background: #571022;
}
.cid-sKa2kOydy7 P {
  text-align: left;
  letter-spacing: 0.3em;
}
.cid-sKa2kOydy7 .tab-title {
  color: #7f1933;
}
.cid-sJDJPk9Jrj {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #1c1c1c;
}
.cid-sJDJPk9Jrj .carousel {
  z-index: 0;
}
.cid-sJDJPk9Jrj .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sJDJPk9Jrj .carousel-item.active,
.cid-sJDJPk9Jrj .carousel-item-next,
.cid-sJDJPk9Jrj .carousel-item-prev {
  display: flex;
}
.cid-sJDJPk9Jrj .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sJDJPk9Jrj .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-sJDJPk9Jrj .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-sJDJPk9Jrj .line1 {
  margin-left: -2rem;
}
.cid-sJDJPk9Jrj .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-sJDJPk9Jrj .carousel-controls a {
  font-size: 2rem;
}
.cid-sJDJPk9Jrj .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #1c1c1c;
  background: transparent;
  opacity: 0.5;
}
.cid-sJDJPk9Jrj .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sJDJPk9Jrj ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-sJDJPk9Jrj .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #1c1c1c;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-sJDJPk9Jrj .carousel-indicators .active {
  opacity: 1;
}
.cid-sJDJPk9Jrj .user_text {
  color: #ffffff;
}
.cid-sJDJPk9Jrj .user_desk {
  color: #cc2952;
}
.cid-sJDJPk9Jrj .title,
.cid-sJDJPk9Jrj .line-align {
  color: #e4d295;
}
.cid-sJhHSEteD7 {
  padding-top: 10rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/2021-ml-ubermichcomposing-1950x1300.webp");
}
.cid-sJhHSEteD7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sJhHSEteD7 .mbr-text {
  color: #ffffff;
  text-align: right;
}
.cid-sJhHSEteD7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
  padding-bottom: 20px;
  font-size: 60px;
}
.cid-sJhHSEteD7 .row {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.cid-sJhHSEteD7 .sign {
  width: 300px;
  display: inline;
}
.cid-sJhHSEteD7 .text,
.cid-sJhHSEteD7 .si {
  text-align: left;
  color: #1c1c1c;
}
@media (max-width: 690px) {
  .cid-sJhHSEteD7 .sign {
    width: 100%;
  }
}
.cid-sJhHSEteD7 .main-title {
  color: #879a9f;
}
.cid-sJDx70WnTS {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-sJDx70WnTS h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-sJDx70WnTS span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-sJDx70WnTS .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-sGrsMHMOWH {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #1c1c1c;
}
.cid-sGrsMHMOWH .carousel {
  z-index: 0;
}
.cid-sGrsMHMOWH .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sGrsMHMOWH .carousel-item.active,
.cid-sGrsMHMOWH .carousel-item-next,
.cid-sGrsMHMOWH .carousel-item-prev {
  display: flex;
}
.cid-sGrsMHMOWH .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sGrsMHMOWH .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-sGrsMHMOWH .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-sGrsMHMOWH .line1 {
  margin-left: -2rem;
}
.cid-sGrsMHMOWH .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-sGrsMHMOWH .carousel-controls a {
  font-size: 2rem;
}
.cid-sGrsMHMOWH .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #1c1c1c;
  background: transparent;
  opacity: 0.5;
}
.cid-sGrsMHMOWH .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sGrsMHMOWH ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-sGrsMHMOWH .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #1c1c1c;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-sGrsMHMOWH .carousel-indicators .active {
  opacity: 1;
}
.cid-sGrsMHMOWH .user_text {
  color: #ffffff;
}
.cid-sGrsMHMOWH .user_desk {
  color: #cebfaf;
}
.cid-sGrsMHMOWH .title,
.cid-sGrsMHMOWH .line-align {
  color: #e4d295;
}
.cid-sGrk295ng7 {
  padding-top: 240px;
  padding-bottom: 0px;
  background-color: #dae7ea;
}
.cid-sGrk295ng7 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-sGrk295ng7 h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #cebfaf;
  margin-left: 10px;
}
.cid-sGrk295ng7 .mbr-text,
.cid-sGrk295ng7 .mbr-section-btn {
  color: #7f1933;
}
.cid-sGrk295ng7 H1 {
  color: #1c1c1c;
}
.cid-sGrk295ng7 H3 {
  color: #cc2952;
}
.cid-sGrOOVgubJ {
  background-color: #dae7ea;
}
.cid-sGrOOVgubJ .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGrOOVgubJ .carousel-item > div {
  width: 100%;
}
.cid-sGrOOVgubJ h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-sGrOOVgubJ .carousel-item.active,
.cid-sGrOOVgubJ .carousel-item-next,
.cid-sGrOOVgubJ .carousel-item-prev {
  display: flex;
}
.cid-sGrOOVgubJ .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-sGrOOVgubJ .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-sGrOOVgubJ .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-sGrOOVgubJ .carousel-controls a {
    width: 5%;
  }
}
.cid-sGrOOVgubJ .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-sGrOOVgubJ .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-sGrOOVgubJ .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-sGrOOVgubJ img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-sGrOOVgubJ li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-sGrOOVgubJ li.active {
  background-color: #dae7ea;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-sGrOOVgubJ .carousel-indicators {
  position: absolute;
  bottom: -2.3rem;
  align-items: center;
}
.cid-sGrOOVgubJ .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-sGrOOVgubJ .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-sGrOOVgubJ {
    padding-top: 0px;
    padding-bottom: 40px;
  }
  .cid-sGrOOVgubJ .col-md-3 {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-sGrOOVgubJ {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}
.cid-sGrOOVgubJ a {
  color: #fff;
  line-height: 1.5;
}
.cid-sGrOOVgubJ .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sGrOOVgubJ .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-sGrOOVgubJ .desk {
  color: #fff;
}
.cid-sGrOOVgubJ .signature {
  color: #fff;
}
.cid-sGrOOVgubJ .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-sGrOOVgubJ .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-sGrOOVgubJ .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-sGrOOVgubJ .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-sGrOOVgubJ .img-card {
    margin-top: 2rem;
  }
}
.cid-sGrk2aS30R {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-sGrk2aS30R h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-sGrk2aS30R span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-sGrk2aS30R .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-sGrk2b86Yv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-sGrk2b86Yv .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sGrk2b86Yv .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sGrk2b86Yv .col + .mbr-section-btn .btn,
.cid-sGrk2b86Yv .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sGrk2b86Yv .col + .mbr-section-btn .btn,
  .cid-sGrk2b86Yv .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sGrk2b86Yv .dragArea > *:nth-last-child(2).col,
  .cid-sGrk2b86Yv .dragArea > *:nth-last-child(2).col-auto,
  .cid-sGrk2b86Yv .col + .mbr-section-btn,
  .cid-sGrk2b86Yv .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sGrk2b86Yv .dragArea {
    flex-direction: column;
  }
}
.cid-sGrk2b86Yv .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-sGrk2b86Yv .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-sGrk2b86Yv .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sGrk2b86Yv .form-group {
  max-width: 220px;
}
.cid-sGrk2b86Yv .mbr-section-btn {
  padding-left: 0;
}
.cid-sGrk2b86Yv .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sGrk2b86Yv .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-sGrk2b86Yv .mbr-text {
  color: #444;
}
.cid-sGrk2b86Yv h5 {
  margin-bottom: 0;
}
.cid-sGrk2b86Yv .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sGrk2b86Yv .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGrk2b86Yv .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sGrk2b86Yv .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGrk2b86Yv .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGrk2b86Yv .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sGrk2b86Yv .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sGrk2b86Yv .social-list a:hover {
  opacity: 0.4;
}
.cid-sGrk2b86Yv .media-container-row > div {
  padding: 0px;
}
.cid-sGrk2b86Yv .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-sGrk2b86Yv .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-sGrk2b86Yv .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sGrk2b86Yv .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sGrk2b86Yv .social-list,
  .cid-sGrk2b86Yv .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sGrk2b86Yv h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sGrk2b86Yv .form-group {
    max-width: 180px;
  }
}
.cid-sGrk2b86Yv .links span {
  color: #9e9e9e;
}
.cid-sGrk2b86Yv .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-sGrk2b86Yv .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-sGrk2b86Yv .logo-title,
.cid-sGrk2b86Yv .logo {
  color: #7f1933;
}
.cid-sGrk2bGGdW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uVaDSrLuF7 .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-uVaDSrLuF7 .navbar .show {
  height: 100vh;
}
.cid-uVaDSrLuF7 .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uVaDSrLuF7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uVaDSrLuF7 .bottom {
  padding-bottom: 2rem;
}
.cid-uVaDSrLuF7 a {
  font-style: normal;
}
.cid-uVaDSrLuF7 .dropdown-backdrop {
  display: none;
}
.cid-uVaDSrLuF7 .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-uVaDSrLuF7 .nav-dropdown {
  padding-top: 8rem;
}
.cid-uVaDSrLuF7 .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uVaDSrLuF7 .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uVaDSrLuF7 .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uVaDSrLuF7 .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uVaDSrLuF7 .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uVaDSrLuF7 .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uVaDSrLuF7 .navbar-nav {
  width: 100%!important;
}
.cid-uVaDSrLuF7 .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVaDSrLuF7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uVaDSrLuF7 .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uVaDSrLuF7 .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-uVaDSrLuF7 .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uVaDSrLuF7 .dropdown-item:hover,
.cid-uVaDSrLuF7 .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uVaDSrLuF7 .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uVaDSrLuF7 .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uVaDSrLuF7 .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uVaDSrLuF7 .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uVaDSrLuF7 .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uVaDSrLuF7 .navbar-logo {
  margin-right: 0!important;
}
.cid-uVaDSrLuF7 .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uVaDSrLuF7 .menu-logo {
  position: fixed!important;
}
.cid-uVaDSrLuF7 .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uVaDSrLuF7 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uVaDSrLuF7 .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uVaDSrLuF7 .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-uVaDSrLuF7 .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uVaDSrLuF7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uVaDSrLuF7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uVaDSrLuF7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uVaDSrLuF7 .opened,
.cid-uVaDSrLuF7 .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uVaDSrLuF7 .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uVaDSrLuF7 .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uVaDSrLuF7 .opened,
  .cid-uVaDSrLuF7 .show,
  .cid-uVaDSrLuF7 .navbar {
    width: 100%!important;
  }
  .cid-uVaDSrLuF7 .dropdown-toggle {
    margin: auto!important;
  }
  .cid-uVaDSrLuF7 .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-uVaDSrLuF7 .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uVaDSrLuF7 .nav-item:focus,
.cid-uVaDSrLuF7 .nav-link:focus {
  outline: none;
}
.cid-uVaDSrLuF7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uVaDSrLuF7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uVaDSrLuF7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSrLuF7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uVaDSrLuF7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uVaDSrLuF7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uVaDSrLuF7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVaDSrLuF7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uVaDSrLuF7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVaDSrLuF7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uVaDSrLuF7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uVaDSrLuF7 button.navbar-toggler:focus {
  outline: none;
}
.cid-uVaDSrLuF7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uVaDSrLuF7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uVaDSrLuF7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uVaDSrLuF7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uVaDSrLuF7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uVaDSrLuF7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVaDSrLuF7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uVaDSrLuF7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uVaDSrLuF7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVaDSrLuF7 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVaDSrLuF7 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uVaDSrLuF7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uVaDSrLuF7 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-uVaDSrLuF7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uVaDSrLuF7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVaDSrLuF7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uVaDSrLuF7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uVaDSrLuF7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVaDSrLuF7 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVaDSrLuF7 img {
    height: 3.8rem !important;
  }
  .cid-uVaDSrLuF7 .btn {
    display: -webkit-flex;
  }
  .cid-uVaDSrLuF7 button.navbar-toggler {
    display: block;
  }
  .cid-uVaDSrLuF7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVaDSrLuF7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing,
  .cid-uVaDSrLuF7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing .navbar-nav,
  .cid-uVaDSrLuF7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uVaDSrLuF7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uVaDSrLuF7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uVaDSrLuF7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uVaDSrLuF7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uVaDSrLuF7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVaDSrLuF7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uVaDSrLuF7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uVaDSrLuF7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uVaDSrLuF7 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVaDSsdPaC {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/bild-4-katrin-wende-ehmer-monika-lichtenegger-carmina-burana-holzkirchen-1-654x491.webp");
}
.cid-uVaDStGosR {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uVaDStGosR h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uVaDStGosR span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uVaDStGosR .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uVaDStY3M2 {
  padding-top: 195px;
  padding-bottom: 0px;
  background-color: #e7e5e3;
}
.cid-uVaDStY3M2 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uVaDStY3M2 h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #cc2952;
  margin-left: 10px;
}
.cid-uVaDStY3M2 .mbr-text,
.cid-uVaDStY3M2 .mbr-section-btn {
  color: #7f1933;
}
.cid-uVaDStY3M2 H1 {
  color: #1c1c1c;
}
.cid-uVaDStY3M2 H3 {
  color: #1c1c1c;
}
.cid-uVaDSun5RY {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/2021-ml-konzerttrefiamme2-1-1800x2697.webp");
}
.cid-uVaDSun5RY .text-box {
  max-width: 900px;
}
.cid-uVaDSun5RY .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uVaDSun5RY .item:last-child .icon-box:before {
  display: none;
}
.cid-uVaDSun5RY .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uVaDSun5RY .item::before {
    margin-left: 2rem;
  }
}
.cid-uVaDSun5RY .last:before {
  display: none;
}
.cid-uVaDSun5RY .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uVaDSun5RY span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uVaDSun5RY span .card {
    margin-bottom: 2rem;
  }
  .cid-uVaDSun5RY span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uVaDSun5RY span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uVaDSun5RY .icon-box::before {
    top: 114%;
  }
}
.cid-uVaDSun5RY SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uVaDSun5RY .icon-text {
  color: #1c1c1c;
}
.cid-uVaDSun5RY .icon-title {
  color: #82786e;
}
.cid-uVaDSun5RY .icon-subtitle {
  color: #7f1933;
}
.cid-uVaDSun5RY .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uVaDSun5RY .mbr-text,
.cid-uVaDSun5RY .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-uVaDSv3AOT {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2021-ml-konzerttrefiamme2-1-1800x2697.webp");
}
.cid-uVaDSv3AOT .text-box {
  max-width: 900px;
}
.cid-uVaDSv3AOT .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uVaDSv3AOT .item:last-child .icon-box:before {
  display: none;
}
.cid-uVaDSv3AOT .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uVaDSv3AOT .item::before {
    margin-left: 2rem;
  }
}
.cid-uVaDSv3AOT .last:before {
  display: none;
}
.cid-uVaDSv3AOT .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uVaDSv3AOT span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uVaDSv3AOT span .card {
    margin-bottom: 2rem;
  }
  .cid-uVaDSv3AOT span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uVaDSv3AOT span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uVaDSv3AOT .icon-box::before {
    top: 114%;
  }
}
.cid-uVaDSv3AOT SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uVaDSv3AOT .icon-text {
  color: #1c1c1c;
}
.cid-uVaDSv3AOT .icon-title {
  color: #82786e;
}
.cid-uVaDSv3AOT .icon-subtitle {
  color: #7f1933;
}
.cid-uVaDSv3AOT .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uVaDSv3AOT .mbr-text,
.cid-uVaDSv3AOT .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-uVaDSvprxt {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #e7e5e3;
}
@media (max-width: 992px) {
  .cid-uVaDSvprxt {
    padding-top: 35px;
    padding-bottom: 42px;
  }
  .cid-uVaDSvprxt .box {
    height: 250px;
  }
  .cid-uVaDSvprxt .row {
    padding: 1rem !important;
  }
  .cid-uVaDSvprxt .mbr-text {
    margin-top: 30px;
    text-align: left;
  }
}
.cid-uVaDSvprxt .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #cc2952;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-uVaDSvprxt .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uVaDSvprxt .mbr-section-subtitle {
  color: #7f1933;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uVaDSvprxt .mbr-section-title {
  color: #404040;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-uVaDSvprxt .mbr-text {
  color: #606060;
}
.cid-uVaDSvprxt .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-uVaDSvprxt .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
.cid-uVaDSvprxt .mbr-list .list li {
  line-height: 1.75;
}
.cid-uVaDSvprxt .mbr-list .list li:before {
  font-weight: 900;
  color: #7f1933;
  display: inline-block;
  font-family: FontAwesome !important;
  content: "\f061";
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 10px;
}
.cid-uVaDSvprxt .mbr-section-btn {
  text-align: left;
  margin-top: 30px;
}
.cid-uVaDSvprxt .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-uVaDSvprxt .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uVaDSvprxt .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uVaDSvprxt .box {
  background-image: url("../../../assets/images/2021-ml-bently-946x532.webp");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0;
}
.cid-uVaDSvprxt .box .overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(206, 191, 175, 0.5);
}
.cid-uVaDSvprxt .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uVaDSvprxt .icon-wrap span {
  padding-left: 8px;
}
.cid-uVaDSvprxt .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #1c1c1c !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-uVaDSvprxt .mbr-media span:hover {
  opacity: 1;
  color: #ffffff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-uVaDSvprxt .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uVaDSvprxt .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-uVaDSvprxt .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-uVaDSvprxt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uVaDSvprxt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uVaDSvprxt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uVaDSvprxt a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uVaDSvprxt a.close:hover {
  color: #ffffff;
}
.cid-uVaHjzQdDa {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #dae7ea;
}
.cid-uVaHjzQdDa .container-fluid {
  padding: 0 3rem;
}
.cid-uVaHjzQdDa .mbr-section-subtitle {
  color: #cc2952;
  text-align: center;
}
.cid-uVaHjzQdDa .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uVaHjzQdDa .table-wrapper {
  margin: 0 auto;
}
.cid-uVaHjzQdDa .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-uVaHjzQdDa table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uVaHjzQdDa table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #b2ccd2;
  color: white;
  vertical-align: middle;
}
.cid-uVaHjzQdDa table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uVaHjzQdDa table.table {
  background: #e7e5e3;
}
.cid-uVaHjzQdDa .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uVaHjzQdDa .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uVaHjzQdDa .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uVaHjzQdDa .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uVaHjzQdDa .dataTables_wrapper {
  display: block;
}
.cid-uVaHjzQdDa .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uVaHjzQdDa .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uVaHjzQdDa .head-item:after,
.cid-uVaHjzQdDa .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uVaHjzQdDa .dataTables_filter {
    text-align: center;
  }
  .cid-uVaHjzQdDa .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uVaHjzQdDa .dataTables_filter {
    text-align: center;
  }
  .cid-uVaHjzQdDa .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uVaHjzQdDa .table-wrapper {
    width: 100% !important;
  }
  .cid-uVaHjzQdDa .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVaHjzQdDa table th,
  .cid-uVaHjzQdDa table td {
    padding: 0.75rem;
  }
}
.cid-uVaHjzQdDa .body-item {
  color: #1c1c1c;
  text-align: left;
}
.cid-uVaHjzQdDa .mbr-section-title,
.cid-uVaHjzQdDa .underline {
  color: #1c1c1c;
}
.cid-uVaHjzQdDa LABEL {
  color: #dae7ea;
}
.cid-uVaDSygbDS {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uVaDSygbDS h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uVaDSygbDS span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uVaDSygbDS .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uVaDSyyY59 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-uVaDSyyY59 .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-uVaDSyyY59 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uVaDSyyY59 .col + .mbr-section-btn .btn,
.cid-uVaDSyyY59 .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-uVaDSyyY59 .col + .mbr-section-btn .btn,
  .cid-uVaDSyyY59 .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-uVaDSyyY59 .dragArea > *:nth-last-child(2).col,
  .cid-uVaDSyyY59 .dragArea > *:nth-last-child(2).col-auto,
  .cid-uVaDSyyY59 .col + .mbr-section-btn,
  .cid-uVaDSyyY59 .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-uVaDSyyY59 .dragArea {
    flex-direction: column;
  }
}
.cid-uVaDSyyY59 .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-uVaDSyyY59 .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-uVaDSyyY59 .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uVaDSyyY59 .form-group {
  max-width: 220px;
}
.cid-uVaDSyyY59 .mbr-section-btn {
  padding-left: 0;
}
.cid-uVaDSyyY59 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uVaDSyyY59 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-uVaDSyyY59 .mbr-text {
  color: #444;
}
.cid-uVaDSyyY59 h5 {
  margin-bottom: 0;
}
.cid-uVaDSyyY59 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uVaDSyyY59 .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVaDSyyY59 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uVaDSyyY59 .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uVaDSyyY59 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uVaDSyyY59 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uVaDSyyY59 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uVaDSyyY59 .social-list a:hover {
  opacity: 0.4;
}
.cid-uVaDSyyY59 .media-container-row > div {
  padding: 0px;
}
.cid-uVaDSyyY59 .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-uVaDSyyY59 .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-uVaDSyyY59 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uVaDSyyY59 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uVaDSyyY59 .social-list,
  .cid-uVaDSyyY59 .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uVaDSyyY59 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uVaDSyyY59 .form-group {
    max-width: 180px;
  }
}
.cid-uVaDSyyY59 .links span {
  color: #9e9e9e;
}
.cid-uVaDSyyY59 .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-uVaDSyyY59 .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-uVaDSyyY59 .logo-title,
.cid-uVaDSyyY59 .logo {
  color: #7f1933;
}
.cid-uVaDSz1chv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uVaDSzJX68.popup-builder {
  background-color: #ffffff;
}
.cid-uVaDSzJX68.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaDSzJX68.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaDSzJX68 .modal-content,
.cid-uVaDSzJX68 .modal-dialog {
  height: auto;
}
.cid-uVaDSzJX68 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaDSzJX68 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaDSzJX68 .form-wrapper .mbr-form .form-group,
  .cid-uVaDSzJX68 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaDSzJX68 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaDSzJX68 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSzJX68 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaDSzJX68 .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaDSzJX68 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaDSzJX68 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaDSzJX68 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaDSzJX68 .modal-open {
  overflow: hidden;
}
.cid-uVaDSzJX68 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaDSzJX68 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaDSzJX68 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaDSzJX68 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaDSzJX68 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaDSzJX68 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaDSzJX68 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaDSzJX68 .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaDSzJX68 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaDSzJX68 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaDSzJX68 .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaDSzJX68 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaDSzJX68 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSzJX68 .modal-header {
    padding: 1rem;
  }
}
.cid-uVaDSzJX68 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaDSzJX68 .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaDSzJX68 .modal-header .close:focus {
  outline: none;
}
.cid-uVaDSzJX68 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaDSzJX68 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaDSzJX68 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSzJX68 .modal-body {
    padding: 1rem;
  }
}
.cid-uVaDSzJX68 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaDSzJX68 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSzJX68 .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaDSzJX68 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaDSzJX68 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaDSzJX68 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaDSzJX68 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaDSzJX68 .modal-sm {
    max-width: 300px;
  }
  .cid-uVaDSzJX68 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaDSzJX68 .modal-lg,
  .cid-uVaDSzJX68 .modal-xl {
    max-width: 800px;
  }
  .cid-uVaDSzJX68 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaDSzJX68 .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaDSzJX68 .container {
    max-width: 1140px;
  }
}
.cid-uVaDSzJX68 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaDSzJX68 .container {
    max-width: 720px;
  }
}
.cid-uVaDSzJX68 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaDSzJX68 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaDSzJX68 .form-group {
  margin-bottom: 1rem;
}
.cid-uVaDSzJX68 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaDSzJX68 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaDSzJX68 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaDSzJX68 .mbr-section-btn {
  margin: 0;
}
.cid-uVaDSzJX68 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaDSA70SU.popup-builder {
  background-color: #ffffff;
}
.cid-uVaDSA70SU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaDSA70SU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaDSA70SU .modal-content,
.cid-uVaDSA70SU .modal-dialog {
  height: auto;
}
.cid-uVaDSA70SU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaDSA70SU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaDSA70SU .form-wrapper .mbr-form .form-group,
  .cid-uVaDSA70SU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaDSA70SU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaDSA70SU .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSA70SU .mbr-text {
  text-align: center;
}
.cid-uVaDSA70SU .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaDSA70SU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaDSA70SU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaDSA70SU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaDSA70SU .modal-open {
  overflow: hidden;
}
.cid-uVaDSA70SU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaDSA70SU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaDSA70SU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaDSA70SU .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaDSA70SU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaDSA70SU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaDSA70SU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaDSA70SU .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaDSA70SU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaDSA70SU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaDSA70SU .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaDSA70SU .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaDSA70SU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSA70SU .modal-header {
    padding: 1rem;
  }
}
.cid-uVaDSA70SU .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaDSA70SU .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaDSA70SU .modal-header .close:focus {
  outline: none;
}
.cid-uVaDSA70SU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uVaDSA70SU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaDSA70SU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSA70SU .modal-body {
    padding: 1rem;
  }
}
.cid-uVaDSA70SU .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaDSA70SU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSA70SU .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaDSA70SU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaDSA70SU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaDSA70SU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaDSA70SU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaDSA70SU .modal-sm {
    max-width: 300px;
  }
  .cid-uVaDSA70SU .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaDSA70SU .modal-lg,
  .cid-uVaDSA70SU .modal-xl {
    max-width: 800px;
  }
  .cid-uVaDSA70SU .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaDSA70SU .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaDSA70SU .container {
    max-width: 1140px;
  }
}
.cid-uVaDSA70SU .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaDSA70SU .container {
    max-width: 720px;
  }
}
.cid-uVaDSA70SU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaDSA70SU .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaDSA70SU .form-group {
  margin-bottom: 1rem;
}
.cid-uVaDSA70SU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaDSA70SU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaDSA70SU .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaDSA70SU .mbr-section-btn {
  margin: 0;
}
.cid-uVaDSA70SU .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaDSAuX9a.popup-builder {
  background-color: #ffffff;
}
.cid-uVaDSAuX9a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaDSAuX9a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaDSAuX9a .modal-content,
.cid-uVaDSAuX9a .modal-dialog {
  height: auto;
}
.cid-uVaDSAuX9a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaDSAuX9a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaDSAuX9a .form-wrapper .mbr-form .form-group,
  .cid-uVaDSAuX9a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaDSAuX9a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaDSAuX9a .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSAuX9a .mbr-text {
  text-align: center;
}
.cid-uVaDSAuX9a .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaDSAuX9a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaDSAuX9a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaDSAuX9a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaDSAuX9a .modal-open {
  overflow: hidden;
}
.cid-uVaDSAuX9a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaDSAuX9a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaDSAuX9a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaDSAuX9a .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaDSAuX9a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaDSAuX9a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaDSAuX9a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaDSAuX9a .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaDSAuX9a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaDSAuX9a .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaDSAuX9a .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaDSAuX9a .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaDSAuX9a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAuX9a .modal-header {
    padding: 1rem;
  }
}
.cid-uVaDSAuX9a .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaDSAuX9a .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaDSAuX9a .modal-header .close:focus {
  outline: none;
}
.cid-uVaDSAuX9a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uVaDSAuX9a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaDSAuX9a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAuX9a .modal-body {
    padding: 1rem;
  }
}
.cid-uVaDSAuX9a .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaDSAuX9a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAuX9a .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaDSAuX9a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaDSAuX9a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaDSAuX9a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaDSAuX9a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaDSAuX9a .modal-sm {
    max-width: 300px;
  }
  .cid-uVaDSAuX9a .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaDSAuX9a .modal-lg,
  .cid-uVaDSAuX9a .modal-xl {
    max-width: 800px;
  }
  .cid-uVaDSAuX9a .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaDSAuX9a .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaDSAuX9a .container {
    max-width: 1140px;
  }
}
.cid-uVaDSAuX9a .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaDSAuX9a .container {
    max-width: 720px;
  }
}
.cid-uVaDSAuX9a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaDSAuX9a .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaDSAuX9a .form-group {
  margin-bottom: 1rem;
}
.cid-uVaDSAuX9a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaDSAuX9a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaDSAuX9a .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaDSAuX9a .mbr-section-btn {
  margin: 0;
}
.cid-uVaDSAuX9a .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaDSAUm4W.popup-builder {
  background-color: #ffffff;
}
.cid-uVaDSAUm4W.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaDSAUm4W.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaDSAUm4W .modal-content,
.cid-uVaDSAUm4W .modal-dialog {
  height: auto;
}
.cid-uVaDSAUm4W .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaDSAUm4W .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaDSAUm4W .form-wrapper .mbr-form .form-group,
  .cid-uVaDSAUm4W .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaDSAUm4W .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaDSAUm4W .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSAUm4W .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaDSAUm4W .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaDSAUm4W .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaDSAUm4W .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaDSAUm4W .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaDSAUm4W .modal-open {
  overflow: hidden;
}
.cid-uVaDSAUm4W .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaDSAUm4W .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaDSAUm4W .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaDSAUm4W .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaDSAUm4W .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaDSAUm4W .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaDSAUm4W .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaDSAUm4W .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaDSAUm4W .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaDSAUm4W .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaDSAUm4W .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaDSAUm4W .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaDSAUm4W .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAUm4W .modal-header {
    padding: 1rem;
  }
}
.cid-uVaDSAUm4W .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaDSAUm4W .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaDSAUm4W .modal-header .close:focus {
  outline: none;
}
.cid-uVaDSAUm4W .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaDSAUm4W .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaDSAUm4W .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAUm4W .modal-body {
    padding: 1rem;
  }
}
.cid-uVaDSAUm4W .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaDSAUm4W .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSAUm4W .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaDSAUm4W .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaDSAUm4W .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaDSAUm4W .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaDSAUm4W .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaDSAUm4W .modal-sm {
    max-width: 300px;
  }
  .cid-uVaDSAUm4W .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaDSAUm4W .modal-lg,
  .cid-uVaDSAUm4W .modal-xl {
    max-width: 800px;
  }
  .cid-uVaDSAUm4W .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaDSAUm4W .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaDSAUm4W .container {
    max-width: 1140px;
  }
}
.cid-uVaDSAUm4W .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaDSAUm4W .container {
    max-width: 720px;
  }
}
.cid-uVaDSAUm4W .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaDSAUm4W .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaDSAUm4W .form-group {
  margin-bottom: 1rem;
}
.cid-uVaDSAUm4W .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaDSAUm4W .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaDSAUm4W .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaDSAUm4W .mbr-section-btn {
  margin: 0;
}
.cid-uVaDSAUm4W .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaDSBjFxR.popup-builder {
  background-color: #ffffff;
}
.cid-uVaDSBjFxR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaDSBjFxR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaDSBjFxR .modal-content,
.cid-uVaDSBjFxR .modal-dialog {
  height: auto;
}
.cid-uVaDSBjFxR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaDSBjFxR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaDSBjFxR .form-wrapper .mbr-form .form-group,
  .cid-uVaDSBjFxR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaDSBjFxR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaDSBjFxR .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaDSBjFxR .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaDSBjFxR .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaDSBjFxR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaDSBjFxR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaDSBjFxR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaDSBjFxR .modal-open {
  overflow: hidden;
}
.cid-uVaDSBjFxR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaDSBjFxR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaDSBjFxR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaDSBjFxR .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaDSBjFxR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaDSBjFxR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaDSBjFxR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaDSBjFxR .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaDSBjFxR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaDSBjFxR .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaDSBjFxR .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaDSBjFxR .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaDSBjFxR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSBjFxR .modal-header {
    padding: 1rem;
  }
}
.cid-uVaDSBjFxR .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaDSBjFxR .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaDSBjFxR .modal-header .close:focus {
  outline: none;
}
.cid-uVaDSBjFxR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaDSBjFxR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaDSBjFxR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSBjFxR .modal-body {
    padding: 1rem;
  }
}
.cid-uVaDSBjFxR .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaDSBjFxR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaDSBjFxR .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaDSBjFxR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaDSBjFxR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaDSBjFxR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaDSBjFxR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaDSBjFxR .modal-sm {
    max-width: 300px;
  }
  .cid-uVaDSBjFxR .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaDSBjFxR .modal-lg,
  .cid-uVaDSBjFxR .modal-xl {
    max-width: 800px;
  }
  .cid-uVaDSBjFxR .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaDSBjFxR .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaDSBjFxR .container {
    max-width: 1140px;
  }
}
.cid-uVaDSBjFxR .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaDSBjFxR .container {
    max-width: 720px;
  }
}
.cid-uVaDSBjFxR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaDSBjFxR .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaDSBjFxR .form-group {
  margin-bottom: 1rem;
}
.cid-uVaDSBjFxR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaDSBjFxR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaDSBjFxR .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaDSBjFxR .mbr-section-btn {
  margin: 0;
}
.cid-uVaDSBjFxR .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaF7ik1JB .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-uVaF7ik1JB .navbar .show {
  height: 100vh;
}
.cid-uVaF7ik1JB .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uVaF7ik1JB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uVaF7ik1JB .bottom {
  padding-bottom: 2rem;
}
.cid-uVaF7ik1JB a {
  font-style: normal;
}
.cid-uVaF7ik1JB .dropdown-backdrop {
  display: none;
}
.cid-uVaF7ik1JB .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-uVaF7ik1JB .nav-dropdown {
  padding-top: 8rem;
}
.cid-uVaF7ik1JB .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uVaF7ik1JB .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uVaF7ik1JB .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uVaF7ik1JB .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uVaF7ik1JB .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uVaF7ik1JB .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uVaF7ik1JB .navbar-nav {
  width: 100%!important;
}
.cid-uVaF7ik1JB .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uVaF7ik1JB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uVaF7ik1JB .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uVaF7ik1JB .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-uVaF7ik1JB .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uVaF7ik1JB .dropdown-item:hover,
.cid-uVaF7ik1JB .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uVaF7ik1JB .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uVaF7ik1JB .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uVaF7ik1JB .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uVaF7ik1JB .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uVaF7ik1JB .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uVaF7ik1JB .navbar-logo {
  margin-right: 0!important;
}
.cid-uVaF7ik1JB .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uVaF7ik1JB .menu-logo {
  position: fixed!important;
}
.cid-uVaF7ik1JB .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uVaF7ik1JB .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uVaF7ik1JB .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uVaF7ik1JB .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-uVaF7ik1JB .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uVaF7ik1JB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uVaF7ik1JB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uVaF7ik1JB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uVaF7ik1JB .opened,
.cid-uVaF7ik1JB .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uVaF7ik1JB .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uVaF7ik1JB .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uVaF7ik1JB .opened,
  .cid-uVaF7ik1JB .show,
  .cid-uVaF7ik1JB .navbar {
    width: 100%!important;
  }
  .cid-uVaF7ik1JB .dropdown-toggle {
    margin: auto!important;
  }
  .cid-uVaF7ik1JB .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-uVaF7ik1JB .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uVaF7ik1JB .nav-item:focus,
.cid-uVaF7ik1JB .nav-link:focus {
  outline: none;
}
.cid-uVaF7ik1JB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uVaF7ik1JB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uVaF7ik1JB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7ik1JB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uVaF7ik1JB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uVaF7ik1JB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uVaF7ik1JB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVaF7ik1JB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uVaF7ik1JB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVaF7ik1JB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uVaF7ik1JB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uVaF7ik1JB button.navbar-toggler:focus {
  outline: none;
}
.cid-uVaF7ik1JB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uVaF7ik1JB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uVaF7ik1JB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uVaF7ik1JB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uVaF7ik1JB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uVaF7ik1JB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVaF7ik1JB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uVaF7ik1JB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uVaF7ik1JB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uVaF7ik1JB .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVaF7ik1JB .collapsed .btn {
  display: -webkit-flex;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uVaF7ik1JB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uVaF7ik1JB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uVaF7ik1JB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-uVaF7ik1JB .collapsed button.navbar-toggler {
  display: block;
}
.cid-uVaF7ik1JB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uVaF7ik1JB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uVaF7ik1JB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uVaF7ik1JB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVaF7ik1JB .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVaF7ik1JB img {
    height: 3.8rem !important;
  }
  .cid-uVaF7ik1JB .btn {
    display: -webkit-flex;
  }
  .cid-uVaF7ik1JB button.navbar-toggler {
    display: block;
  }
  .cid-uVaF7ik1JB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uVaF7ik1JB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing,
  .cid-uVaF7ik1JB .navbar-collapse.show {
    display: block !important;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing .navbar-nav,
  .cid-uVaF7ik1JB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uVaF7ik1JB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uVaF7ik1JB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing .navbar-buttons,
  .cid-uVaF7ik1JB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uVaF7ik1JB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uVaF7ik1JB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uVaF7ik1JB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uVaF7ik1JB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uVaF7ik1JB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uVaF7ik1JB .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVaF7iOo2y {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/dido-schweinfurt-144-847x564.webp");
}
.cid-uVaF7lnjpv {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uVaF7lnjpv h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uVaF7lnjpv span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uVaF7lnjpv .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uVaF7lMtJ0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f3f7;
}
@media (max-width: 992px) {
  .cid-uVaF7lMtJ0 {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-uVaF7lMtJ0 .box {
    height: 250px;
  }
  .cid-uVaF7lMtJ0 .row {
    padding: 1rem !important;
  }
  .cid-uVaF7lMtJ0 .mbr-text {
    margin-top: 30px;
    text-align: left;
  }
}
.cid-uVaF7lMtJ0 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #cc2952;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-uVaF7lMtJ0 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uVaF7lMtJ0 .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uVaF7lMtJ0 .mbr-section-title {
  color: #bca65b;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-uVaF7lMtJ0 .mbr-text {
  color: #606060;
}
.cid-uVaF7lMtJ0 .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-uVaF7lMtJ0 .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
.cid-uVaF7lMtJ0 .mbr-list .list li {
  line-height: 1.75;
}
.cid-uVaF7lMtJ0 .mbr-list .list li:before {
  font-weight: 900;
  color: #b2ccd2;
  display: inline-block;
  font-family: FontAwesome !important;
  content: "\f061";
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 10px;
}
.cid-uVaF7lMtJ0 .mbr-section-btn {
  text-align: left;
  margin-top: 30px;
}
.cid-uVaF7lMtJ0 .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-uVaF7lMtJ0 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uVaF7lMtJ0 .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uVaF7lMtJ0 .box {
  background-image: url("../../../assets/images/2013-dido-schweinfurt-0245-kopie-1080x719.webp");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0;
}
.cid-uVaF7lMtJ0 .box .overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uVaF7lMtJ0 .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uVaF7lMtJ0 .icon-wrap span {
  padding-left: 8px;
}
.cid-uVaF7lMtJ0 .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-uVaF7lMtJ0 .mbr-media span:hover {
  opacity: 1;
  color: #000000 !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-uVaF7lMtJ0 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uVaF7lMtJ0 .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-uVaF7lMtJ0 .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-uVaF7lMtJ0 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uVaF7lMtJ0 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uVaF7lMtJ0 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uVaF7lMtJ0 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uVaF7lMtJ0 a.close:hover {
  color: #ffffff;
}
.cid-uVaF7mdOPR {
  padding-top: 195px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
.cid-uVaF7mdOPR h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uVaF7mdOPR h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #c4bc3b;
  margin-left: 10px;
}
.cid-uVaF7mdOPR .mbr-text,
.cid-uVaF7mdOPR .mbr-section-btn {
  color: #c4bc3b;
}
.cid-uVaF7mdOPR H1 {
  color: #1c1c1c;
}
.cid-uVaF7mdOPR H3 {
  color: #787324;
}
.cid-uVaF7mqKwL {
  background-color: #f2f3f7;
}
.cid-uVaF7mqKwL h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-uVaF7mqKwL .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-uVaF7mqKwL .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uVaF7mqKwL .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-uVaF7mqKwL img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uVaF7mqKwL li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-uVaF7mqKwL li.active {
  background-color: #f2f3f7;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-uVaF7mqKwL a {
  color: #fff;
  line-height: 1.5;
}
.cid-uVaF7mqKwL .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uVaF7mqKwL .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uVaF7mqKwL .desk {
  color: #fff;
}
.cid-uVaF7mqKwL .signature {
  color: #fff;
}
.cid-uVaF7mqKwL .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-uVaF7mqKwL .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-uVaF7mqKwL .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-uVaF7mqKwL .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uVaF7mqKwL .img-card {
    margin-top: 2rem;
  }
}
.cid-uVaF7mU6DN {
  background-color: #f2f3f7;
}
.cid-uVaF7mU6DN .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uVaF7mU6DN .carousel-item > div {
  width: 100%;
}
.cid-uVaF7mU6DN h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-uVaF7mU6DN .carousel-item.active,
.cid-uVaF7mU6DN .carousel-item-next,
.cid-uVaF7mU6DN .carousel-item-prev {
  display: flex;
}
.cid-uVaF7mU6DN .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uVaF7mU6DN .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uVaF7mU6DN .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uVaF7mU6DN .carousel-controls a {
    width: 5%;
  }
}
.cid-uVaF7mU6DN .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-uVaF7mU6DN .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uVaF7mU6DN .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-uVaF7mU6DN img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uVaF7mU6DN li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-uVaF7mU6DN li.active {
  background-color: #f2f3f7;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-uVaF7mU6DN .carousel-indicators {
  position: absolute;
  bottom: -2.3rem;
  align-items: center;
}
.cid-uVaF7mU6DN .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uVaF7mU6DN .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uVaF7mU6DN {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-uVaF7mU6DN .col-md-3 {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-uVaF7mU6DN {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
.cid-uVaF7mU6DN a {
  color: #fff;
  line-height: 1.5;
}
.cid-uVaF7mU6DN .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uVaF7mU6DN .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uVaF7mU6DN .desk {
  color: #fff;
}
.cid-uVaF7mU6DN .signature {
  color: #fff;
}
.cid-uVaF7mU6DN .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-uVaF7mU6DN .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-uVaF7mU6DN .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-uVaF7mU6DN .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uVaF7mU6DN .img-card {
    margin-top: 2rem;
  }
}
.cid-uVaF7nexyq {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #f2f3f7;
}
.cid-uVaF7nexyq .carousel {
  z-index: 0;
}
.cid-uVaF7nexyq .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uVaF7nexyq .carousel-item.active,
.cid-uVaF7nexyq .carousel-item-next,
.cid-uVaF7nexyq .carousel-item-prev {
  display: flex;
}
.cid-uVaF7nexyq .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-uVaF7nexyq .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-uVaF7nexyq .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-uVaF7nexyq .line1 {
  margin-left: -2rem;
}
.cid-uVaF7nexyq .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-uVaF7nexyq .carousel-controls a {
  font-size: 2rem;
}
.cid-uVaF7nexyq .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #b2ccd2;
  background: transparent;
  opacity: 0.5;
}
.cid-uVaF7nexyq .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uVaF7nexyq ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-uVaF7nexyq .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #b2ccd2;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-uVaF7nexyq .carousel-indicators .active {
  opacity: 1;
}
.cid-uVaF7nexyq .user_text {
  color: #1c1c1c;
}
.cid-uVaF7nexyq .user_desk {
  color: #bca65b;
}
.cid-uVaF7nexyq .title,
.cid-uVaF7nexyq .line-align {
  color: #bca65b;
}
.cid-uVaH2OpANc {
  padding-top: 90px;
  padding-bottom: 105px;
  background-color: #dae7ea;
}
.cid-uVaH2OpANc .container-fluid {
  padding: 0 3rem;
}
.cid-uVaH2OpANc .mbr-section-subtitle {
  color: #cc2952;
  text-align: center;
}
.cid-uVaH2OpANc .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uVaH2OpANc .table-wrapper {
  margin: 0 auto;
}
.cid-uVaH2OpANc .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-uVaH2OpANc table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uVaH2OpANc table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #b2ccd2;
  color: white;
  vertical-align: middle;
}
.cid-uVaH2OpANc table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uVaH2OpANc table.table {
  background: #e7e5e3;
}
.cid-uVaH2OpANc .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-uVaH2OpANc .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uVaH2OpANc .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-uVaH2OpANc .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uVaH2OpANc .dataTables_wrapper {
  display: block;
}
.cid-uVaH2OpANc .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-uVaH2OpANc .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uVaH2OpANc .head-item:after,
.cid-uVaH2OpANc .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uVaH2OpANc .dataTables_filter {
    text-align: center;
  }
  .cid-uVaH2OpANc .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uVaH2OpANc .dataTables_filter {
    text-align: center;
  }
  .cid-uVaH2OpANc .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uVaH2OpANc .table-wrapper {
    width: 100% !important;
  }
  .cid-uVaH2OpANc .container-fluid {
    padding: 0 1rem;
  }
  .cid-uVaH2OpANc table th,
  .cid-uVaH2OpANc table td {
    padding: 0.75rem;
  }
}
.cid-uVaH2OpANc .body-item {
  color: #1c1c1c;
  text-align: left;
}
.cid-uVaH2OpANc .mbr-section-title,
.cid-uVaH2OpANc .underline {
  color: #1c1c1c;
}
.cid-uVaH2OpANc LABEL {
  color: #dae7ea;
}
.cid-uVaW0Ly4ON {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/ml-screenshotpoppea2016-2000x1155.webp");
}
.cid-uVaW0Ly4ON .link-align {
  width: 100%;
}
.cid-uVaW0Ly4ON .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-uVaW0Ly4ON .mbr-text,
.cid-uVaW0Ly4ON .link-align {
  color: #ffffff;
}
.cid-uVaW0Ly4ON .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 100px;
  background-color: #ffffff;
  height: 100px;
  cursor: pointer;
}
.cid-uVaW0Ly4ON .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-uVaW0Ly4ON .icon-wrap span {
  padding-left: 4px;
}
.cid-uVaW0Ly4ON .mbr-media span {
  font-size: 1.6rem;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #000000 !important;
}
.cid-uVaW0Ly4ON .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uVaW0Ly4ON .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uVaW0Ly4ON .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uVaW0Ly4ON .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uVaW0Ly4ON a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uVaW0Ly4ON a.close:hover {
  color: #ffffff;
}
.cid-uVaF7o12Oe {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uVaF7o12Oe h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uVaF7o12Oe span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uVaF7o12Oe .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uVaF7ohaFP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-uVaF7ohaFP .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-uVaF7ohaFP .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uVaF7ohaFP .col + .mbr-section-btn .btn,
.cid-uVaF7ohaFP .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-uVaF7ohaFP .col + .mbr-section-btn .btn,
  .cid-uVaF7ohaFP .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-uVaF7ohaFP .dragArea > *:nth-last-child(2).col,
  .cid-uVaF7ohaFP .dragArea > *:nth-last-child(2).col-auto,
  .cid-uVaF7ohaFP .col + .mbr-section-btn,
  .cid-uVaF7ohaFP .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-uVaF7ohaFP .dragArea {
    flex-direction: column;
  }
}
.cid-uVaF7ohaFP .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-uVaF7ohaFP .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-uVaF7ohaFP .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uVaF7ohaFP .form-group {
  max-width: 220px;
}
.cid-uVaF7ohaFP .mbr-section-btn {
  padding-left: 0;
}
.cid-uVaF7ohaFP .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uVaF7ohaFP .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-uVaF7ohaFP .mbr-text {
  color: #444;
}
.cid-uVaF7ohaFP h5 {
  margin-bottom: 0;
}
.cid-uVaF7ohaFP .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uVaF7ohaFP .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uVaF7ohaFP .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uVaF7ohaFP .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uVaF7ohaFP .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uVaF7ohaFP .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uVaF7ohaFP .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uVaF7ohaFP .social-list a:hover {
  opacity: 0.4;
}
.cid-uVaF7ohaFP .media-container-row > div {
  padding: 0px;
}
.cid-uVaF7ohaFP .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-uVaF7ohaFP .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-uVaF7ohaFP .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uVaF7ohaFP .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uVaF7ohaFP .social-list,
  .cid-uVaF7ohaFP .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uVaF7ohaFP h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uVaF7ohaFP .form-group {
    max-width: 180px;
  }
}
.cid-uVaF7ohaFP .links span {
  color: #9e9e9e;
}
.cid-uVaF7ohaFP .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-uVaF7ohaFP .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-uVaF7ohaFP .logo-title,
.cid-uVaF7ohaFP .logo {
  color: #7f1933;
}
.cid-uVaF7oM62B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uVaF7poiPT.popup-builder {
  background-color: #ffffff;
}
.cid-uVaF7poiPT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaF7poiPT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaF7poiPT .modal-content,
.cid-uVaF7poiPT .modal-dialog {
  height: auto;
}
.cid-uVaF7poiPT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaF7poiPT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaF7poiPT .form-wrapper .mbr-form .form-group,
  .cid-uVaF7poiPT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaF7poiPT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaF7poiPT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7poiPT .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaF7poiPT .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaF7poiPT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaF7poiPT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaF7poiPT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaF7poiPT .modal-open {
  overflow: hidden;
}
.cid-uVaF7poiPT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaF7poiPT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaF7poiPT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaF7poiPT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaF7poiPT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaF7poiPT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaF7poiPT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaF7poiPT .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaF7poiPT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaF7poiPT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaF7poiPT .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaF7poiPT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaF7poiPT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7poiPT .modal-header {
    padding: 1rem;
  }
}
.cid-uVaF7poiPT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaF7poiPT .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaF7poiPT .modal-header .close:focus {
  outline: none;
}
.cid-uVaF7poiPT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaF7poiPT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaF7poiPT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7poiPT .modal-body {
    padding: 1rem;
  }
}
.cid-uVaF7poiPT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaF7poiPT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7poiPT .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaF7poiPT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaF7poiPT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaF7poiPT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaF7poiPT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaF7poiPT .modal-sm {
    max-width: 300px;
  }
  .cid-uVaF7poiPT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaF7poiPT .modal-lg,
  .cid-uVaF7poiPT .modal-xl {
    max-width: 800px;
  }
  .cid-uVaF7poiPT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaF7poiPT .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaF7poiPT .container {
    max-width: 1140px;
  }
}
.cid-uVaF7poiPT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaF7poiPT .container {
    max-width: 720px;
  }
}
.cid-uVaF7poiPT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaF7poiPT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaF7poiPT .form-group {
  margin-bottom: 1rem;
}
.cid-uVaF7poiPT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaF7poiPT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaF7poiPT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaF7poiPT .mbr-section-btn {
  margin: 0;
}
.cid-uVaF7poiPT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaF7pLwmv.popup-builder {
  background-color: #ffffff;
}
.cid-uVaF7pLwmv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaF7pLwmv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaF7pLwmv .modal-content,
.cid-uVaF7pLwmv .modal-dialog {
  height: auto;
}
.cid-uVaF7pLwmv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaF7pLwmv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaF7pLwmv .form-wrapper .mbr-form .form-group,
  .cid-uVaF7pLwmv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaF7pLwmv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaF7pLwmv .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7pLwmv .mbr-text {
  text-align: center;
}
.cid-uVaF7pLwmv .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaF7pLwmv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaF7pLwmv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaF7pLwmv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaF7pLwmv .modal-open {
  overflow: hidden;
}
.cid-uVaF7pLwmv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaF7pLwmv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaF7pLwmv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaF7pLwmv .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaF7pLwmv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaF7pLwmv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaF7pLwmv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaF7pLwmv .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaF7pLwmv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaF7pLwmv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaF7pLwmv .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaF7pLwmv .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaF7pLwmv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7pLwmv .modal-header {
    padding: 1rem;
  }
}
.cid-uVaF7pLwmv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaF7pLwmv .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaF7pLwmv .modal-header .close:focus {
  outline: none;
}
.cid-uVaF7pLwmv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uVaF7pLwmv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaF7pLwmv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7pLwmv .modal-body {
    padding: 1rem;
  }
}
.cid-uVaF7pLwmv .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaF7pLwmv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7pLwmv .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaF7pLwmv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaF7pLwmv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaF7pLwmv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaF7pLwmv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaF7pLwmv .modal-sm {
    max-width: 300px;
  }
  .cid-uVaF7pLwmv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaF7pLwmv .modal-lg,
  .cid-uVaF7pLwmv .modal-xl {
    max-width: 800px;
  }
  .cid-uVaF7pLwmv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaF7pLwmv .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaF7pLwmv .container {
    max-width: 1140px;
  }
}
.cid-uVaF7pLwmv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaF7pLwmv .container {
    max-width: 720px;
  }
}
.cid-uVaF7pLwmv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaF7pLwmv .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaF7pLwmv .form-group {
  margin-bottom: 1rem;
}
.cid-uVaF7pLwmv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaF7pLwmv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaF7pLwmv .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaF7pLwmv .mbr-section-btn {
  margin: 0;
}
.cid-uVaF7pLwmv .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaF7q9bY0.popup-builder {
  background-color: #ffffff;
}
.cid-uVaF7q9bY0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaF7q9bY0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaF7q9bY0 .modal-content,
.cid-uVaF7q9bY0 .modal-dialog {
  height: auto;
}
.cid-uVaF7q9bY0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaF7q9bY0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaF7q9bY0 .form-wrapper .mbr-form .form-group,
  .cid-uVaF7q9bY0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaF7q9bY0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaF7q9bY0 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7q9bY0 .mbr-text {
  text-align: center;
}
.cid-uVaF7q9bY0 .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaF7q9bY0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaF7q9bY0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaF7q9bY0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaF7q9bY0 .modal-open {
  overflow: hidden;
}
.cid-uVaF7q9bY0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaF7q9bY0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaF7q9bY0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaF7q9bY0 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaF7q9bY0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaF7q9bY0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaF7q9bY0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaF7q9bY0 .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaF7q9bY0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaF7q9bY0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaF7q9bY0 .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaF7q9bY0 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaF7q9bY0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7q9bY0 .modal-header {
    padding: 1rem;
  }
}
.cid-uVaF7q9bY0 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaF7q9bY0 .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaF7q9bY0 .modal-header .close:focus {
  outline: none;
}
.cid-uVaF7q9bY0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uVaF7q9bY0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaF7q9bY0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7q9bY0 .modal-body {
    padding: 1rem;
  }
}
.cid-uVaF7q9bY0 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaF7q9bY0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7q9bY0 .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaF7q9bY0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaF7q9bY0 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaF7q9bY0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaF7q9bY0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaF7q9bY0 .modal-sm {
    max-width: 300px;
  }
  .cid-uVaF7q9bY0 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaF7q9bY0 .modal-lg,
  .cid-uVaF7q9bY0 .modal-xl {
    max-width: 800px;
  }
  .cid-uVaF7q9bY0 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaF7q9bY0 .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaF7q9bY0 .container {
    max-width: 1140px;
  }
}
.cid-uVaF7q9bY0 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaF7q9bY0 .container {
    max-width: 720px;
  }
}
.cid-uVaF7q9bY0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaF7q9bY0 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaF7q9bY0 .form-group {
  margin-bottom: 1rem;
}
.cid-uVaF7q9bY0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaF7q9bY0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaF7q9bY0 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaF7q9bY0 .mbr-section-btn {
  margin: 0;
}
.cid-uVaF7q9bY0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaF7qvmv5.popup-builder {
  background-color: #ffffff;
}
.cid-uVaF7qvmv5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaF7qvmv5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaF7qvmv5 .modal-content,
.cid-uVaF7qvmv5 .modal-dialog {
  height: auto;
}
.cid-uVaF7qvmv5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaF7qvmv5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaF7qvmv5 .form-wrapper .mbr-form .form-group,
  .cid-uVaF7qvmv5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaF7qvmv5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaF7qvmv5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7qvmv5 .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaF7qvmv5 .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaF7qvmv5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaF7qvmv5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaF7qvmv5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaF7qvmv5 .modal-open {
  overflow: hidden;
}
.cid-uVaF7qvmv5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaF7qvmv5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaF7qvmv5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaF7qvmv5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaF7qvmv5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaF7qvmv5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaF7qvmv5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaF7qvmv5 .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaF7qvmv5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaF7qvmv5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaF7qvmv5 .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaF7qvmv5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaF7qvmv5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qvmv5 .modal-header {
    padding: 1rem;
  }
}
.cid-uVaF7qvmv5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaF7qvmv5 .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaF7qvmv5 .modal-header .close:focus {
  outline: none;
}
.cid-uVaF7qvmv5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaF7qvmv5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaF7qvmv5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qvmv5 .modal-body {
    padding: 1rem;
  }
}
.cid-uVaF7qvmv5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaF7qvmv5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qvmv5 .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaF7qvmv5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaF7qvmv5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaF7qvmv5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaF7qvmv5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaF7qvmv5 .modal-sm {
    max-width: 300px;
  }
  .cid-uVaF7qvmv5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaF7qvmv5 .modal-lg,
  .cid-uVaF7qvmv5 .modal-xl {
    max-width: 800px;
  }
  .cid-uVaF7qvmv5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaF7qvmv5 .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaF7qvmv5 .container {
    max-width: 1140px;
  }
}
.cid-uVaF7qvmv5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaF7qvmv5 .container {
    max-width: 720px;
  }
}
.cid-uVaF7qvmv5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaF7qvmv5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaF7qvmv5 .form-group {
  margin-bottom: 1rem;
}
.cid-uVaF7qvmv5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaF7qvmv5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaF7qvmv5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaF7qvmv5 .mbr-section-btn {
  margin: 0;
}
.cid-uVaF7qvmv5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uVaF7qSwGe.popup-builder {
  background-color: #ffffff;
}
.cid-uVaF7qSwGe.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uVaF7qSwGe.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uVaF7qSwGe .modal-content,
.cid-uVaF7qSwGe .modal-dialog {
  height: auto;
}
.cid-uVaF7qSwGe .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uVaF7qSwGe .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uVaF7qSwGe .form-wrapper .mbr-form .form-group,
  .cid-uVaF7qSwGe .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uVaF7qSwGe .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uVaF7qSwGe .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uVaF7qSwGe .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uVaF7qSwGe .pt-0 {
  padding-top: 0 !important;
}
.cid-uVaF7qSwGe .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uVaF7qSwGe .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uVaF7qSwGe .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uVaF7qSwGe .modal-open {
  overflow: hidden;
}
.cid-uVaF7qSwGe .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uVaF7qSwGe .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uVaF7qSwGe .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uVaF7qSwGe .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uVaF7qSwGe .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uVaF7qSwGe .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uVaF7qSwGe .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uVaF7qSwGe .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uVaF7qSwGe .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uVaF7qSwGe .modal-backdrop.fade {
  opacity: 0;
}
.cid-uVaF7qSwGe .modal-backdrop.show {
  opacity: .5;
}
.cid-uVaF7qSwGe .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uVaF7qSwGe .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qSwGe .modal-header {
    padding: 1rem;
  }
}
.cid-uVaF7qSwGe .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uVaF7qSwGe .modal-header .close:hover {
  opacity: 1;
}
.cid-uVaF7qSwGe .modal-header .close:focus {
  outline: none;
}
.cid-uVaF7qSwGe .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uVaF7qSwGe .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uVaF7qSwGe .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qSwGe .modal-body {
    padding: 1rem;
  }
}
.cid-uVaF7qSwGe .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVaF7qSwGe .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVaF7qSwGe .modal-footer {
    padding: 1rem;
  }
}
.cid-uVaF7qSwGe .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uVaF7qSwGe .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uVaF7qSwGe .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uVaF7qSwGe .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uVaF7qSwGe .modal-sm {
    max-width: 300px;
  }
  .cid-uVaF7qSwGe .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uVaF7qSwGe .modal-lg,
  .cid-uVaF7qSwGe .modal-xl {
    max-width: 800px;
  }
  .cid-uVaF7qSwGe .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uVaF7qSwGe .modal-xl {
    max-width: 1140px;
  }
  .cid-uVaF7qSwGe .container {
    max-width: 1140px;
  }
}
.cid-uVaF7qSwGe .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uVaF7qSwGe .container {
    max-width: 720px;
  }
}
.cid-uVaF7qSwGe .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uVaF7qSwGe .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uVaF7qSwGe .form-group {
  margin-bottom: 1rem;
}
.cid-uVaF7qSwGe .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uVaF7qSwGe .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uVaF7qSwGe .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uVaF7qSwGe .mbr-section-btn {
  margin: 0;
}
.cid-uVaF7qSwGe .mbr-section-btn .btn {
  margin: 0;
}
.cid-sGDd9q4h8Z .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-sGDd9q4h8Z .navbar .show {
  height: 100vh;
}
.cid-sGDd9q4h8Z .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sGDd9q4h8Z .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sGDd9q4h8Z .bottom {
  padding-bottom: 2rem;
}
.cid-sGDd9q4h8Z a {
  font-style: normal;
}
.cid-sGDd9q4h8Z .dropdown-backdrop {
  display: none;
}
.cid-sGDd9q4h8Z .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-sGDd9q4h8Z .nav-dropdown {
  padding-top: 8rem;
}
.cid-sGDd9q4h8Z .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sGDd9q4h8Z .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sGDd9q4h8Z .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sGDd9q4h8Z .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sGDd9q4h8Z .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sGDd9q4h8Z .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-sGDd9q4h8Z .navbar-nav {
  width: 100%!important;
}
.cid-sGDd9q4h8Z .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sGDd9q4h8Z .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sGDd9q4h8Z .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sGDd9q4h8Z .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-sGDd9q4h8Z .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-sGDd9q4h8Z .dropdown-item:hover,
.cid-sGDd9q4h8Z .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sGDd9q4h8Z .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sGDd9q4h8Z .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sGDd9q4h8Z .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sGDd9q4h8Z .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sGDd9q4h8Z .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sGDd9q4h8Z .navbar-logo {
  margin-right: 0!important;
}
.cid-sGDd9q4h8Z .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sGDd9q4h8Z .menu-logo {
  position: fixed!important;
}
.cid-sGDd9q4h8Z .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sGDd9q4h8Z .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sGDd9q4h8Z .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sGDd9q4h8Z .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-sGDd9q4h8Z .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sGDd9q4h8Z .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sGDd9q4h8Z .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sGDd9q4h8Z .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sGDd9q4h8Z .opened,
.cid-sGDd9q4h8Z .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sGDd9q4h8Z .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sGDd9q4h8Z .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sGDd9q4h8Z .opened,
  .cid-sGDd9q4h8Z .show,
  .cid-sGDd9q4h8Z .navbar {
    width: 100%!important;
  }
  .cid-sGDd9q4h8Z .dropdown-toggle {
    margin: auto!important;
  }
  .cid-sGDd9q4h8Z .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-sGDd9q4h8Z .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sGDd9q4h8Z .nav-item:focus,
.cid-sGDd9q4h8Z .nav-link:focus {
  outline: none;
}
.cid-sGDd9q4h8Z .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sGDd9q4h8Z .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sGDd9q4h8Z .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGDd9q4h8Z .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sGDd9q4h8Z .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sGDd9q4h8Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sGDd9q4h8Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGDd9q4h8Z .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sGDd9q4h8Z .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGDd9q4h8Z .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sGDd9q4h8Z button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sGDd9q4h8Z button.navbar-toggler:focus {
  outline: none;
}
.cid-sGDd9q4h8Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-sGDd9q4h8Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGDd9q4h8Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGDd9q4h8Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGDd9q4h8Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGDd9q4h8Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGDd9q4h8Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGDd9q4h8Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGDd9q4h8Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGDd9q4h8Z .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sGDd9q4h8Z .collapsed .btn {
  display: -webkit-flex;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sGDd9q4h8Z .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sGDd9q4h8Z .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-sGDd9q4h8Z .collapsed button.navbar-toggler {
  display: block;
}
.cid-sGDd9q4h8Z .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sGDd9q4h8Z .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sGDd9q4h8Z .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sGDd9q4h8Z .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sGDd9q4h8Z .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sGDd9q4h8Z img {
    height: 3.8rem !important;
  }
  .cid-sGDd9q4h8Z .btn {
    display: -webkit-flex;
  }
  .cid-sGDd9q4h8Z button.navbar-toggler {
    display: block;
  }
  .cid-sGDd9q4h8Z .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sGDd9q4h8Z .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing,
  .cid-sGDd9q4h8Z .navbar-collapse.show {
    display: block !important;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing .navbar-nav,
  .cid-sGDd9q4h8Z .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sGDd9q4h8Z .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sGDd9q4h8Z .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing .navbar-buttons,
  .cid-sGDd9q4h8Z .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sGDd9q4h8Z .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sGDd9q4h8Z .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sGDd9q4h8Z .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sGDd9q4h8Z .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sGDd9q4h8Z .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sGDd9q4h8Z .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uVaIrl1Uoe {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/mov-3716-1800x1202.webp");
}
.cid-uVaIs29YCy {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uVaIs29YCy h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uVaIs29YCy span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uVaIs29YCy .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-sIQ9IXVAX9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e7e5e3;
}
.cid-sIQ9IXVAX9 h3 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sIQ9IXVAX9 .pt-4 {
  padding-top: 2rem!important;
}
.cid-sIQ9IXVAX9 .card-img {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.cid-sIQ9IXVAX9 p {
  color: #767676;
  text-align: left;
}
.cid-sIQ9IXVAX9 .card-wrapper {
  height: 100%;
}
.cid-sIQ9IXVAX9 .container-fluid {
  max-width: 1600px;
}
.cid-sIQ9IXVAX9 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sIQ9IXVAX9 h4 {
  margin: 0;
}
.cid-sIQ9IXVAX9 .icons {
  position: absolute;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  left: 30px;
  bottom: 20px;
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sIQ9IXVAX9 .mbr-iconfont {
  color: #7f1933;
  display: block;
  transition: all 0.3s;
  padding-bottom: 10px;
}
.cid-sIQ9IXVAX9 .mbr-iconfont:hover {
  color: #cccccc;
}
.cid-sIQ9IXVAX9 .card:hover h3 {
  background-size: 100% 100%;
}
.cid-sIQ9IXVAX9 .card:hover .icons {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sIQ9IXVAX9 .icons {
    opacity: 1;
  }
}
.cid-sIQ9IXVAX9 .name,
.cid-sIQ9IXVAX9 .title-align {
  text-align: center;
  color: #7f1933;
}
.cid-sIQ9IXVAX9 .card-title {
  text-align: center;
}
.cid-sIQ9IXVAX9 .maintitle {
  text-align: center;
  color: #7f1933;
}
.cid-th8OvVo2nE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #e7e5e3;
}
.cid-th8OvVo2nE .card-box {
  background-color: #dae7ea;
  padding: 4rem 2rem;
}
.cid-th8OvVo2nE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-th8OvVo2nE p {
  color: #767676;
  text-align: left;
}
.cid-th8OvVo2nE .card-wrapper {
  border: 1px solid #dae7ea;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-th8OvVo2nE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-th8OvVo2nE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-th8OvVo2nE h3 {
  position: relative;
  margin-top: 2rem;
  letter-spacing: 2px;
}
.cid-th8OvVo2nE h3:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #dae7ea;
  margin-left: 10px;
}
.cid-th8OvVo2nE h3:hover:after {
  margin-left: -15px;
}
.cid-th8OvVo2nE P {
  text-align: center;
}
.cid-th8OvVo2nE .card-title {
  text-align: center;
  color: #7f1933;
}
.cid-th8OvVo2nE H3 {
  text-align: center;
}
.cid-th8OvVo2nE .number {
  text-align: center;
}
.cid-th8OvVo2nE H1 {
  text-align: center;
}
.cid-sITyEsrGOH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #e7e5e3;
}
.cid-sITyEsrGOH .card-box {
  background-color: #dae7ea;
  padding: 4rem 2rem;
}
.cid-sITyEsrGOH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sITyEsrGOH p {
  color: #767676;
  text-align: left;
}
.cid-sITyEsrGOH .card-wrapper {
  border: 1px solid #dae7ea;
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sITyEsrGOH .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sITyEsrGOH .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sITyEsrGOH h3 {
  position: relative;
  margin-top: 2rem;
  letter-spacing: 2px;
}
.cid-sITyEsrGOH h3:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sITyEsrGOH h3:hover:after {
  margin-left: -15px;
}
.cid-sITyEsrGOH P {
  text-align: center;
}
.cid-sITyEsrGOH .card-title {
  text-align: center;
  color: #7f1933;
}
.cid-sITyEsrGOH H3 {
  text-align: center;
}
.cid-sITyEsrGOH .number {
  text-align: center;
}
.cid-sITyEsrGOH H1 {
  text-align: center;
}
.cid-sJDPstwEqn {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #571022;
}
.cid-sJDPstwEqn .carousel {
  z-index: 0;
}
.cid-sJDPstwEqn .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sJDPstwEqn .carousel-item.active,
.cid-sJDPstwEqn .carousel-item-next,
.cid-sJDPstwEqn .carousel-item-prev {
  display: flex;
}
.cid-sJDPstwEqn .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-sJDPstwEqn .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-sJDPstwEqn .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-sJDPstwEqn .line1 {
  margin-left: -2rem;
}
.cid-sJDPstwEqn .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-sJDPstwEqn .carousel-controls a {
  font-size: 2rem;
}
.cid-sJDPstwEqn .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #571022;
  background: transparent;
  opacity: 0.5;
}
.cid-sJDPstwEqn .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sJDPstwEqn ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-sJDPstwEqn .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #571022;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-sJDPstwEqn .carousel-indicators .active {
  opacity: 1;
}
.cid-sJDPstwEqn .user_text {
  color: #ffffff;
}
.cid-sJDPstwEqn .user_desk {
  color: #b2ccd2;
}
.cid-sJDPstwEqn .title,
.cid-sJDPstwEqn .line-align {
  color: #e4d295;
}
.cid-uVaVzf1ydo {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2002-abendstern-liederabend-654x436.webp");
}
.cid-uVaVzf1ydo .text-box {
  max-width: 900px;
}
.cid-uVaVzf1ydo .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uVaVzf1ydo .item:last-child .icon-box:before {
  display: none;
}
.cid-uVaVzf1ydo .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uVaVzf1ydo .item::before {
    margin-left: 2rem;
  }
}
.cid-uVaVzf1ydo .last:before {
  display: none;
}
.cid-uVaVzf1ydo .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uVaVzf1ydo span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uVaVzf1ydo span .card {
    margin-bottom: 2rem;
  }
  .cid-uVaVzf1ydo span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uVaVzf1ydo span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uVaVzf1ydo .icon-box::before {
    top: 114%;
  }
}
.cid-uVaVzf1ydo SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uVaVzf1ydo .icon-text {
  color: #1c1c1c;
}
.cid-uVaVzf1ydo .icon-title {
  color: #82786e;
}
.cid-uVaVzf1ydo .icon-subtitle {
  color: #7f1933;
}
.cid-uVaVzf1ydo .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uVaVzf1ydo .mbr-text,
.cid-uVaVzf1ydo .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-sGDd9pejzU {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-sGDd9pejzU h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-sGDd9pejzU span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-sGDd9pejzU .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-sGDd9pqZgX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-sGDd9pqZgX .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-sGDd9pqZgX .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sGDd9pqZgX .col + .mbr-section-btn .btn,
.cid-sGDd9pqZgX .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-sGDd9pqZgX .col + .mbr-section-btn .btn,
  .cid-sGDd9pqZgX .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-sGDd9pqZgX .dragArea > *:nth-last-child(2).col,
  .cid-sGDd9pqZgX .dragArea > *:nth-last-child(2).col-auto,
  .cid-sGDd9pqZgX .col + .mbr-section-btn,
  .cid-sGDd9pqZgX .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-sGDd9pqZgX .dragArea {
    flex-direction: column;
  }
}
.cid-sGDd9pqZgX .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-sGDd9pqZgX .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-sGDd9pqZgX .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sGDd9pqZgX .form-group {
  max-width: 220px;
}
.cid-sGDd9pqZgX .mbr-section-btn {
  padding-left: 0;
}
.cid-sGDd9pqZgX .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sGDd9pqZgX .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-sGDd9pqZgX .mbr-text {
  color: #444;
}
.cid-sGDd9pqZgX h5 {
  margin-bottom: 0;
}
.cid-sGDd9pqZgX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sGDd9pqZgX .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGDd9pqZgX .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sGDd9pqZgX .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGDd9pqZgX .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGDd9pqZgX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sGDd9pqZgX .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sGDd9pqZgX .social-list a:hover {
  opacity: 0.4;
}
.cid-sGDd9pqZgX .media-container-row > div {
  padding: 0px;
}
.cid-sGDd9pqZgX .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-sGDd9pqZgX .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-sGDd9pqZgX .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sGDd9pqZgX .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sGDd9pqZgX .social-list,
  .cid-sGDd9pqZgX .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-sGDd9pqZgX h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sGDd9pqZgX .form-group {
    max-width: 180px;
  }
}
.cid-sGDd9pqZgX .links span {
  color: #9e9e9e;
}
.cid-sGDd9pqZgX .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-sGDd9pqZgX .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-sGDd9pqZgX .logo-title,
.cid-sGDd9pqZgX .logo {
  color: #7f1933;
}
.cid-sGDd9pTjIB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sIXh6J7XAD.popup-builder {
  background-color: #ffffff;
}
.cid-sIXh6J7XAD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sIXh6J7XAD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sIXh6J7XAD .modal-content,
.cid-sIXh6J7XAD .modal-dialog {
  height: auto;
}
.cid-sIXh6J7XAD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sIXh6J7XAD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sIXh6J7XAD .form-wrapper .mbr-form .form-group,
  .cid-sIXh6J7XAD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sIXh6J7XAD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sIXh6J7XAD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sIXh6J7XAD .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sIXh6J7XAD .pt-0 {
  padding-top: 0 !important;
}
.cid-sIXh6J7XAD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sIXh6J7XAD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sIXh6J7XAD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sIXh6J7XAD .modal-open {
  overflow: hidden;
}
.cid-sIXh6J7XAD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sIXh6J7XAD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sIXh6J7XAD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sIXh6J7XAD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sIXh6J7XAD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sIXh6J7XAD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sIXh6J7XAD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sIXh6J7XAD .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sIXh6J7XAD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sIXh6J7XAD .modal-backdrop.fade {
  opacity: 0;
}
.cid-sIXh6J7XAD .modal-backdrop.show {
  opacity: .5;
}
.cid-sIXh6J7XAD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sIXh6J7XAD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXh6J7XAD .modal-header {
    padding: 1rem;
  }
}
.cid-sIXh6J7XAD .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sIXh6J7XAD .modal-header .close:hover {
  opacity: 1;
}
.cid-sIXh6J7XAD .modal-header .close:focus {
  outline: none;
}
.cid-sIXh6J7XAD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-sIXh6J7XAD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sIXh6J7XAD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXh6J7XAD .modal-body {
    padding: 1rem;
  }
}
.cid-sIXh6J7XAD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sIXh6J7XAD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sIXh6J7XAD .modal-footer {
    padding: 1rem;
  }
}
.cid-sIXh6J7XAD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sIXh6J7XAD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sIXh6J7XAD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sIXh6J7XAD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sIXh6J7XAD .modal-sm {
    max-width: 300px;
  }
  .cid-sIXh6J7XAD .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sIXh6J7XAD .modal-lg,
  .cid-sIXh6J7XAD .modal-xl {
    max-width: 800px;
  }
  .cid-sIXh6J7XAD .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sIXh6J7XAD .modal-xl {
    max-width: 1140px;
  }
  .cid-sIXh6J7XAD .container {
    max-width: 1140px;
  }
}
.cid-sIXh6J7XAD .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sIXh6J7XAD .container {
    max-width: 720px;
  }
}
.cid-sIXh6J7XAD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sIXh6J7XAD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sIXh6J7XAD .form-group {
  margin-bottom: 1rem;
}
.cid-sIXh6J7XAD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sIXh6J7XAD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sIXh6J7XAD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sIXh6J7XAD .mbr-section-btn {
  margin: 0;
}
.cid-sIXh6J7XAD .mbr-section-btn .btn {
  margin: 0;
}
.cid-sKSEAAtRkS.popup-builder {
  background-color: #ffffff;
}
.cid-sKSEAAtRkS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sKSEAAtRkS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sKSEAAtRkS .modal-content,
.cid-sKSEAAtRkS .modal-dialog {
  height: auto;
}
.cid-sKSEAAtRkS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sKSEAAtRkS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sKSEAAtRkS .form-wrapper .mbr-form .form-group,
  .cid-sKSEAAtRkS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sKSEAAtRkS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sKSEAAtRkS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sKSEAAtRkS .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-sKSEAAtRkS .pt-0 {
  padding-top: 0 !important;
}
.cid-sKSEAAtRkS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sKSEAAtRkS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sKSEAAtRkS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sKSEAAtRkS .modal-open {
  overflow: hidden;
}
.cid-sKSEAAtRkS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sKSEAAtRkS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sKSEAAtRkS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sKSEAAtRkS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sKSEAAtRkS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sKSEAAtRkS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sKSEAAtRkS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sKSEAAtRkS .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sKSEAAtRkS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sKSEAAtRkS .modal-backdrop.fade {
  opacity: 0;
}
.cid-sKSEAAtRkS .modal-backdrop.show {
  opacity: .5;
}
.cid-sKSEAAtRkS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sKSEAAtRkS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSEAAtRkS .modal-header {
    padding: 1rem;
  }
}
.cid-sKSEAAtRkS .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sKSEAAtRkS .modal-header .close:hover {
  opacity: 1;
}
.cid-sKSEAAtRkS .modal-header .close:focus {
  outline: none;
}
.cid-sKSEAAtRkS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-sKSEAAtRkS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sKSEAAtRkS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSEAAtRkS .modal-body {
    padding: 1rem;
  }
}
.cid-sKSEAAtRkS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sKSEAAtRkS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSEAAtRkS .modal-footer {
    padding: 1rem;
  }
}
.cid-sKSEAAtRkS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sKSEAAtRkS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sKSEAAtRkS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sKSEAAtRkS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sKSEAAtRkS .modal-sm {
    max-width: 300px;
  }
  .cid-sKSEAAtRkS .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sKSEAAtRkS .modal-lg,
  .cid-sKSEAAtRkS .modal-xl {
    max-width: 800px;
  }
  .cid-sKSEAAtRkS .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sKSEAAtRkS .modal-xl {
    max-width: 1140px;
  }
  .cid-sKSEAAtRkS .container {
    max-width: 1140px;
  }
}
.cid-sKSEAAtRkS .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sKSEAAtRkS .container {
    max-width: 720px;
  }
}
.cid-sKSEAAtRkS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sKSEAAtRkS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sKSEAAtRkS .form-group {
  margin-bottom: 1rem;
}
.cid-sKSEAAtRkS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sKSEAAtRkS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sKSEAAtRkS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sKSEAAtRkS .mbr-section-btn {
  margin: 0;
}
.cid-sKSEAAtRkS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbYxAqlaL.popup-builder {
  background-color: #ffffff;
}
.cid-uYbYxAqlaL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbYxAqlaL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbYxAqlaL .modal-content,
.cid-uYbYxAqlaL .modal-dialog {
  height: auto;
}
.cid-uYbYxAqlaL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbYxAqlaL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbYxAqlaL .form-wrapper .mbr-form .form-group,
  .cid-uYbYxAqlaL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbYxAqlaL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbYxAqlaL .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbYxAqlaL .mbr-text {
  text-align: center;
}
.cid-uYbYxAqlaL .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbYxAqlaL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbYxAqlaL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbYxAqlaL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbYxAqlaL .modal-open {
  overflow: hidden;
}
.cid-uYbYxAqlaL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbYxAqlaL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbYxAqlaL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbYxAqlaL .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbYxAqlaL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbYxAqlaL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbYxAqlaL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbYxAqlaL .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbYxAqlaL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbYxAqlaL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbYxAqlaL .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbYxAqlaL .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbYxAqlaL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbYxAqlaL .modal-header {
    padding: 1rem;
  }
}
.cid-uYbYxAqlaL .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbYxAqlaL .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbYxAqlaL .modal-header .close:focus {
  outline: none;
}
.cid-uYbYxAqlaL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uYbYxAqlaL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbYxAqlaL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbYxAqlaL .modal-body {
    padding: 1rem;
  }
}
.cid-uYbYxAqlaL .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbYxAqlaL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbYxAqlaL .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbYxAqlaL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbYxAqlaL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbYxAqlaL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbYxAqlaL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbYxAqlaL .modal-sm {
    max-width: 300px;
  }
  .cid-uYbYxAqlaL .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbYxAqlaL .modal-lg,
  .cid-uYbYxAqlaL .modal-xl {
    max-width: 800px;
  }
  .cid-uYbYxAqlaL .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbYxAqlaL .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbYxAqlaL .container {
    max-width: 1140px;
  }
}
.cid-uYbYxAqlaL .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbYxAqlaL .container {
    max-width: 720px;
  }
}
.cid-uYbYxAqlaL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbYxAqlaL .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbYxAqlaL .form-group {
  margin-bottom: 1rem;
}
.cid-uYbYxAqlaL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbYxAqlaL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbYxAqlaL .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbYxAqlaL .mbr-section-btn {
  margin: 0;
}
.cid-uYbYxAqlaL .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUoQn2sa .navbar {
  background: #ffffff;
  transition: none;
  z-index: 98;
  left: auto;
}
.cid-uYbUoQn2sa .navbar .show {
  height: 100vh;
}
.cid-uYbUoQn2sa .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uYbUoQn2sa .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uYbUoQn2sa .bottom {
  padding-bottom: 2rem;
}
.cid-uYbUoQn2sa a {
  font-style: normal;
}
.cid-uYbUoQn2sa .dropdown-backdrop {
  display: none;
}
.cid-uYbUoQn2sa .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-uYbUoQn2sa .nav-dropdown {
  padding-top: 8rem;
}
.cid-uYbUoQn2sa .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uYbUoQn2sa .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uYbUoQn2sa .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uYbUoQn2sa .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uYbUoQn2sa .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uYbUoQn2sa .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.cid-uYbUoQn2sa .navbar-nav {
  width: 100%!important;
}
.cid-uYbUoQn2sa .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uYbUoQn2sa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uYbUoQn2sa .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uYbUoQn2sa .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-uYbUoQn2sa .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uYbUoQn2sa .dropdown-item:hover,
.cid-uYbUoQn2sa .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uYbUoQn2sa .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uYbUoQn2sa .soc-item {
  width: 45px;
  height: 45px;
  background: #dae7ea;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uYbUoQn2sa .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uYbUoQn2sa .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uYbUoQn2sa .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uYbUoQn2sa .navbar-logo {
  margin-right: 0!important;
}
.cid-uYbUoQn2sa .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uYbUoQn2sa .menu-logo {
  position: fixed!important;
}
.cid-uYbUoQn2sa .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 99;
  margin-right: auto;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uYbUoQn2sa .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uYbUoQn2sa .navbar-toggler {
  background: #ffffff;
  width: 75px!important;
  height: 75px!important;
  border-radius: 0!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uYbUoQn2sa .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-uYbUoQn2sa .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uYbUoQn2sa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uYbUoQn2sa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uYbUoQn2sa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uYbUoQn2sa .opened,
.cid-uYbUoQn2sa .show {
  height: 100%;
  width: 300px!important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uYbUoQn2sa .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uYbUoQn2sa .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uYbUoQn2sa .opened,
  .cid-uYbUoQn2sa .show,
  .cid-uYbUoQn2sa .navbar {
    width: 100%!important;
  }
  .cid-uYbUoQn2sa .dropdown-toggle {
    margin: auto!important;
  }
  .cid-uYbUoQn2sa .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-uYbUoQn2sa .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uYbUoQn2sa .nav-item:focus,
.cid-uYbUoQn2sa .nav-link:focus {
  outline: none;
}
.cid-uYbUoQn2sa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uYbUoQn2sa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uYbUoQn2sa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUoQn2sa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uYbUoQn2sa .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uYbUoQn2sa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uYbUoQn2sa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYbUoQn2sa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uYbUoQn2sa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYbUoQn2sa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uYbUoQn2sa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uYbUoQn2sa button.navbar-toggler:focus {
  outline: none;
}
.cid-uYbUoQn2sa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uYbUoQn2sa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uYbUoQn2sa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uYbUoQn2sa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uYbUoQn2sa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uYbUoQn2sa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uYbUoQn2sa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uYbUoQn2sa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uYbUoQn2sa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uYbUoQn2sa .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uYbUoQn2sa .collapsed .btn {
  display: -webkit-flex;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uYbUoQn2sa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uYbUoQn2sa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uYbUoQn2sa .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 90.4375vh;
  }
}
.cid-uYbUoQn2sa .collapsed button.navbar-toggler {
  display: block;
}
.cid-uYbUoQn2sa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uYbUoQn2sa .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uYbUoQn2sa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uYbUoQn2sa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uYbUoQn2sa .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uYbUoQn2sa img {
    height: 3.8rem !important;
  }
  .cid-uYbUoQn2sa .btn {
    display: -webkit-flex;
  }
  .cid-uYbUoQn2sa button.navbar-toggler {
    display: block;
  }
  .cid-uYbUoQn2sa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uYbUoQn2sa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing,
  .cid-uYbUoQn2sa .navbar-collapse.show {
    display: block !important;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing .navbar-nav,
  .cid-uYbUoQn2sa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uYbUoQn2sa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-uYbUoQn2sa .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing .navbar-buttons,
  .cid-uYbUoQn2sa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uYbUoQn2sa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uYbUoQn2sa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uYbUoQn2sa .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uYbUoQn2sa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uYbUoQn2sa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uYbUoQn2sa .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uYbUoRat3l {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/ml-startmotiv250-1725x1020.webp");
}
.cid-uYbUoREyOt {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uYbUoREyOt h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uYbUoREyOt span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uYbUoREyOt .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uYbUoS2qd2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fbfbfb;
}
.cid-uYbUoS2qd2 .mbr-subtitle {
  color: #ae211a;
  font-weight: 800;
  text-align: left;
}
.cid-uYbUoS2qd2 .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uYbUoS2qd2 .mbr-section-title {
  color: #073b4c;
  font-weight: 700;
  text-align: left;
}
.cid-uYbUoS2qd2 .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uYbUoS2qd2 .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
  text-align: justify;
}
.cid-uYbUoS2qd2 .timelines-container {
  margin-top: 60px;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #e9ea88;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uYbUoS2qd2 .container-fluid {
  padding: 0 2rem;
}
.cid-uYbUoS2qd2 .separline:before,
.cid-uYbUoS2qd2 .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #efefef;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-uYbUoS2qd2 .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #efefef;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-uYbUoS2qd2 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uYbUoS2qd2 .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-uYbUoS2qd2 .separline:before,
  .cid-uYbUoS2qd2 .first-separline:before {
    left: -10px !important;
  }
  .cid-uYbUoS2qd2 .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-uYbUoS2qd2 .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-uYbUoS2qd2 .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-uYbUoS2qd2 .time-line-date-content p {
    float: left !important;
  }
  .cid-uYbUoS2qd2 .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-uYbUoS2qd2 .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-uYbUoS2qd2 .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .date .mbr-timeline-date {
  text-align: left;
  color: #073b4c;
}
.cid-uYbUoS2qd2 .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  color: #073b4c;
}
.cid-uYbUoTrOxF {
  padding-top: 225px;
  padding-bottom: 0px;
  background-color: #dae7ea;
}
.cid-uYbUoTrOxF h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uYbUoTrOxF h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-uYbUoTrOxF .mbr-text,
.cid-uYbUoTrOxF .mbr-section-btn {
  color: #cc2952;
}
.cid-uYbUoTrOxF H1 {
  color: #1c1c1c;
}
.cid-uYbUoTrOxF H3 {
  color: #cc2952;
}
.cid-uYbUoTIKwy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #dae7ea;
}
.cid-uYbUoTIKwy .card-img {
  background-color: #fff;
  overflow: hidden;
}
.cid-uYbUoTIKwy .card-box {
  padding: 0rem;
  padding-top: 2rem;
}
.cid-uYbUoTIKwy h4 {
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uYbUoTIKwy h3 {
  margin-bottom: 0;
  letter-spacing: 1px;
}
.cid-uYbUoTIKwy p {
  text-align: left;
}
.cid-uYbUoTIKwy img {
  transition: all 0.3s;
}
.cid-uYbUoTIKwy .mbr-text {
  color: #1c1c1c;
}
.cid-uYbUoTIKwy .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uYbUoTIKwy .card-wrapper:hover h4 {
  background-size: 100% 100%;
}
.cid-uYbUoTIKwy .card-wrapper:hover img {
  filter: blur(2px);
}
.cid-uYbUoTIKwy .card {
  margin-bottom: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uYbUoTIKwy .card-columns {
    column-count: 2;
  }
}
@media (max-width: 767px) {
  .cid-uYbUoTIKwy .card-columns {
    column-count: 1;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUoTIKwy .card-columns {
    column-gap: 4rem;
  }
}
.cid-uYbUoTIKwy .card-title {
  color: #767676;
}
.cid-uYbUoU6WnX {
  padding-top: 225px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/2021-ml-repertoirecomposing2-1905x1067.webp");
}
.cid-uYbUoU6WnX h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uYbUoU6WnX h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #cc2952;
  margin-left: 10px;
}
.cid-uYbUoU6WnX .mbr-text,
.cid-uYbUoU6WnX .mbr-section-btn {
  color: #1c1c1c;
  text-align: center;
}
.cid-uYbUoUr8f1 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uYbUoUr8f1 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uYbUoUr8f1 span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uYbUoUr8f1 .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uYbUoUIVie {
  padding-top: 195px;
  padding-bottom: 0px;
  background-color: #e7e5e3;
}
.cid-uYbUoUIVie h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uYbUoUIVie h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #cc2952;
  margin-left: 10px;
}
.cid-uYbUoUIVie .mbr-text,
.cid-uYbUoUIVie .mbr-section-btn {
  color: #7f1933;
}
.cid-uYbUoUIVie H1 {
  color: #1c1c1c;
}
.cid-uYbUoUIVie H3 {
  color: #1c1c1c;
}
.cid-uYbUoUZk7h {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/2021-ml-konzerttrefiamme2-1-1800x2697.webp");
}
.cid-uYbUoUZk7h .text-box {
  max-width: 900px;
}
.cid-uYbUoUZk7h .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uYbUoUZk7h .item:last-child .icon-box:before {
  display: none;
}
.cid-uYbUoUZk7h .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uYbUoUZk7h .item::before {
    margin-left: 2rem;
  }
}
.cid-uYbUoUZk7h .last:before {
  display: none;
}
.cid-uYbUoUZk7h .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uYbUoUZk7h span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uYbUoUZk7h span .card {
    margin-bottom: 2rem;
  }
  .cid-uYbUoUZk7h span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uYbUoUZk7h span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uYbUoUZk7h .icon-box::before {
    top: 114%;
  }
}
.cid-uYbUoUZk7h SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoUZk7h .icon-text {
  color: #1c1c1c;
}
.cid-uYbUoUZk7h .icon-title {
  color: #82786e;
}
.cid-uYbUoUZk7h .icon-subtitle {
  color: #7f1933;
}
.cid-uYbUoUZk7h .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uYbUoUZk7h .mbr-text,
.cid-uYbUoUZk7h .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoVBE5J {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2021-ml-konzerttrefiamme2-1-1800x2697.webp");
}
.cid-uYbUoVBE5J .text-box {
  max-width: 900px;
}
.cid-uYbUoVBE5J .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uYbUoVBE5J .item:last-child .icon-box:before {
  display: none;
}
.cid-uYbUoVBE5J .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uYbUoVBE5J .item::before {
    margin-left: 2rem;
  }
}
.cid-uYbUoVBE5J .last:before {
  display: none;
}
.cid-uYbUoVBE5J .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uYbUoVBE5J span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uYbUoVBE5J span .card {
    margin-bottom: 2rem;
  }
  .cid-uYbUoVBE5J span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uYbUoVBE5J span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uYbUoVBE5J .icon-box::before {
    top: 114%;
  }
}
.cid-uYbUoVBE5J SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoVBE5J .icon-text {
  color: #1c1c1c;
}
.cid-uYbUoVBE5J .icon-title {
  color: #82786e;
}
.cid-uYbUoVBE5J .icon-subtitle {
  color: #7f1933;
}
.cid-uYbUoVBE5J .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uYbUoVBE5J .mbr-text,
.cid-uYbUoVBE5J .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoW4RWO {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #e7e5e3;
}
@media (max-width: 992px) {
  .cid-uYbUoW4RWO {
    padding-top: 35px;
    padding-bottom: 42px;
  }
  .cid-uYbUoW4RWO .box {
    height: 250px;
  }
  .cid-uYbUoW4RWO .row {
    padding: 1rem !important;
  }
  .cid-uYbUoW4RWO .mbr-text {
    margin-top: 30px;
    text-align: left;
  }
}
.cid-uYbUoW4RWO .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #cc2952;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-uYbUoW4RWO .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uYbUoW4RWO .mbr-section-subtitle {
  color: #7f1933;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uYbUoW4RWO .mbr-section-title {
  color: #404040;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-uYbUoW4RWO .mbr-text {
  color: #606060;
}
.cid-uYbUoW4RWO .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-uYbUoW4RWO .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
.cid-uYbUoW4RWO .mbr-list .list li {
  line-height: 1.75;
}
.cid-uYbUoW4RWO .mbr-list .list li:before {
  font-weight: 900;
  color: #7f1933;
  display: inline-block;
  font-family: FontAwesome !important;
  content: "\f061";
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 10px;
}
.cid-uYbUoW4RWO .mbr-section-btn {
  text-align: left;
  margin-top: 30px;
}
.cid-uYbUoW4RWO .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-uYbUoW4RWO .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uYbUoW4RWO .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uYbUoW4RWO .box {
  background-image: url("../../../assets/images/2021-ml-bently-946x532.webp");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0;
}
.cid-uYbUoW4RWO .box .overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(206, 191, 175, 0.5);
}
.cid-uYbUoW4RWO .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uYbUoW4RWO .icon-wrap span {
  padding-left: 8px;
}
.cid-uYbUoW4RWO .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #1c1c1c !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-uYbUoW4RWO .mbr-media span:hover {
  opacity: 1;
  color: #ffffff !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-uYbUoW4RWO .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uYbUoW4RWO .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-uYbUoW4RWO .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-uYbUoW4RWO .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uYbUoW4RWO .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uYbUoW4RWO .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uYbUoW4RWO a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uYbUoW4RWO a.close:hover {
  color: #ffffff;
}
.cid-uYbUoWtTp0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uYbUoWtTp0 h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uYbUoWtTp0 span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uYbUoWtTp0 .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uYbUoWN4gd {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f3f7;
}
@media (max-width: 992px) {
  .cid-uYbUoWN4gd {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-uYbUoWN4gd .box {
    height: 250px;
  }
  .cid-uYbUoWN4gd .row {
    padding: 1rem !important;
  }
  .cid-uYbUoWN4gd .mbr-text {
    margin-top: 30px;
    text-align: left;
  }
}
.cid-uYbUoWN4gd .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #cc2952;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-uYbUoWN4gd .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uYbUoWN4gd .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uYbUoWN4gd .mbr-section-title {
  color: #bca65b;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-uYbUoWN4gd .mbr-text {
  color: #606060;
}
.cid-uYbUoWN4gd .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-uYbUoWN4gd .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
.cid-uYbUoWN4gd .mbr-list .list li {
  line-height: 1.75;
}
.cid-uYbUoWN4gd .mbr-list .list li:before {
  font-weight: 900;
  color: #b2ccd2;
  display: inline-block;
  font-family: FontAwesome !important;
  content: "\f061";
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 10px;
}
.cid-uYbUoWN4gd .mbr-section-btn {
  text-align: left;
  margin-top: 30px;
}
.cid-uYbUoWN4gd .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-uYbUoWN4gd .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-uYbUoWN4gd .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uYbUoWN4gd .box {
  background-image: url("../../../assets/images/2013-dido-schweinfurt-0245-kopie-1080x719.webp");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0;
}
.cid-uYbUoWN4gd .box .overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uYbUoWN4gd .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uYbUoWN4gd .icon-wrap span {
  padding-left: 8px;
}
.cid-uYbUoWN4gd .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-uYbUoWN4gd .mbr-media span:hover {
  opacity: 1;
  color: #000000 !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-uYbUoWN4gd .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uYbUoWN4gd .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-uYbUoWN4gd .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-uYbUoWN4gd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uYbUoWN4gd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uYbUoWN4gd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uYbUoWN4gd a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uYbUoWN4gd a.close:hover {
  color: #ffffff;
}
.cid-uYbUoXezdc {
  padding-top: 195px;
  padding-bottom: 45px;
  background-color: #f2f3f7;
}
.cid-uYbUoXezdc h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 1rem;
  top: -1rem;
}
.cid-uYbUoXezdc h3:after {
  content: "";
  color: #333;
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #c4bc3b;
  margin-left: 10px;
}
.cid-uYbUoXezdc .mbr-text,
.cid-uYbUoXezdc .mbr-section-btn {
  color: #c4bc3b;
}
.cid-uYbUoXezdc H1 {
  color: #1c1c1c;
}
.cid-uYbUoXezdc H3 {
  color: #787324;
}
.cid-uYbUoXx68M {
  background-color: #f2f3f7;
}
.cid-uYbUoXx68M h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-uYbUoXx68M .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-uYbUoXx68M .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uYbUoXx68M .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-uYbUoXx68M img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uYbUoXx68M li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-uYbUoXx68M li.active {
  background-color: #f2f3f7;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-uYbUoXx68M a {
  color: #fff;
  line-height: 1.5;
}
.cid-uYbUoXx68M .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uYbUoXx68M .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uYbUoXx68M .desk {
  color: #fff;
}
.cid-uYbUoXx68M .signature {
  color: #fff;
}
.cid-uYbUoXx68M .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-uYbUoXx68M .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-uYbUoXx68M .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-uYbUoXx68M .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uYbUoXx68M .img-card {
    margin-top: 2rem;
  }
}
.cid-uYbUoY7JJS {
  background-color: #f2f3f7;
}
.cid-uYbUoY7JJS .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uYbUoY7JJS .carousel-item > div {
  width: 100%;
}
.cid-uYbUoY7JJS h4 {
  margin-bottom: 0.7rem;
  font-weight: 900;
}
.cid-uYbUoY7JJS .carousel-item.active,
.cid-uYbUoY7JJS .carousel-item-next,
.cid-uYbUoY7JJS .carousel-item-prev {
  display: flex;
}
.cid-uYbUoY7JJS .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 1.2rem;
}
.cid-uYbUoY7JJS .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: 0.9;
}
.cid-uYbUoY7JJS .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-uYbUoY7JJS .carousel-controls a {
    width: 5%;
  }
}
.cid-uYbUoY7JJS .mbr-text {
  padding: 2rem;
  border-radius: 30px;
  color: #fff;
  position: relative;
}
.cid-uYbUoY7JJS .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #70747f;
}
.cid-uYbUoY7JJS .img-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cid-uYbUoY7JJS img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.cid-uYbUoY7JJS li {
  background-color: transparent;
  width: 11px;
  height: 11px;
  border: 1px solid #e0e0e0 !important;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.cid-uYbUoY7JJS li.active {
  background-color: #f2f3f7;
  width: 14px;
  height: 14px;
  border: none !important;
}
.cid-uYbUoY7JJS .carousel-indicators {
  position: absolute;
  bottom: -2.3rem;
  align-items: center;
}
.cid-uYbUoY7JJS .carousel-indicators li {
  border: none;
  border-radius: 50%;
}
.cid-uYbUoY7JJS .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .cid-uYbUoY7JJS {
    padding-top: 10px;
    padding-bottom: 0px;
  }
  .cid-uYbUoY7JJS .col-md-3 {
    padding: 0;
  }
}
@media (min-width: 767px) {
  .cid-uYbUoY7JJS {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
.cid-uYbUoY7JJS a {
  color: #fff;
  line-height: 1.5;
}
.cid-uYbUoY7JJS .wrapper-img {
  position: relative;
  background-color: #000;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uYbUoY7JJS .title-block {
  position: absolute;
  opacity: 0;
  transform: translateX(-20px);
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
}
.cid-uYbUoY7JJS .desk {
  color: #fff;
}
.cid-uYbUoY7JJS .signature {
  color: #fff;
}
.cid-uYbUoY7JJS .img-block:hover .title-block {
  opacity: 1;
  transform: translateX(0px);
}
.cid-uYbUoY7JJS .img-block:hover img {
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px) hue-rotate(0deg);
  box-shadow: 0 1px 15px 1px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
}
.cid-uYbUoY7JJS .img-block:hover .wrapper-img {
  transform: scale(0.95);
}
.cid-uYbUoY7JJS .container-fluid {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uYbUoY7JJS .img-card {
    margin-top: 2rem;
  }
}
.cid-uYbUoYzClv {
  padding-top: 60px;
  padding-bottom: 105px;
  background-color: #f2f3f7;
}
.cid-uYbUoYzClv .carousel {
  z-index: 0;
}
.cid-uYbUoYzClv .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uYbUoYzClv .carousel-item.active,
.cid-uYbUoYzClv .carousel-item-next,
.cid-uYbUoYzClv .carousel-item-prev {
  display: flex;
}
.cid-uYbUoYzClv .mbr-iconfont {
  font-family: Moririse2!important;
}
.cid-uYbUoYzClv .line-wrap {
  display: inline-block;
  height: 30px;
  text-align: left;
}
.cid-uYbUoYzClv .line {
  width: 100px;
  height: 1px;
  background: #cebfaf;
}
.cid-uYbUoYzClv .line1 {
  margin-left: -2rem;
}
.cid-uYbUoYzClv .line2 {
  margin-right: -2rem;
  margin-top: 0.2rem;
}
.cid-uYbUoYzClv .carousel-controls a {
  font-size: 2rem;
}
.cid-uYbUoYzClv .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #b2ccd2;
  background: transparent;
  opacity: 0.5;
}
.cid-uYbUoYzClv .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uYbUoYzClv ol {
  margin-bottom: 0;
  bottom: -4rem;
}
.cid-uYbUoYzClv .carousel-indicators li {
  width: 7px;
  height: 7px;
  border: none;
  background: #b2ccd2;
  margin-right: 7px;
  margin-left: 7px;
  border-radius: 50%;
  opacity: 0.2;
}
.cid-uYbUoYzClv .carousel-indicators .active {
  opacity: 1;
}
.cid-uYbUoYzClv .user_text {
  color: #1c1c1c;
}
.cid-uYbUoYzClv .user_desk {
  color: #bca65b;
}
.cid-uYbUoYzClv .title,
.cid-uYbUoYzClv .line-align {
  color: #bca65b;
}
.cid-uYbUoZ0OZw {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/2002-abendstern-liederabend-654x436.webp");
}
.cid-uYbUoZ0OZw .text-box {
  max-width: 900px;
}
.cid-uYbUoZ0OZw .item {
  position: relative;
  display: flex;
  padding-bottom: 2rem;
}
.cid-uYbUoZ0OZw .item:last-child .icon-box:before {
  display: none;
}
.cid-uYbUoZ0OZw .item::before {
  content: "";
  width: 2px;
  height: 100%;
  right: 38px;
  position: absolute;
  top: 50%;
  margin-left: 2rem;
  background: #7f1933;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .cid-uYbUoZ0OZw .item::before {
    margin-left: 2rem;
  }
}
.cid-uYbUoZ0OZw .last:before {
  display: none;
}
.cid-uYbUoZ0OZw .icon-box {
  width: 80px;
  min-width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  margin-right: 0;
  background: #f2f3f7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.cid-uYbUoZ0OZw span {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .cid-uYbUoZ0OZw span .card {
    margin-bottom: 2rem;
  }
  .cid-uYbUoZ0OZw span .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uYbUoZ0OZw span .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-uYbUoZ0OZw .icon-box::before {
    top: 114%;
  }
}
.cid-uYbUoZ0OZw SPAN {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoZ0OZw .icon-text {
  color: #1c1c1c;
}
.cid-uYbUoZ0OZw .icon-title {
  color: #82786e;
}
.cid-uYbUoZ0OZw .icon-subtitle {
  color: #7f1933;
}
.cid-uYbUoZ0OZw .main-title {
  color: #1c1c1c;
  text-align: center;
}
.cid-uYbUoZ0OZw .mbr-text,
.cid-uYbUoZ0OZw .mbr-section-btn {
  color: #7f1933;
  text-align: center;
}
.cid-uYbUoZCwLa {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #1c1c1c;
}
.cid-uYbUoZCwLa h1 {
  background-color: transparent;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  line-height: 1;
  letterspacing: 10px;
}
.cid-uYbUoZCwLa span {
  background-image: url("../../../assets/images/background2-1950x1300.webp");
  background-size: 1920px 600px;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  display: block;
  animation: scroll 14s infinite linear;
  pointer-events: none;
}
@keyframes scroll {
  0% {
    background-position-y: 0px;
  }
  99.999% {
    background-position-y: -600px;
  }
  100% {
    background-position-y: 0px;
  }
}
.cid-uYbUoZCwLa .mbr-section-title {
  color: #ffffff;
  letterspacing: 10px;
}
.cid-uYbUoZYUmC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #dae7ea;
}
.cid-uYbUoZYUmC .listico {
  padding-right: 1rem;
  font-size: 1.1rem;
}
.cid-uYbUoZYUmC .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uYbUoZYUmC .col + .mbr-section-btn .btn,
.cid-uYbUoZYUmC .col-auto + .mbr-section-btn .btn {
  margin: 0 !important;
  height: 100%;
  border-radius: 0px !important;
}
@media (min-width: 300px) {
  .cid-uYbUoZYUmC .col + .mbr-section-btn .btn,
  .cid-uYbUoZYUmC .col-auto + .mbr-section-btn .btn {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media (min-width: 300px) {
  .cid-uYbUoZYUmC .dragArea > *:nth-last-child(2).col,
  .cid-uYbUoZYUmC .dragArea > *:nth-last-child(2).col-auto,
  .cid-uYbUoZYUmC .col + .mbr-section-btn,
  .cid-uYbUoZYUmC .col-auto + .mbr-section-btn {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
@media (max-width: 299px) {
  .cid-uYbUoZYUmC .dragArea {
    flex-direction: column;
  }
}
.cid-uYbUoZYUmC .btn-primary {
  border: 1px solid #cc2952 !important;
}
.cid-uYbUoZYUmC .btn-primary:hover {
  border: 1px solid #cc2952 !important;
}
.cid-uYbUoZYUmC .stripe {
  border-bottom: 1px solid #879a9f;
  max-width: 90%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-uYbUoZYUmC .form-group {
  max-width: 220px;
}
.cid-uYbUoZYUmC .mbr-section-btn {
  padding-left: 0;
}
.cid-uYbUoZYUmC .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uYbUoZYUmC .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #ffffff;
  width: 85%;
}
.cid-uYbUoZYUmC .mbr-text {
  color: #444;
}
.cid-uYbUoZYUmC h5 {
  margin-bottom: 0;
}
.cid-uYbUoZYUmC .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uYbUoZYUmC .list-item {
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uYbUoZYUmC .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uYbUoZYUmC .socicon {
  font-size: 1.0rem;
  background: #ffffff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uYbUoZYUmC .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uYbUoZYUmC .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uYbUoZYUmC .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uYbUoZYUmC .social-list a:hover {
  opacity: 0.4;
}
.cid-uYbUoZYUmC .media-container-row > div {
  padding: 0px;
}
.cid-uYbUoZYUmC .text2 {
  color: #000000;
  text-align: left;
  letterspacing: 5px;
}
.cid-uYbUoZYUmC .group-title {
  text-align: left;
  color: #7f1933;
  padding-bottom: 0.2rem;
}
.cid-uYbUoZYUmC .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uYbUoZYUmC .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uYbUoZYUmC .social-list,
  .cid-uYbUoZYUmC .img-list {
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
  }
  .cid-uYbUoZYUmC h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uYbUoZYUmC .form-group {
    max-width: 180px;
  }
}
.cid-uYbUoZYUmC .links span {
  color: #9e9e9e;
}
.cid-uYbUoZYUmC .logo-sub-title {
  text-align: center;
  color: #879a9f;
  letter-spacing: 10px;
}
.cid-uYbUoZYUmC .logo-title {
  text-align: center;
  letter-spacing: 10px;
}
.cid-uYbUoZYUmC .logo-title,
.cid-uYbUoZYUmC .logo {
  color: #7f1933;
}
.cid-uYbUp0yeSK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uYbUp0Y8VX.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp0Y8VX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp0Y8VX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp0Y8VX .modal-content,
.cid-uYbUp0Y8VX .modal-dialog {
  height: auto;
}
.cid-uYbUp0Y8VX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp0Y8VX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp0Y8VX .form-wrapper .mbr-form .form-group,
  .cid-uYbUp0Y8VX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp0Y8VX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp0Y8VX .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp0Y8VX .mbr-text {
  text-align: center;
  color: #606060;
}
.cid-uYbUp0Y8VX .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp0Y8VX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp0Y8VX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp0Y8VX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp0Y8VX .modal-open {
  overflow: hidden;
}
.cid-uYbUp0Y8VX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp0Y8VX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp0Y8VX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp0Y8VX .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp0Y8VX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp0Y8VX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp0Y8VX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp0Y8VX .modal-content {
  background: #dae7ea;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp0Y8VX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uYbUp0Y8VX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp0Y8VX .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp0Y8VX .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp0Y8VX .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp0Y8VX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp0Y8VX .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp0Y8VX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp0Y8VX .modal-header .close svg {
  fill: #353535;
}
.cid-uYbUp0Y8VX .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp0Y8VX .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp0Y8VX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #571022;
}
.cid-uYbUp0Y8VX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uYbUp0Y8VX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp0Y8VX .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp0Y8VX .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp0Y8VX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp0Y8VX .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp0Y8VX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp0Y8VX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp0Y8VX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp0Y8VX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp0Y8VX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp0Y8VX .modal-lg,
  .cid-uYbUp0Y8VX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp0Y8VX .modal-xl {
    max-width: 1140px;
  }
}
.cid-uYbUp0Y8VX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp0Y8VX .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp0Y8VX .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp0Y8VX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp0Y8VX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp0Y8VX .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp0Y8VX .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp0Y8VX .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUp1snds.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp1snds.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp1snds.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp1snds .modal-content,
.cid-uYbUp1snds .modal-dialog {
  height: auto;
}
.cid-uYbUp1snds .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp1snds .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp1snds .form-wrapper .mbr-form .form-group,
  .cid-uYbUp1snds .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp1snds .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp1snds .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp1snds .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYbUp1snds .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp1snds .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp1snds .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp1snds .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp1snds .modal-open {
  overflow: hidden;
}
.cid-uYbUp1snds .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp1snds .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp1snds .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp1snds .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp1snds .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp1snds .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp1snds .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp1snds .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp1snds .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp1snds .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp1snds .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp1snds .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp1snds .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1snds .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp1snds .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp1snds .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp1snds .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp1snds .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uYbUp1snds .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbUp1snds .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1snds .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp1snds .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp1snds .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1snds .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp1snds .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp1snds .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp1snds .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp1snds .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp1snds .modal-sm {
    max-width: 300px;
  }
  .cid-uYbUp1snds .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp1snds .modal-lg,
  .cid-uYbUp1snds .modal-xl {
    max-width: 800px;
  }
  .cid-uYbUp1snds .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp1snds .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbUp1snds .container {
    max-width: 1140px;
  }
}
.cid-uYbUp1snds .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbUp1snds .container {
    max-width: 720px;
  }
}
.cid-uYbUp1snds .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp1snds .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp1snds .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp1snds .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp1snds .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp1snds .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp1snds .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp1snds .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUp1X7dx.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp1X7dx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp1X7dx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp1X7dx .modal-content,
.cid-uYbUp1X7dx .modal-dialog {
  height: auto;
}
.cid-uYbUp1X7dx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp1X7dx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp1X7dx .form-wrapper .mbr-form .form-group,
  .cid-uYbUp1X7dx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp1X7dx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp1X7dx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp1X7dx .mbr-text {
  text-align: center;
}
.cid-uYbUp1X7dx .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp1X7dx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp1X7dx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp1X7dx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp1X7dx .modal-open {
  overflow: hidden;
}
.cid-uYbUp1X7dx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp1X7dx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp1X7dx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp1X7dx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp1X7dx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp1X7dx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp1X7dx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp1X7dx .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp1X7dx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp1X7dx .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp1X7dx .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp1X7dx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp1X7dx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1X7dx .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp1X7dx .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp1X7dx .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp1X7dx .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp1X7dx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uYbUp1X7dx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbUp1X7dx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1X7dx .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp1X7dx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp1X7dx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp1X7dx .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp1X7dx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp1X7dx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp1X7dx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp1X7dx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp1X7dx .modal-sm {
    max-width: 300px;
  }
  .cid-uYbUp1X7dx .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp1X7dx .modal-lg,
  .cid-uYbUp1X7dx .modal-xl {
    max-width: 800px;
  }
  .cid-uYbUp1X7dx .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp1X7dx .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbUp1X7dx .container {
    max-width: 1140px;
  }
}
.cid-uYbUp1X7dx .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbUp1X7dx .container {
    max-width: 720px;
  }
}
.cid-uYbUp1X7dx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp1X7dx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp1X7dx .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp1X7dx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp1X7dx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp1X7dx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp1X7dx .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp1X7dx .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUp2tZAl.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp2tZAl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp2tZAl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp2tZAl .modal-content,
.cid-uYbUp2tZAl .modal-dialog {
  height: auto;
}
.cid-uYbUp2tZAl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp2tZAl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp2tZAl .form-wrapper .mbr-form .form-group,
  .cid-uYbUp2tZAl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp2tZAl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp2tZAl .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp2tZAl .mbr-text {
  text-align: center;
}
.cid-uYbUp2tZAl .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp2tZAl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp2tZAl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp2tZAl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp2tZAl .modal-open {
  overflow: hidden;
}
.cid-uYbUp2tZAl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp2tZAl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp2tZAl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp2tZAl .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp2tZAl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp2tZAl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp2tZAl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp2tZAl .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp2tZAl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp2tZAl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp2tZAl .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp2tZAl .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp2tZAl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2tZAl .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp2tZAl .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp2tZAl .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp2tZAl .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp2tZAl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uYbUp2tZAl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbUp2tZAl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2tZAl .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp2tZAl .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp2tZAl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2tZAl .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp2tZAl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp2tZAl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp2tZAl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp2tZAl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp2tZAl .modal-sm {
    max-width: 300px;
  }
  .cid-uYbUp2tZAl .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp2tZAl .modal-lg,
  .cid-uYbUp2tZAl .modal-xl {
    max-width: 800px;
  }
  .cid-uYbUp2tZAl .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp2tZAl .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbUp2tZAl .container {
    max-width: 1140px;
  }
}
.cid-uYbUp2tZAl .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbUp2tZAl .container {
    max-width: 720px;
  }
}
.cid-uYbUp2tZAl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp2tZAl .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp2tZAl .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp2tZAl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp2tZAl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp2tZAl .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp2tZAl .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp2tZAl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUp2YBWw.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp2YBWw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp2YBWw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp2YBWw .modal-content,
.cid-uYbUp2YBWw .modal-dialog {
  height: auto;
}
.cid-uYbUp2YBWw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp2YBWw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp2YBWw .form-wrapper .mbr-form .form-group,
  .cid-uYbUp2YBWw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp2YBWw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp2YBWw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp2YBWw .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYbUp2YBWw .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp2YBWw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp2YBWw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp2YBWw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp2YBWw .modal-open {
  overflow: hidden;
}
.cid-uYbUp2YBWw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp2YBWw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp2YBWw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp2YBWw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp2YBWw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp2YBWw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp2YBWw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp2YBWw .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp2YBWw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp2YBWw .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp2YBWw .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp2YBWw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp2YBWw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2YBWw .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp2YBWw .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp2YBWw .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp2YBWw .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp2YBWw .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uYbUp2YBWw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbUp2YBWw .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2YBWw .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp2YBWw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp2YBWw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp2YBWw .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp2YBWw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp2YBWw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp2YBWw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp2YBWw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp2YBWw .modal-sm {
    max-width: 300px;
  }
  .cid-uYbUp2YBWw .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp2YBWw .modal-lg,
  .cid-uYbUp2YBWw .modal-xl {
    max-width: 800px;
  }
  .cid-uYbUp2YBWw .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp2YBWw .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbUp2YBWw .container {
    max-width: 1140px;
  }
}
.cid-uYbUp2YBWw .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbUp2YBWw .container {
    max-width: 720px;
  }
}
.cid-uYbUp2YBWw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp2YBWw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp2YBWw .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp2YBWw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp2YBWw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp2YBWw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp2YBWw .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp2YBWw .mbr-section-btn .btn {
  margin: 0;
}
.cid-uYbUp3tT7c.popup-builder {
  background-color: #ffffff;
}
.cid-uYbUp3tT7c.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uYbUp3tT7c.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uYbUp3tT7c .modal-content,
.cid-uYbUp3tT7c .modal-dialog {
  height: auto;
}
.cid-uYbUp3tT7c .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uYbUp3tT7c .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uYbUp3tT7c .form-wrapper .mbr-form .form-group,
  .cid-uYbUp3tT7c .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uYbUp3tT7c .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uYbUp3tT7c .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uYbUp3tT7c .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-uYbUp3tT7c .pt-0 {
  padding-top: 0 !important;
}
.cid-uYbUp3tT7c .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uYbUp3tT7c .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uYbUp3tT7c .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uYbUp3tT7c .modal-open {
  overflow: hidden;
}
.cid-uYbUp3tT7c .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uYbUp3tT7c .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uYbUp3tT7c .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uYbUp3tT7c .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uYbUp3tT7c .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uYbUp3tT7c .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uYbUp3tT7c .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uYbUp3tT7c .modal-content {
  background: #1c1c1c;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uYbUp3tT7c .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uYbUp3tT7c .modal-backdrop.fade {
  opacity: 0;
}
.cid-uYbUp3tT7c .modal-backdrop.show {
  opacity: .5;
}
.cid-uYbUp3tT7c .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uYbUp3tT7c .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp3tT7c .modal-header {
    padding: 1rem;
  }
}
.cid-uYbUp3tT7c .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uYbUp3tT7c .modal-header .close:hover {
  opacity: 1;
}
.cid-uYbUp3tT7c .modal-header .close:focus {
  outline: none;
}
.cid-uYbUp3tT7c .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #cc2952;
}
.cid-uYbUp3tT7c .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uYbUp3tT7c .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp3tT7c .modal-body {
    padding: 1rem;
  }
}
.cid-uYbUp3tT7c .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYbUp3tT7c .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYbUp3tT7c .modal-footer {
    padding: 1rem;
  }
}
.cid-uYbUp3tT7c .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uYbUp3tT7c .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uYbUp3tT7c .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uYbUp3tT7c .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uYbUp3tT7c .modal-sm {
    max-width: 300px;
  }
  .cid-uYbUp3tT7c .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uYbUp3tT7c .modal-lg,
  .cid-uYbUp3tT7c .modal-xl {
    max-width: 800px;
  }
  .cid-uYbUp3tT7c .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uYbUp3tT7c .modal-xl {
    max-width: 1140px;
  }
  .cid-uYbUp3tT7c .container {
    max-width: 1140px;
  }
}
.cid-uYbUp3tT7c .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uYbUp3tT7c .container {
    max-width: 720px;
  }
}
.cid-uYbUp3tT7c .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uYbUp3tT7c .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uYbUp3tT7c .form-group {
  margin-bottom: 1rem;
}
.cid-uYbUp3tT7c .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uYbUp3tT7c .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uYbUp3tT7c .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uYbUp3tT7c .mbr-section-btn {
  margin: 0;
}
.cid-uYbUp3tT7c .mbr-section-btn .btn {
  margin: 0;
}
