body {
  font-family: Tilt Warp;
}
.display-1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 2.2rem;
  line-height: 60px;
  letter-spacing: 6px;
}
.display-1 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.4rem;
  line-height: 1.16em;
  letter-spacing: .06em;
}
.display-2 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-4 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
  letter-spacing: .02em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.325rem;
}
.display-5 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 2rem;
  line-height: 1.44em;
  letter-spacing: .06em;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.25rem;
  line-height: 1.67;
  letter-spacing: normal;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 1.76rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.54rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.848rem;
    font-size: calc( 1.021rem + (1.06 - 1.021) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.021rem + (1.06 - 1.021) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #6d359d !important;
}
.bg-info {
  background-color: #e85298 !important;
}
.bg-warning {
  background-color: #d58219 !important;
}
.bg-danger {
  background-color: #0068b5 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #cacaca !important;
  border-color: #cacaca !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9f9f9f !important;
  border-color: #9f9f9f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9f9f9f !important;
  border-color: #9f9f9f !important;
}
.btn-info,
.btn-info:active {
  background-color: #e85298 !important;
  border-color: #e85298 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c91b6c !important;
  border-color: #c91b6c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #c91b6c !important;
  border-color: #c91b6c !important;
}
.btn-success,
.btn-success:active {
  background-color: #6d359d !important;
  border-color: #6d359d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #401f5c !important;
  border-color: #401f5c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #401f5c !important;
  border-color: #401f5c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d58219 !important;
  border-color: #d58219 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #875310 !important;
  border-color: #875310 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #875310 !important;
  border-color: #875310 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #0068b5 !important;
  border-color: #0068b5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #00365e !important;
  border-color: #00365e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #00365e !important;
  border-color: #00365e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cacaca;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9f9f9f !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #cacaca !important;
  border-color: #cacaca !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e85298;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c91b6c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e85298 !important;
  border-color: #e85298 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6d359d;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #401f5c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6d359d !important;
  border-color: #6d359d !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d58219;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #875310 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d58219 !important;
  border-color: #d58219 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0068b5;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #00365e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #0068b5 !important;
  border-color: #0068b5 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #cacaca !important;
}
.text-success {
  color: #6d359d !important;
}
.text-info {
  color: #e85298 !important;
}
.text-warning {
  color: #d58219 !important;
}
.text-danger {
  color: #0068b5 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #979797 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #381b51 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #bb1965 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #7a4a0e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #002d4f !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e85298;
}
.alert-warning {
  background-color: #d58219;
}
.alert-danger {
  background-color: #0068b5;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ac7ed3;
}
.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: #f8e0c2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #36a9ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
  letter-spacing: .02em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.325rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
  letter-spacing: .02em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.325rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #cacaca !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  box-shadow: none;
  padding: 10px 70px;
}
@media (max-width: 768px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 10px 40px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-primary-outline::after,
.mbr-section-btn-main .btn-primary-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus {
  border: 2px solid transparent !important;
  color: #191919 !important;
  box-shadow: inset 0 -100px 0 0 #ffffff !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #cacaca;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-secondary-outline::after,
.mbr-section-btn-main .btn-secondary-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #cacaca;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus {
  border: 2px solid transparent !important;
  color: #000000 !important;
  box-shadow: inset 0 -100px 0 0 #cacaca !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #6d359d;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-success-outline::after,
.mbr-section-btn-main .btn-success-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #6d359d;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #6d359d !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #e85298;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-info-outline::after,
.mbr-section-btn-main .btn-info-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #e85298;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #e85298 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #d58219;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-warning-outline::after,
.mbr-section-btn-main .btn-warning-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #d58219;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #d58219 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #0068b5;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-danger-outline::after,
.mbr-section-btn-main .btn-danger-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #0068b5;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff !important;
  box-shadow: inset 0 -100px 0 0 #0068b5 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #ffffff;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-white-outline::after,
.mbr-section-btn-main .btn-white-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border: 2px solid transparent !important;
  color: #000000;
  box-shadow: inset 0 -100px 0 0 #ffffff !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 2px solid transparent !important;
  outline: 1px solid #000000;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-black-outline::after,
.mbr-section-btn-main .btn-black-outline::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 5px;
  width: 100%;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus {
  border: 2px solid transparent !important;
  color: #ffffff;
  box-shadow: inset 0 -100px 0 0 #000000 !important;
}
.cid-v0r9IHdBSO {
  z-index: 1000;
  width: 100%;
}
.cid-v0r9IHdBSO nav.navbar {
  position: fixed;
}
.cid-v0r9IHdBSO .container-fluid {
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-v0r9IHdBSO .container-fluid {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.cid-v0r9IHdBSO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0r9IHdBSO .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-v0r9IHdBSO .dropdown-item {
  border: none !important;
  background: #010a15 !important;
  font-weight: 400;
}
.cid-v0r9IHdBSO .dropdown-item:hover,
.cid-v0r9IHdBSO .dropdown-item:focus {
  background: #010a15 !important;
  color: #cacaca !important;
}
.cid-v0r9IHdBSO .dropdown-item:hover span {
  color: white;
}
.cid-v0r9IHdBSO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0r9IHdBSO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0r9IHdBSO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0r9IHdBSO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0r9IHdBSO .nav-link {
  position: relative;
}
.cid-v0r9IHdBSO .container {
  display: flex;
  margin: 0 auto;
  max-width: 1506px;
}
@media (min-width: 992px) {
  .cid-v0r9IHdBSO .container {
    flex-wrap: nowrap;
  }
}
.cid-v0r9IHdBSO .iconfont-wrapper {
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}
.cid-v0r9IHdBSO .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0r9IHdBSO .dropdown-menu,
.cid-v0r9IHdBSO .navbar.opened {
  background: #010a15 !important;
}
.cid-v0r9IHdBSO .nav-item:focus,
.cid-v0r9IHdBSO .nav-link:focus {
  outline: none;
}
.cid-v0r9IHdBSO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0r9IHdBSO .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-v0r9IHdBSO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0r9IHdBSO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0r9IHdBSO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0r9IHdBSO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 10px !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0r9IHdBSO .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #010a15;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: blur(5px);
}
.cid-v0r9IHdBSO .navbar.opened {
  transition: all 0.3s;
}
.cid-v0r9IHdBSO .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 16px;
  line-height: 1.5;
  border-radius: 0;
  margin-left: 4px;
  margin-bottom: 4px;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-v0r9IHdBSO .navbar .navbar-logo img {
  border-radius: 0 !important;
  width: auto;
}
.cid-v0r9IHdBSO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0r9IHdBSO .navbar.collapsed {
  justify-content: center;
}
.cid-v0r9IHdBSO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0r9IHdBSO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0r9IHdBSO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4rem);
  }
}
.cid-v0r9IHdBSO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0r9IHdBSO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0r9IHdBSO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v0r9IHdBSO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0r9IHdBSO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0r9IHdBSO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0r9IHdBSO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0r9IHdBSO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0r9IHdBSO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0r9IHdBSO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0r9IHdBSO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v0r9IHdBSO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0r9IHdBSO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0r9IHdBSO .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
    box-shadow: none;
  }
  .cid-v0r9IHdBSO .navbar .dropdown-menu .dropdown-item:hover {
    box-shadow: 0 3px 5px -2px #ffffff inset;
  }
  .cid-v0r9IHdBSO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-v0r9IHdBSO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0r9IHdBSO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0r9IHdBSO .navbar.navbar-short {
  min-height: 96px;
}
.cid-v0r9IHdBSO .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-v0r9IHdBSO .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-v0r9IHdBSO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0r9IHdBSO .navbar-brand .navbar-caption:hover,
.cid-v0r9IHdBSO .navbar-brand .navbar-caption:focus {
  color: #cacaca !important;
}
.cid-v0r9IHdBSO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0r9IHdBSO .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-v0r9IHdBSO .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #cacaca !important;
}
.cid-v0r9IHdBSO .dropdown-item.active,
.cid-v0r9IHdBSO .dropdown-item:active {
  background-color: transparent;
}
.cid-v0r9IHdBSO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0r9IHdBSO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0r9IHdBSO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0r9IHdBSO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #010a15;
  top: 3rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-v0r9IHdBSO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-v0r9IHdBSO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-v0r9IHdBSO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0r9IHdBSO ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-v0r9IHdBSO ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-v0r9IHdBSO .navbar-buttons {
  text-align: center;
  width: auto;
}
@media (min-width: 991px) {
  .cid-v0r9IHdBSO .navbar-buttons {
    text-align: center;
  }
}
.cid-v0r9IHdBSO .navbar-buttons .btn {
  white-space: nowrap;
  min-height: auto;
  width: auto;
}
@media (max-width: 575px) {
  .cid-v0r9IHdBSO .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-v0r9IHdBSO button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #010a15 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-v0r9IHdBSO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #e85298;
}
.cid-v0r9IHdBSO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-v0r9IHdBSO button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0r9IHdBSO button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-v0r9IHdBSO button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-v0r9IHdBSO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0r9IHdBSO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0r9IHdBSO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0r9IHdBSO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0r9IHdBSO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v0r9IHdBSO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0r9IHdBSO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v0r9IHdBSO .navbar {
    height: 70px;
  }
  .cid-v0r9IHdBSO .navbar.opened {
    height: auto;
  }
  .cid-v0r9IHdBSO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0r9IHdBSO .navbar-nav {
  margin: 0 auto;
}
.cid-v0r9IHdBSO .nav-item {
  padding: 0;
  margin: 0;
}
.cid-v0r9IHdBSO .nav-item .nav-link {
  padding: 8px 16px !important;
  margin: 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border-radius: 3rem;
}
.cid-v0r9IHdBSO .nav-item .nav-link::after {
  color: inherit !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-v0r9IHdBSO .nav-item .nav-link:hover {
  background-color: transparent;
  color: #cacaca !important;
  box-shadow: 0 3px 5px -2px #ffffff inset;
}
.cid-v0r9IHdBSO .nav-item .nav-link:hover::after {
  color: inherit !important;
}
.cid-v0r9IHdBSO .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-v0r9IHdBSO .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-v0r9IHdBSO .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-v0r9IHdBSO .navbar {
    justify-content: flex-start !important;
  }
  .cid-v0r9IHdBSO .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-v0r9IHdBSO .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-v0r9IHdBSO .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v0r9IHdBSO .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-v0r9IHdBSO .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid transparent;
  }
  .cid-v0r9IHdBSO .navbar-collapse .nav-item .nav-link {
    padding: 8px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
  .cid-v0r9IHdBSO img#menu-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 120px;
  }
}
.cid-v0r9IHdBSO .content-wrap {
  min-height: 110px;
}
.cid-v0r9IHdBSO img#menu-btn {
  max-width: 250px;
}
#custom-html-2d #Video {
  object-fit: cover；
  padding: 0px;
  margin: 0px;
  display: block;
  padding-top: 70px;
}
.cid-v0r8dHymW8 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v0r8dHymW8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0r8dHymW8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0r8dHymW8 .card {
  justify-content: center;
}
.cid-v0r8dHymW8 .content-wrapper .mbr-label {
  margin-bottom: 16px;
}
.cid-v0r8dHymW8 .content-wrapper .title-wrap {
  margin-bottom: 24px;
}
.cid-v0r8dHymW8 .content-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v0r8dHymW8 .content-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v0r8dHymW8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v0r8dHymW8 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v0r8dHymW8 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v0r8dHymW8 .border-wrapper {
  margin-top: 40px;
  height: 1px;
  width: 80%;
  background-image: linear-gradient(90deg, transparent -20%, #bbbbbb 50%, transparent 120%);
}
.cid-v0r8dHymW8 .mbr-label {
  color: #ffdf7d;
  text-align: center;
}
.cid-v0r8dHymW8 .mbr-section-title {
  color: #808080;
}
.cid-v0r8dHymW8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0r8dHymW8 .mbr-text {
  color: #808080;
  text-align: center;
}
.cid-v0r8dHymW8 .mbr-section-title,
.cid-v0r8dHymW8 .mbr-section-btn {
  text-align: center;
}
.cid-v0r8dHymW8 .mbr-text,
.cid-v0r8dHymW8 .text-wrapper {
  color: #cacaca;
  text-align: left;
}
.cid-v0CSRCTV1G {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v0CSRCTV1G .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0CSRCTV1G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0CSRCTV1G .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v0CSRCTV1G .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v0CSRCTV1G .items-wrap {
  justify-content: center;
}
.cid-v0CSRCTV1G .items-wrap .item {
  padding: 0 25px;
}
.cid-v0CSRCTV1G .item {
  margin-bottom: 32px;
}
.cid-v0CSRCTV1G .item:hover .item-wrapper .item-img img,
.cid-v0CSRCTV1G .item:focus .item-wrapper .item-img img {
  transform: scale(1.1) !important;
}
.cid-v0CSRCTV1G .item .item-wrapper .item-desc {
  margin-bottom: 22px;
}
.cid-v0CSRCTV1G .item .item-wrapper .item-img {
  margin-bottom: 22px;
}
.cid-v0CSRCTV1G .item .item-wrapper .item-img .image-wrapper {
  overflow: hidden;
}
.cid-v0CSRCTV1G .item .item-wrapper .item-img .image-wrapper img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v0CSRCTV1G .item .item-wrapper .item-img .image-wrapper img {
    width: 100%;
    height: auto;
  }
}
.cid-v0CSRCTV1G .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v0CSRCTV1G .item .item-wrapper .item-content .item-name {
  margin-bottom: 0;
}
.cid-v0CSRCTV1G .mbr-section-btn {
  margin-top: 42px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v0CSRCTV1G .mbr-section-btn {
    margin-top: 22px;
  }
}
.cid-v0CSRCTV1G .mbr-section-title {
  color: #191c25;
}
.cid-v0CSRCTV1G .item-desc {
  color: #191c25;
  text-align: center;
}
.cid-v0CSRCTV1G .item-title {
  color: #191c25;
  text-align: center;
}
.cid-v0CSRCTV1G .item-name {
  color: #191c25;
  text-align: center;
}
.cid-v0CSRCTV1G .mbr-section-title,
.cid-v0CSRCTV1G .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-v0BnTddT7v {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v0BnTddT7v .container-fluid {
  padding: 0 3rem;
}
.cid-v0BnTddT7v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff 50%, #cacaca 120%);
  display: inline-block;
}
.cid-v0BnTddT7v .mbr-section-subtitle {
  color: #fafafa;
}
.cid-v0BnTddT7v .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v0BnTddT7v .table-wrapper {
  margin: 0 auto;
}
.cid-v0BnTddT7v table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-v0BnTddT7v table th {
  padding: 0.6rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #00a0e9;
  color: white;
  vertical-align: middle;
}
.cid-v0BnTddT7v table td {
  padding: 0.6rem 0.5rem 0.6rem 2rem;
  vertical-align: middle;
}
.cid-v0BnTddT7v .break-row {
  background-color: #69afcf;
}
.cid-v0BnTddT7v .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v0BnTddT7v .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v0BnTddT7v .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v0BnTddT7v .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-v0BnTddT7v .dataTables_wrapper {
  display: block;
}
.cid-v0BnTddT7v .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v0BnTddT7v .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v0BnTddT7v .head-item:after,
.cid-v0BnTddT7v .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-v0BnTddT7v .dataTables_filter {
    text-align: center;
  }
  .cid-v0BnTddT7v .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-v0BnTddT7v .dataTables_filter {
    text-align: center;
  }
  .cid-v0BnTddT7v .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-v0BnTddT7v .container-fluid {
    padding: 0 0.5rem;
  }
  .cid-v0BnTddT7v table th,
  .cid-v0BnTddT7v table td {
    padding: 0.7rem 0.3rem;
  }
  .cid-v0BnTddT7v table .timeColumn {
    width: 22%;
  }
  .cid-v0BnTddT7v table .speakerColumn {
    width: 30%;
  }
}
.cid-v0BnTddT7v .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0BnTddT7v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0BnTddT7v .mbr-section-title,
.cid-v0BnTddT7v .underline {
  color: #ffffff;
}
.cid-v0BnTddT7v .timeColumn {
  width: 14%;
}
.cid-v0BnTddT7v .topicColumn {
  width: auto;
}
.cid-v0BnTddT7v .speakerColumn {
  width: 32%;
}
.cid-v0BnTddT7v .body-item {
  text-align: left;
  color: #fafafa;
}
.cid-v0BnTddT7v a.outline-btn {
  text-decoration: none !important;
  border: 1px solid #f48fb1;
  color: #f48fb1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  margin-left: 10px;
  display: inline-block;
}
.cid-v0BnTddT7v a.outline-btn:hover {
  background-color: #f48fb1;
  color: #000;
}
.cid-v0BnTddT7v .head-item {
  text-align: left;
}
.cid-v17RorjlEK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v17RorjlEK .container {
  max-width: 1132px;
}
.cid-v17RorjlEK .col-md-7 {
  margin: auto !important;
}
@media (max-width: 992px) {
  .cid-v17RorjlEK .b {
    margin-bottom: 20px;
  }
}
.cid-v0EWtYBPeO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v0EWtYBPeO .mbr-section-title {
  margin-bottom: 0px;
  color: #ffffff;
  text-align: center;
}
.cid-v0EWtYBPeO .link-title {
  width: 100%;
  display: inline-block;
}
.cid-v0EWtYBPeO .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-v0EWtYBPeO .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  margin-bottom: 5px;
}
.cid-v0EWtYBPeO .col-12.col-sm-6.col-lg-3:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-v0EWtYBPeO .col-12.col-sm-6.col-lg-3:hover .mbr-iconfont,
.cid-v0EWtYBPeO .col-12.col-sm-6.col-lg-3:hover .number,
.cid-v0EWtYBPeO .col-12.col-sm-6.col-lg-3:hover .card-title {
  color: #0068b5 !important;
}
.cid-v0EWtYBPeO .col-12.col-sm-6.col-lg-3:hover .inner {
  transform: scale(1.05) !important;
}
.cid-v0EWtYBPeO .card-title {
  transition: 0.35s;
  margin-bottom: 3px;
  color: #ffffff;
  text-align: center;
}
.cid-v0EWtYBPeO .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 30px;
}
.cid-v0EWtYBPeO .card-text {
  margin-bottom: 5px;
  color: #8c8c95;
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-v0EWtYBPeO .card-wrapper {
    margin: 10px;
  }
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-v0EWtYBPeO .col-12:nth-child(3) {
    padding-top: 30px;
  }
  .cid-v0EWtYBPeO .col-12:nth-child(4) {
    padding-top: 30px;
  }
  .cid-v0EWtYBPeO .card-wrapper {
    margin: 20px;
    padding: 40px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-v0EWtYBPeO .col-12 {
    padding-top: 20px;
  }
  .cid-v0EWtYBPeO .col-12:first-child {
    padding-top: 0px;
  }
  .cid-v0EWtYBPeO .wrap-img {
    margin-bottom: 5px;
  }
  .cid-v0EWtYBPeO .card-wrapper {
    margin: 10px;
    padding: 40px 30px 40px;
  }
}
.cid-v0EWtYBPeO .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-v0EWtYBPeO .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-v0EWtYBPeO .episode {
  color: #ffffff;
}
.cid-v0EWtYBPeO .img-title {
  color: #ffffff;
}
.cid-v0EWtYBPeO .margin {
  margin-right: 14px;
}
.cid-v0EWtYBPeO .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-v0EWtYBPeO .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-v0EWtYBPeO .title-block {
  padding-bottom: 30px;
  max-width: 493px;
  margin: auto;
}
.cid-v0EWtYBPeO .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-v0EWtYBPeO .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-v0EWtYBPeO .card-text,
.cid-v0EWtYBPeO .link-title {
  text-align: center;
  color: #ffffff;
}
.cid-v1t1eInj72 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
}
.cid-v1t1eInj72 .mbr-section-title {
  margin-bottom: 0px;
  color: #ffffff;
  text-align: center;
}
.cid-v1t1eInj72 .link-title {
  width: 100%;
  display: inline-block;
}
.cid-v1t1eInj72 .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-v1t1eInj72 .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px;
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
  margin-bottom: 5px;
}
.cid-v1t1eInj72 .col-12.col-sm-6.col-lg-3:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-v1t1eInj72 .col-12.col-sm-6.col-lg-3:hover .mbr-iconfont,
.cid-v1t1eInj72 .col-12.col-sm-6.col-lg-3:hover .number,
.cid-v1t1eInj72 .col-12.col-sm-6.col-lg-3:hover .card-title {
  color: #0068b5 !important;
}
.cid-v1t1eInj72 .col-12.col-sm-6.col-lg-3:hover .inner {
  transform: scale(1.05) !important;
}
.cid-v1t1eInj72 .card-title {
  transition: 0.35s;
  margin-bottom: 3px;
  color: #ffffff;
  text-align: center;
}
.cid-v1t1eInj72 .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  border-radius: 30px;
}
.cid-v1t1eInj72 .card-text {
  margin-bottom: 5px;
  color: #8c8c95;
}
@media (min-width: 970px) and (max-width: 1100px) {
  .cid-v1t1eInj72 .card-wrapper {
    margin: 10px;
  }
}
@media (min-width: 575px) and (max-width: 990px) {
  .cid-v1t1eInj72 .col-12:nth-child(3) {
    padding-top: 30px;
  }
  .cid-v1t1eInj72 .col-12:nth-child(4) {
    padding-top: 30px;
  }
  .cid-v1t1eInj72 .card-wrapper {
    margin: 20px;
    padding: 40px 30px 40px;
  }
}
@media (max-width: 574px) {
  .cid-v1t1eInj72 .col-12 {
    padding-top: 20px;
  }
  .cid-v1t1eInj72 .col-12:first-child {
    padding-top: 0px;
  }
  .cid-v1t1eInj72 .wrap-img {
    margin-bottom: 5px;
  }
  .cid-v1t1eInj72 .card-wrapper {
    margin: 10px;
    padding: 40px 30px 40px;
  }
}
.cid-v1t1eInj72 .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 37px 32px 43px;
}
.cid-v1t1eInj72 .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-v1t1eInj72 .episode {
  color: #ffffff;
}
.cid-v1t1eInj72 .img-title {
  color: #ffffff;
}
.cid-v1t1eInj72 .margin {
  margin-right: 14px;
}
.cid-v1t1eInj72 .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-v1t1eInj72 .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-v1t1eInj72 .title-block {
  padding-bottom: 30px;
  max-width: 493px;
  margin: auto;
}
.cid-v1t1eInj72 .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-v1t1eInj72 .display-4 > .mbr-iconfont {
  font-size: 16px;
}
.cid-v1t1eInj72 .card-text,
.cid-v1t1eInj72 .link-title {
  text-align: center;
  color: #ffffff;
}
.cid-tMSdD1Phma.popup-builder {
  background-color: #ffffff;
}
.cid-tMSdD1Phma.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tMSdD1Phma.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tMSdD1Phma .modal-content,
.cid-tMSdD1Phma .modal-dialog {
  height: auto;
}
.cid-tMSdD1Phma .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tMSdD1Phma .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tMSdD1Phma .form-wrapper .mbr-form .form-group,
  .cid-tMSdD1Phma .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tMSdD1Phma .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tMSdD1Phma .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-tMSdD1Phma .mbr-text {
  text-align: left;
}
.cid-tMSdD1Phma .pt-0 {
  padding-top: 0 !important;
}
.cid-tMSdD1Phma .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tMSdD1Phma .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tMSdD1Phma .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tMSdD1Phma .modal-open {
  overflow: hidden;
}
.cid-tMSdD1Phma .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tMSdD1Phma .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tMSdD1Phma .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tMSdD1Phma .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-tMSdD1Phma .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tMSdD1Phma .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tMSdD1Phma .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tMSdD1Phma .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tMSdD1Phma .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tMSdD1Phma .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tMSdD1Phma .modal-backdrop.fade {
  opacity: 0;
}
.cid-tMSdD1Phma .modal-backdrop.show {
  opacity: .5;
}
.cid-tMSdD1Phma .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-tMSdD1Phma .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdD1Phma .modal-header {
    padding: 1rem;
  }
}
.cid-tMSdD1Phma .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tMSdD1Phma .modal-header .close svg {
  fill: #353535;
}
.cid-tMSdD1Phma .modal-header .close:hover {
  opacity: 1;
}
.cid-tMSdD1Phma .modal-header .close:focus {
  outline: none;
}
.cid-tMSdD1Phma .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tMSdD1Phma .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tMSdD1Phma .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdD1Phma .modal-body {
    padding: 1rem;
  }
}
.cid-tMSdD1Phma .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-tMSdD1Phma .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdD1Phma .modal-footer {
    padding: 1rem;
  }
}
.cid-tMSdD1Phma .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tMSdD1Phma .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tMSdD1Phma .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tMSdD1Phma .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tMSdD1Phma .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tMSdD1Phma .modal-lg,
  .cid-tMSdD1Phma .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tMSdD1Phma .modal-xl {
    max-width: 1140px;
  }
}
.cid-tMSdD1Phma .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tMSdD1Phma .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-tMSdD1Phma .form-group {
  margin-bottom: 1rem;
}
.cid-tMSdD1Phma .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tMSdD1Phma .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tMSdD1Phma .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-tMSdD1Phma .mbr-section-btn {
  margin: 0;
}
.cid-tMSdD1Phma .mbr-section-btn .btn {
  margin: 0;
}
.cid-v17GLwK1ui.popup-builder {
  background-color: #ffffff;
}
.cid-v17GLwK1ui.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v17GLwK1ui.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v17GLwK1ui .modal-content,
.cid-v17GLwK1ui .modal-dialog {
  height: auto;
}
.cid-v17GLwK1ui .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v17GLwK1ui .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v17GLwK1ui .form-wrapper .mbr-form .form-group,
  .cid-v17GLwK1ui .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v17GLwK1ui .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v17GLwK1ui .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-v17GLwK1ui .mbr-text {
  text-align: left;
}
.cid-v17GLwK1ui .pt-0 {
  padding-top: 0 !important;
}
.cid-v17GLwK1ui .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v17GLwK1ui .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v17GLwK1ui .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v17GLwK1ui .modal-open {
  overflow: hidden;
}
.cid-v17GLwK1ui .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v17GLwK1ui .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v17GLwK1ui .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v17GLwK1ui .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-v17GLwK1ui .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v17GLwK1ui .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v17GLwK1ui .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v17GLwK1ui .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v17GLwK1ui .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v17GLwK1ui .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v17GLwK1ui .modal-backdrop.fade {
  opacity: 0;
}
.cid-v17GLwK1ui .modal-backdrop.show {
  opacity: .5;
}
.cid-v17GLwK1ui .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-v17GLwK1ui .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GLwK1ui .modal-header {
    padding: 1rem;
  }
}
.cid-v17GLwK1ui .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v17GLwK1ui .modal-header .close svg {
  fill: #353535;
}
.cid-v17GLwK1ui .modal-header .close:hover {
  opacity: 1;
}
.cid-v17GLwK1ui .modal-header .close:focus {
  outline: none;
}
.cid-v17GLwK1ui .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v17GLwK1ui .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v17GLwK1ui .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GLwK1ui .modal-body {
    padding: 1rem;
  }
}
.cid-v17GLwK1ui .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-v17GLwK1ui .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GLwK1ui .modal-footer {
    padding: 1rem;
  }
}
.cid-v17GLwK1ui .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v17GLwK1ui .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v17GLwK1ui .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v17GLwK1ui .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v17GLwK1ui .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v17GLwK1ui .modal-lg,
  .cid-v17GLwK1ui .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v17GLwK1ui .modal-xl {
    max-width: 1140px;
  }
}
.cid-v17GLwK1ui .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v17GLwK1ui .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-v17GLwK1ui .form-group {
  margin-bottom: 1rem;
}
.cid-v17GLwK1ui .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v17GLwK1ui .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v17GLwK1ui .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-v17GLwK1ui .mbr-section-btn {
  margin: 0;
}
.cid-v17GLwK1ui .mbr-section-btn .btn {
  margin: 0;
}
.cid-v17GMcOLt8.popup-builder {
  background-color: #ffffff;
}
.cid-v17GMcOLt8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v17GMcOLt8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v17GMcOLt8 .modal-content,
.cid-v17GMcOLt8 .modal-dialog {
  height: auto;
}
.cid-v17GMcOLt8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v17GMcOLt8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v17GMcOLt8 .form-wrapper .mbr-form .form-group,
  .cid-v17GMcOLt8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v17GMcOLt8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .mbr-text {
  text-align: left;
}
.cid-v17GMcOLt8 .pt-0 {
  padding-top: 0 !important;
}
.cid-v17GMcOLt8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v17GMcOLt8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v17GMcOLt8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v17GMcOLt8 .modal-open {
  overflow: hidden;
}
.cid-v17GMcOLt8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v17GMcOLt8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v17GMcOLt8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v17GMcOLt8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v17GMcOLt8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v17GMcOLt8 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v17GMcOLt8 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v17GMcOLt8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v17GMcOLt8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-v17GMcOLt8 .modal-backdrop.show {
  opacity: .5;
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GMcOLt8 .modal-header {
    padding: 1rem;
  }
}
.cid-v17GMcOLt8 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v17GMcOLt8 .modal-header .close svg {
  fill: #353535;
}
.cid-v17GMcOLt8 .modal-header .close:hover {
  opacity: 1;
}
.cid-v17GMcOLt8 .modal-header .close:focus {
  outline: none;
}
.cid-v17GMcOLt8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v17GMcOLt8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v17GMcOLt8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GMcOLt8 .modal-body {
    padding: 1rem;
  }
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17GMcOLt8 .modal-footer {
    padding: 1rem;
  }
}
.cid-v17GMcOLt8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v17GMcOLt8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v17GMcOLt8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v17GMcOLt8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v17GMcOLt8 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v17GMcOLt8 .modal-lg,
  .cid-v17GMcOLt8 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v17GMcOLt8 .modal-xl {
    max-width: 1140px;
  }
}
.cid-v17GMcOLt8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .form-group {
  margin-bottom: 1rem;
}
.cid-v17GMcOLt8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v17GMcOLt8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v17GMcOLt8 .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-v17GMcOLt8 .mbr-section-btn {
  margin: 0;
}
.cid-v17GMcOLt8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1t1BSV7Av.popup-builder {
  background-color: #ffffff;
}
.cid-v1t1BSV7Av.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1t1BSV7Av.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1t1BSV7Av .modal-content,
.cid-v1t1BSV7Av .modal-dialog {
  height: auto;
}
.cid-v1t1BSV7Av .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1t1BSV7Av .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1t1BSV7Av .form-wrapper .mbr-form .form-group,
  .cid-v1t1BSV7Av .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1t1BSV7Av .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .mbr-text {
  text-align: left;
}
.cid-v1t1BSV7Av .pt-0 {
  padding-top: 0 !important;
}
.cid-v1t1BSV7Av .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1t1BSV7Av .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1t1BSV7Av .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1t1BSV7Av .modal-open {
  overflow: hidden;
}
.cid-v1t1BSV7Av .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1t1BSV7Av .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1t1BSV7Av .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1t1BSV7Av .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1t1BSV7Av .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1t1BSV7Av .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v1t1BSV7Av .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1t1BSV7Av .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1t1BSV7Av .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1t1BSV7Av .modal-backdrop.show {
  opacity: .5;
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t1BSV7Av .modal-header {
    padding: 1rem;
  }
}
.cid-v1t1BSV7Av .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1t1BSV7Av .modal-header .close svg {
  fill: #353535;
}
.cid-v1t1BSV7Av .modal-header .close:hover {
  opacity: 1;
}
.cid-v1t1BSV7Av .modal-header .close:focus {
  outline: none;
}
.cid-v1t1BSV7Av .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v1t1BSV7Av .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1t1BSV7Av .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t1BSV7Av .modal-body {
    padding: 1rem;
  }
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t1BSV7Av .modal-footer {
    padding: 1rem;
  }
}
.cid-v1t1BSV7Av .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1t1BSV7Av .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1t1BSV7Av .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1t1BSV7Av .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1t1BSV7Av .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1t1BSV7Av .modal-lg,
  .cid-v1t1BSV7Av .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1t1BSV7Av .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1t1BSV7Av .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .form-group {
  margin-bottom: 1rem;
}
.cid-v1t1BSV7Av .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1t1BSV7Av .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1t1BSV7Av .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-v1t1BSV7Av .mbr-section-btn {
  margin: 0;
}
.cid-v1t1BSV7Av .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1tbAfsuGR.popup-builder {
  background-color: #ffffff;
}
.cid-v1tbAfsuGR.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1tbAfsuGR.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1tbAfsuGR .modal-content,
.cid-v1tbAfsuGR .modal-dialog {
  height: auto;
}
.cid-v1tbAfsuGR .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1tbAfsuGR .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1tbAfsuGR .form-wrapper .mbr-form .form-group,
  .cid-v1tbAfsuGR .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1tbAfsuGR .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .mbr-text {
  text-align: left;
}
.cid-v1tbAfsuGR .pt-0 {
  padding-top: 0 !important;
}
.cid-v1tbAfsuGR .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1tbAfsuGR .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1tbAfsuGR .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1tbAfsuGR .modal-open {
  overflow: hidden;
}
.cid-v1tbAfsuGR .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1tbAfsuGR .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1tbAfsuGR .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1tbAfsuGR .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1tbAfsuGR .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1tbAfsuGR .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v1tbAfsuGR .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1tbAfsuGR .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1tbAfsuGR .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1tbAfsuGR .modal-backdrop.show {
  opacity: .5;
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1tbAfsuGR .modal-header {
    padding: 1rem;
  }
}
.cid-v1tbAfsuGR .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1tbAfsuGR .modal-header .close svg {
  fill: #353535;
}
.cid-v1tbAfsuGR .modal-header .close:hover {
  opacity: 1;
}
.cid-v1tbAfsuGR .modal-header .close:focus {
  outline: none;
}
.cid-v1tbAfsuGR .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v1tbAfsuGR .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1tbAfsuGR .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1tbAfsuGR .modal-body {
    padding: 1rem;
  }
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1tbAfsuGR .modal-footer {
    padding: 1rem;
  }
}
.cid-v1tbAfsuGR .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1tbAfsuGR .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1tbAfsuGR .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1tbAfsuGR .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1tbAfsuGR .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1tbAfsuGR .modal-lg,
  .cid-v1tbAfsuGR .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1tbAfsuGR .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1tbAfsuGR .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .form-group {
  margin-bottom: 1rem;
}
.cid-v1tbAfsuGR .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1tbAfsuGR .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1tbAfsuGR .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-v1tbAfsuGR .mbr-section-btn {
  margin: 0;
}
.cid-v1tbAfsuGR .mbr-section-btn .btn {
  margin: 0;
}
.cid-tMSdEyjl0L.popup-builder {
  background-color: #ffffff;
}
.cid-tMSdEyjl0L.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tMSdEyjl0L.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tMSdEyjl0L .modal-content,
.cid-tMSdEyjl0L .modal-dialog {
  height: auto;
}
.cid-tMSdEyjl0L .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tMSdEyjl0L .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tMSdEyjl0L .form-wrapper .mbr-form .form-group,
  .cid-tMSdEyjl0L .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tMSdEyjl0L .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .mbr-text {
  text-align: left;
}
.cid-tMSdEyjl0L .pt-0 {
  padding-top: 0 !important;
}
.cid-tMSdEyjl0L .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tMSdEyjl0L .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tMSdEyjl0L .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tMSdEyjl0L .modal-open {
  overflow: hidden;
}
.cid-tMSdEyjl0L .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tMSdEyjl0L .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tMSdEyjl0L .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tMSdEyjl0L .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tMSdEyjl0L .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tMSdEyjl0L .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tMSdEyjl0L .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tMSdEyjl0L .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tMSdEyjl0L .modal-backdrop.fade {
  opacity: 0;
}
.cid-tMSdEyjl0L .modal-backdrop.show {
  opacity: .5;
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdEyjl0L .modal-header {
    padding: 1rem;
  }
}
.cid-tMSdEyjl0L .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tMSdEyjl0L .modal-header .close svg {
  fill: #353535;
}
.cid-tMSdEyjl0L .modal-header .close:hover {
  opacity: 1;
}
.cid-tMSdEyjl0L .modal-header .close:focus {
  outline: none;
}
.cid-tMSdEyjl0L .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #440e73;
}
.cid-tMSdEyjl0L .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tMSdEyjl0L .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdEyjl0L .modal-body {
    padding: 1rem;
  }
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMSdEyjl0L .modal-footer {
    padding: 1rem;
  }
}
.cid-tMSdEyjl0L .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tMSdEyjl0L .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tMSdEyjl0L .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tMSdEyjl0L .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tMSdEyjl0L .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tMSdEyjl0L .modal-lg,
  .cid-tMSdEyjl0L .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tMSdEyjl0L .modal-xl {
    max-width: 1140px;
  }
}
.cid-tMSdEyjl0L .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .form-group {
  margin-bottom: 1rem;
}
.cid-tMSdEyjl0L .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tMSdEyjl0L .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tMSdEyjl0L .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-tMSdEyjl0L .mbr-section-btn {
  margin: 0;
}
.cid-tMSdEyjl0L .mbr-section-btn .btn {
  margin: 0;
}
.cid-v17IS8YXbO.popup-builder {
  background-color: #ffffff;
}
.cid-v17IS8YXbO.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v17IS8YXbO.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v17IS8YXbO .modal-content,
.cid-v17IS8YXbO .modal-dialog {
  height: auto;
}
.cid-v17IS8YXbO .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v17IS8YXbO .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v17IS8YXbO .form-wrapper .mbr-form .form-group,
  .cid-v17IS8YXbO .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v17IS8YXbO .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v17IS8YXbO .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-v17IS8YXbO .mbr-text {
  text-align: left;
}
.cid-v17IS8YXbO .pt-0 {
  padding-top: 0 !important;
}
.cid-v17IS8YXbO .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v17IS8YXbO .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v17IS8YXbO .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v17IS8YXbO .modal-open {
  overflow: hidden;
}
.cid-v17IS8YXbO .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v17IS8YXbO .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v17IS8YXbO .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v17IS8YXbO .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-v17IS8YXbO .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v17IS8YXbO .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v17IS8YXbO .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v17IS8YXbO .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v17IS8YXbO .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v17IS8YXbO .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v17IS8YXbO .modal-backdrop.fade {
  opacity: 0;
}
.cid-v17IS8YXbO .modal-backdrop.show {
  opacity: .5;
}
.cid-v17IS8YXbO .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-v17IS8YXbO .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IS8YXbO .modal-header {
    padding: 1rem;
  }
}
.cid-v17IS8YXbO .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v17IS8YXbO .modal-header .close svg {
  fill: #353535;
}
.cid-v17IS8YXbO .modal-header .close:hover {
  opacity: 1;
}
.cid-v17IS8YXbO .modal-header .close:focus {
  outline: none;
}
.cid-v17IS8YXbO .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #440e73;
}
.cid-v17IS8YXbO .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v17IS8YXbO .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IS8YXbO .modal-body {
    padding: 1rem;
  }
}
.cid-v17IS8YXbO .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-v17IS8YXbO .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IS8YXbO .modal-footer {
    padding: 1rem;
  }
}
.cid-v17IS8YXbO .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v17IS8YXbO .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v17IS8YXbO .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v17IS8YXbO .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v17IS8YXbO .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v17IS8YXbO .modal-lg,
  .cid-v17IS8YXbO .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v17IS8YXbO .modal-xl {
    max-width: 1140px;
  }
}
.cid-v17IS8YXbO .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v17IS8YXbO .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-v17IS8YXbO .form-group {
  margin-bottom: 1rem;
}
.cid-v17IS8YXbO .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v17IS8YXbO .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v17IS8YXbO .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-v17IS8YXbO .mbr-section-btn {
  margin: 0;
}
.cid-v17IS8YXbO .mbr-section-btn .btn {
  margin: 0;
}
.cid-v17IT6yu24.popup-builder {
  background-color: #ffffff;
}
.cid-v17IT6yu24.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v17IT6yu24.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v17IT6yu24 .modal-content,
.cid-v17IT6yu24 .modal-dialog {
  height: auto;
}
.cid-v17IT6yu24 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v17IT6yu24 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v17IT6yu24 .form-wrapper .mbr-form .form-group,
  .cid-v17IT6yu24 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v17IT6yu24 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v17IT6yu24 .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-v17IT6yu24 .mbr-text {
  text-align: left;
}
.cid-v17IT6yu24 .pt-0 {
  padding-top: 0 !important;
}
.cid-v17IT6yu24 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v17IT6yu24 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v17IT6yu24 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v17IT6yu24 .modal-open {
  overflow: hidden;
}
.cid-v17IT6yu24 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v17IT6yu24 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v17IT6yu24 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v17IT6yu24 .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-v17IT6yu24 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v17IT6yu24 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v17IT6yu24 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v17IT6yu24 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v17IT6yu24 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v17IT6yu24 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v17IT6yu24 .modal-backdrop.fade {
  opacity: 0;
}
.cid-v17IT6yu24 .modal-backdrop.show {
  opacity: .5;
}
.cid-v17IT6yu24 .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-v17IT6yu24 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IT6yu24 .modal-header {
    padding: 1rem;
  }
}
.cid-v17IT6yu24 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v17IT6yu24 .modal-header .close svg {
  fill: #353535;
}
.cid-v17IT6yu24 .modal-header .close:hover {
  opacity: 1;
}
.cid-v17IT6yu24 .modal-header .close:focus {
  outline: none;
}
.cid-v17IT6yu24 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #440e73;
}
.cid-v17IT6yu24 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v17IT6yu24 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IT6yu24 .modal-body {
    padding: 1rem;
  }
}
.cid-v17IT6yu24 .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-v17IT6yu24 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v17IT6yu24 .modal-footer {
    padding: 1rem;
  }
}
.cid-v17IT6yu24 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v17IT6yu24 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v17IT6yu24 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v17IT6yu24 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v17IT6yu24 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v17IT6yu24 .modal-lg,
  .cid-v17IT6yu24 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v17IT6yu24 .modal-xl {
    max-width: 1140px;
  }
}
.cid-v17IT6yu24 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v17IT6yu24 .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-v17IT6yu24 .form-group {
  margin-bottom: 1rem;
}
.cid-v17IT6yu24 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v17IT6yu24 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v17IT6yu24 .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-v17IT6yu24 .mbr-section-btn {
  margin: 0;
}
.cid-v17IT6yu24 .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1bz2ePkHL.popup-builder {
  background-color: #ffffff;
}
.cid-v1bz2ePkHL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1bz2ePkHL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1bz2ePkHL .modal-content,
.cid-v1bz2ePkHL .modal-dialog {
  height: auto;
}
.cid-v1bz2ePkHL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1bz2ePkHL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1bz2ePkHL .form-wrapper .mbr-form .form-group,
  .cid-v1bz2ePkHL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1bz2ePkHL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .mbr-text {
  text-align: left;
}
.cid-v1bz2ePkHL .pt-0 {
  padding-top: 0 !important;
}
.cid-v1bz2ePkHL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1bz2ePkHL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1bz2ePkHL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1bz2ePkHL .modal-open {
  overflow: hidden;
}
.cid-v1bz2ePkHL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1bz2ePkHL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1bz2ePkHL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1bz2ePkHL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1bz2ePkHL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1bz2ePkHL .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v1bz2ePkHL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1bz2ePkHL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1bz2ePkHL .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1bz2ePkHL .modal-backdrop.show {
  opacity: .5;
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1bz2ePkHL .modal-header {
    padding: 1rem;
  }
}
.cid-v1bz2ePkHL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1bz2ePkHL .modal-header .close svg {
  fill: #353535;
}
.cid-v1bz2ePkHL .modal-header .close:hover {
  opacity: 1;
}
.cid-v1bz2ePkHL .modal-header .close:focus {
  outline: none;
}
.cid-v1bz2ePkHL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #440e73;
}
.cid-v1bz2ePkHL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1bz2ePkHL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1bz2ePkHL .modal-body {
    padding: 1rem;
  }
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1bz2ePkHL .modal-footer {
    padding: 1rem;
  }
}
.cid-v1bz2ePkHL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1bz2ePkHL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1bz2ePkHL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1bz2ePkHL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1bz2ePkHL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1bz2ePkHL .modal-lg,
  .cid-v1bz2ePkHL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1bz2ePkHL .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1bz2ePkHL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .form-group {
  margin-bottom: 1rem;
}
.cid-v1bz2ePkHL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1bz2ePkHL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1bz2ePkHL .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-v1bz2ePkHL .mbr-section-btn {
  margin: 0;
}
.cid-v1bz2ePkHL .mbr-section-btn .btn {
  margin: 0;
}
.cid-v1t2wlb4lE.popup-builder {
  background-color: #ffffff;
}
.cid-v1t2wlb4lE.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v1t2wlb4lE.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v1t2wlb4lE .modal-content,
.cid-v1t2wlb4lE .modal-dialog {
  height: auto;
}
.cid-v1t2wlb4lE .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v1t2wlb4lE .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v1t2wlb4lE .form-wrapper .mbr-form .form-group,
  .cid-v1t2wlb4lE .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v1t2wlb4lE .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .mbr-text {
  text-align: left;
}
.cid-v1t2wlb4lE .pt-0 {
  padding-top: 0 !important;
}
.cid-v1t2wlb4lE .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v1t2wlb4lE .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v1t2wlb4lE .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v1t2wlb4lE .modal-open {
  overflow: hidden;
}
.cid-v1t2wlb4lE .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v1t2wlb4lE .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v1t2wlb4lE .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v1t2wlb4lE .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v1t2wlb4lE .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v1t2wlb4lE .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v1t2wlb4lE .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v1t2wlb4lE .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v1t2wlb4lE .modal-backdrop.fade {
  opacity: 0;
}
.cid-v1t2wlb4lE .modal-backdrop.show {
  opacity: .5;
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t2wlb4lE .modal-header {
    padding: 1rem;
  }
}
.cid-v1t2wlb4lE .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v1t2wlb4lE .modal-header .close svg {
  fill: #353535;
}
.cid-v1t2wlb4lE .modal-header .close:hover {
  opacity: 1;
}
.cid-v1t2wlb4lE .modal-header .close:focus {
  outline: none;
}
.cid-v1t2wlb4lE .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #440e73;
}
.cid-v1t2wlb4lE .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v1t2wlb4lE .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t2wlb4lE .modal-body {
    padding: 1rem;
  }
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v1t2wlb4lE .modal-footer {
    padding: 1rem;
  }
}
.cid-v1t2wlb4lE .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v1t2wlb4lE .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v1t2wlb4lE .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v1t2wlb4lE .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v1t2wlb4lE .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v1t2wlb4lE .modal-lg,
  .cid-v1t2wlb4lE .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v1t2wlb4lE .modal-xl {
    max-width: 1140px;
  }
}
.cid-v1t2wlb4lE .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .form-group {
  margin-bottom: 1rem;
}
.cid-v1t2wlb4lE .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v1t2wlb4lE .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v1t2wlb4lE .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-v1t2wlb4lE .mbr-section-btn {
  margin: 0;
}
.cid-v1t2wlb4lE .mbr-section-btn .btn {
  margin: 0;
}
.cid-v0rlMzDmTX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  background-attachment: fixed;
}
.cid-v0rlMzDmTX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rlMzDmTX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0rlMzDmTX .container {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1599px) {
  .cid-v0rlMzDmTX .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.cid-v0rlMzDmTX .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-v0rlMzDmTX .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1599px) {
  .cid-v0rlMzDmTX .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-v0rlMzDmTX .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  .cid-v0rlMzDmTX .row .col-lg-2_4 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.cid-v0rlMzDmTX .mbr-section-head {
  width: 100%;
}
.cid-v0rlMzDmTX .mbr-section-title {
  color: #FF014E;
}
@media (max-width: 767px) {
  .cid-v0rlMzDmTX .mbr-section-title {
    text-align: center;
  }
}
.cid-v0rlMzDmTX .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-v0rlMzDmTX .mbr-section-subtitle {
    margin-top: 10px;
    text-align: center;
  }
}
.cid-v0rlMzDmTX .card-row {
  align-items: stretch;
}
.cid-v0rlMzDmTX .item {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-v0rlMzDmTX .item {
    margin-top: 30px;
  }
}
.cid-v0rlMzDmTX .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #e85298, #440e73);
}
@media (max-width: 575px) {
  .cid-v0rlMzDmTX .item-wrapper {
    padding: 20px;
  }
}
.cid-v0rlMzDmTX .item-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-v0rlMzDmTX .item-wrapper:hover .item-img img {
  transform: scale(1.1);
}
.cid-v0rlMzDmTX .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(to right bottom, #1f1677, #1f1677);
  opacity: 0;
  transition: .4s all;
}
.cid-v0rlMzDmTX .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-v0rlMzDmTX .item-img img {
  width: 100%;
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: 0.4s all;
}
.cid-v0rlMzDmTX .card-box {
  position: relative;
  z-index: 5;
  padding-top: 10px;
}
.cid-v0rlMzDmTX .card-title {
  position: relative;
  z-index: 5;
  color: #ffdf7d;
  margin-bottom: 5px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-v0rlMzDmTX .card-title {
    margin-bottom: 5px;
  }
}
.cid-v0rlMzDmTX .card-text {
  position: relative;
  z-index: 5;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 26px;
  text-align: center;
}
.cid-v0rlMzDmTX .card-text a {
  transition: .4s all;
}
.cid-v0rlMzDmTX .card-text a:hover {
  color: #ffffff !important;
}
.cid-tLRYMdKqk9 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.cid-tLRYMdKqk9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLRYMdKqk9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 575px) {
  .cid-tLRYMdKqk9 .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tLRYMdKqk9 .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tLRYMdKqk9 .mbr-section-title {
  color: #ffffff;
}
.cid-tLRYMdKqk9 .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cid-tLRYMdKqk9 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tLRYMdKqk9 .card-row {
  align-items: stretch;
}
.cid-tLRYMdKqk9 .card {
  margin-top: 30px;
}
.cid-tLRYMdKqk9 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
}
.cid-tLRYMdKqk9 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tLRYMdKqk9 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #fafafa, #ffffff);
  opacity: 0;
  transition: .5s all;
}
.cid-tLRYMdKqk9 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tLRYMdKqk9 .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.cid-tLRYMdKqk9 .item-img img {
  width: 200px;
  max-height: auto;
  max-width: 100%;
  object-fit: contain;
}
.cid-tLRYMdKqk9 .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tLRYMdKqk9 .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tLRYMdKqk9 .card-title a {
  transition: 0.4s all;
}
.cid-tLRYMdKqk9 .card-title a:hover {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tLRYMdKqk9 div#sponsor-logos {
    max-width: 1200px;
  }
  .cid-tLRYMdKqk9 div#sponsor-logos .card-row .card {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .cid-tLRYMdKqk9 div#sponsor-logos {
    max-width: 1425px;
  }
}
@media (min-width: 1400px) {
  .cid-tLRYMdKqk9 div#sponsor-logos {
    max-width: 1650px;
  }
}
.cid-v1tcSiDfhj {
  padding-top: 2rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.cid-v1tcSiDfhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1tcSiDfhj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 575px) {
  .cid-v1tcSiDfhj .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-v1tcSiDfhj .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-v1tcSiDfhj .mbr-section-title {
  color: #ffffff;
}
.cid-v1tcSiDfhj .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cid-v1tcSiDfhj .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-v1tcSiDfhj .card-row {
  align-items: stretch;
}
.cid-v1tcSiDfhj .card {
  margin-top: 30px;
}
.cid-v1tcSiDfhj .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
}
.cid-v1tcSiDfhj .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-v1tcSiDfhj .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #fafafa, #ffffff);
  opacity: 0;
  transition: .5s all;
}
.cid-v1tcSiDfhj .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-v1tcSiDfhj .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.cid-v1tcSiDfhj .item-img img {
  width: 200px;
  max-height: auto;
  max-width: 100%;
  object-fit: contain;
}
.cid-v1tcSiDfhj .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-v1tcSiDfhj .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-v1tcSiDfhj .card-title a {
  transition: 0.4s all;
}
.cid-v1tcSiDfhj .card-title a:hover {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-v1tcSiDfhj div#sponsor-logos {
    max-width: 1200px;
  }
  .cid-v1tcSiDfhj div#sponsor-logos .card-row .card {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .cid-v1tcSiDfhj div#sponsor-logos {
    max-width: 1425px;
  }
}
@media (min-width: 1400px) {
  .cid-v1tcSiDfhj div#sponsor-logos {
    max-width: 1650px;
  }
}
.cid-tLVJwnnakg {
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1210bg-1028.jpg-2000x1147.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-tLVJwnnakg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLVJwnnakg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 575px) {
  .cid-tLVJwnnakg .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-tLVJwnnakg .mbr-section-head {
  margin-bottom: 10px;
  width: 100%;
}
.cid-tLVJwnnakg .mbr-section-title {
  color: #ffffff;
}
.cid-tLVJwnnakg .mbr-section-subtitle {
  color: #C4CFDE;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .cid-tLVJwnnakg .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-tLVJwnnakg .card-row {
  align-items: stretch;
}
.cid-tLVJwnnakg .card {
  margin-top: 30px;
}
.cid-tLVJwnnakg .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #ffffff);
}
.cid-tLVJwnnakg .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-tLVJwnnakg .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #fafafa, #ffffff);
  opacity: 0;
  transition: .5s all;
}
.cid-tLVJwnnakg .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
}
.cid-tLVJwnnakg .item-img {
  height: 150px;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.cid-tLVJwnnakg .item-img img {
  width: 200px;
  max-height: auto;
  max-width: 100%;
  object-fit: contain;
}
.cid-tLVJwnnakg .text-item {
  padding: 16px;
  width: 100%;
  border-top: 1px solid #16181c;
}
.cid-tLVJwnnakg .card-title {
  color: #878e99;
  margin-bottom: 0;
}
.cid-tLVJwnnakg .card-title a {
  transition: 0.4s all;
}
.cid-tLVJwnnakg .card-title a:hover {
  color: #ffffff !important;
}
@media (min-width: 992px) {
  .cid-tLVJwnnakg div#sponsor-logos {
    max-width: 1200px;
  }
  .cid-tLVJwnnakg div#sponsor-logos .card-row .card {
    width: 20%;
  }
}
@media (min-width: 1200px) {
  .cid-tLVJwnnakg div#sponsor-logos {
    max-width: 1425px;
  }
}
@media (min-width: 1400px) {
  .cid-tLVJwnnakg div#sponsor-logos {
    max-width: 1650px;
  }
}
#custom-html-2x {
  /* 第二顆：往上推 + 間距 */
  /* hover 效果 */
  /* 小螢幕調整 */
}
#custom-html-2x .floating-button {
  position: fixed;
  width: 80px;
  height: 80px;
  right: 25px;
  z-index: 100;
  transition: transform 0.25s ease;
  /* 動畫過渡 */
}
#custom-html-2x .floating-button-image {
  width: 100%;
  height: 100%;
  display: block;
}
#custom-html-2x .floating-button.btn-2 {
  bottom: 30px;
}
#custom-html-2x #custom-html-2x .floating-button:hover {
  transform: scale(1.1) !important;
}
@media (max-width: 576px) {
  #custom-html-2x .floating-button {
    width: 60px;
    height: 60px;
    right: 15px;
  }
  #custom-html-2x .floating-button.btn-2 {
    bottom: 15px;
  }
}
.cid-v0CuyyfEjL {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ecede8;
}
.cid-v0CuyyfEjL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-v0CuyyfEjL form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-v0CuyyfEjL form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-v0CuyyfEjL form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v0CuyyfEjL .mbr-section-title {
  color: #440e73;
}
.cid-v0CuyyfEjL .remind {
  color: red;
}
.cid-v15PYw1t3r.popup-builder {
  background-color: #ffffff;
}
.cid-v15PYw1t3r.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v15PYw1t3r.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v15PYw1t3r .modal-content,
.cid-v15PYw1t3r .modal-dialog {
  height: auto;
}
.cid-v15PYw1t3r .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v15PYw1t3r .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v15PYw1t3r .form-wrapper .mbr-form .form-group,
  .cid-v15PYw1t3r .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v15PYw1t3r .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v15PYw1t3r .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-v15PYw1t3r .mbr-text {
  text-align: center;
  color: #e60012;
}
.cid-v15PYw1t3r .pt-0 {
  padding-top: 0 !important;
}
.cid-v15PYw1t3r .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v15PYw1t3r .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v15PYw1t3r .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v15PYw1t3r .modal-open {
  overflow: hidden;
}
.cid-v15PYw1t3r .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v15PYw1t3r .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v15PYw1t3r .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v15PYw1t3r .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-v15PYw1t3r .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v15PYw1t3r .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v15PYw1t3r .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v15PYw1t3r .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v15PYw1t3r .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v15PYw1t3r .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v15PYw1t3r .modal-backdrop.fade {
  opacity: 0;
}
.cid-v15PYw1t3r .modal-backdrop.show {
  opacity: .5;
}
.cid-v15PYw1t3r .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-v15PYw1t3r .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v15PYw1t3r .modal-header {
    padding: 1rem;
  }
}
.cid-v15PYw1t3r .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v15PYw1t3r .modal-header .close svg {
  fill: #353535;
}
.cid-v15PYw1t3r .modal-header .close:hover {
  opacity: 1;
}
.cid-v15PYw1t3r .modal-header .close:focus {
  outline: none;
}
.cid-v15PYw1t3r .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v15PYw1t3r .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v15PYw1t3r .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v15PYw1t3r .modal-body {
    padding: 1rem;
  }
}
.cid-v15PYw1t3r .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-v15PYw1t3r .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v15PYw1t3r .modal-footer {
    padding: 1rem;
  }
}
.cid-v15PYw1t3r .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v15PYw1t3r .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v15PYw1t3r .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v15PYw1t3r .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v15PYw1t3r .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v15PYw1t3r .modal-lg,
  .cid-v15PYw1t3r .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v15PYw1t3r .modal-xl {
    max-width: 1140px;
  }
}
.cid-v15PYw1t3r .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v15PYw1t3r .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-v15PYw1t3r .form-group {
  margin-bottom: 1rem;
}
.cid-v15PYw1t3r .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v15PYw1t3r .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v15PYw1t3r .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-v15PYw1t3r .mbr-section-btn {
  margin: 0;
}
.cid-v15PYw1t3r .mbr-section-btn .btn {
  margin: 0;
}
.cid-v0Bld3gPNY {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-v0Bld3gPNY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0Bld3gPNY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v0Bld3gPNY .container {
    padding: 0 22px;
  }
}
.cid-v0Bld3gPNY .row {
  justify-content: center;
}
.cid-v0Bld3gPNY .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v0Bld3gPNY .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v0Bld3gPNY .panel-group .card {
  border-radius: 0 !important;
}
.cid-v0Bld3gPNY .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  border-radius: 0;
  padding: 20px;
}
.cid-v0Bld3gPNY .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v0Bld3gPNY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v0Bld3gPNY .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-left: 16px;
}
.cid-v0Bld3gPNY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-v0Bld3gPNY .panel-group .card .panel-collapse .panel-body {
  padding: 15px 25px;
}
.cid-v0Bld3gPNY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v0Bld3gPNY .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v0Bld3gPNY .panel-title-edit {
  color: #ffffff;
}
.cid-v0Bld3gPNY .panel-text {
  color: #ffffff;
}
.cid-v0rprzcGbR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #232323;
}
.cid-v0rprzcGbR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0rprzcGbR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v0rprzcGbR .row .map-wrapper {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v0rprzcGbR .row .map-wrapper {
    margin-top: 1rem;
  }
}
.cid-v0rprzcGbR .google-map {
  height: 100%;
  position: relative;
}
.cid-v0rprzcGbR .google-map iframe {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-v0rprzcGbR .google-map iframe {
    min-height: 350px;
  }
}
.cid-v0rprzcGbR .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v0rprzcGbR .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v0rprzcGbR .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v0rprzcGbR .card-wrapper {
  padding: 2.25rem;
  background: #ffffff;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-v0rprzcGbR .card-wrapper {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0rprzcGbR .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
.cid-v0rprzcGbR ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-v0rprzcGbR .content-head {
  max-width: 800px;
}
.cid-v0rprzcGbR .cardTitle {
  color: #440e73;
}
.cid-tLFbzFcZT3 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #424242;
}
