.btn {
  border-width: 2px;
}
body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-4 {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Lexend', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Lexend', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #a148ff !important;
}
.bg-success {
  background-color: #263d5a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  background-color: #a148ff !important;
  background: linear-gradient(90deg, #a148ff 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-primary,
.btn-primary:active {
  background-color: #a148ff;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #7500f0;
}
.btn-primary:hover {
  transform: translateY(-3px);
}
.btn-secondary {
  background-color: #ff6f45 !important;
  background: linear-gradient(90deg, #ff6f45 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6f45;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ed3600;
}
.btn-secondary:hover {
  transform: translateY(-3px);
}
.btn-info {
  background-color: #47b5ed !important;
  background: linear-gradient(90deg, #47b5ed 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca;
}
.btn-info:hover {
  transform: translateY(-3px);
}
.btn-success {
  background-color: #263d5a !important;
  background: linear-gradient(90deg, #263d5a 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-success,
.btn-success:active {
  background-color: #263d5a;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c141d;
}
.btn-success:hover {
  transform: translateY(-3px);
}
.btn-warning {
  background-color: #ffe161 !important;
  background: linear-gradient(90deg, #ffe161 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161;
  color: #614f00 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a;
}
.btn-warning:hover {
  transform: translateY(-3px);
}
.btn-danger {
  background-color: #ff9966 !important;
  background: linear-gradient(90deg, #ff9966 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f;
}
.btn-danger:hover {
  transform: translateY(-3px);
}
.btn-white {
  background-color: #fafafa !important;
  background: linear-gradient(90deg, #fafafa 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa;
  color: #7a7a7a !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf;
}
.btn-white:hover {
  transform: translateY(-3px);
}
.btn-black {
  background-color: #232323 !important;
  background: linear-gradient(90deg, #232323 0%, #ff6f45 100%);
  border: none;
  transition: all 0.3s;
}
.btn-black,
.btn-black:active {
  background-color: #232323;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000;
}
.btn-black:hover {
  transform: translateY(-3px);
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #a148ff;
  color: #a148ff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #7500f0 !important;
  background-color: transparent!important;
  border-color: #7500f0 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a148ff !important;
  border-color: #a148ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6f45;
  color: #ff6f45;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ed3600 !important;
  background-color: transparent!important;
  border-color: #ed3600 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6f45 !important;
  border-color: #ff6f45 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #263d5a;
  color: #263d5a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c141d !important;
  background-color: transparent!important;
  border-color: #0c141d !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #263d5a !important;
  border-color: #263d5a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !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: #a148ff !important;
}
.text-secondary {
  color: #ff6f45 !important;
}
.text-success {
  color: #263d5a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d00e1 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #de3200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #080c12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !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: #a148ff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a148ff;
  border-color: #a148ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a148ff;
}
.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: #4c7ab3;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #a148ff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Lexend', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #a148ff;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a148ff;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #a148ff;
}
.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: #a148ff;
  border-bottom-color: #a148ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #a148ff !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: #ff6f45 !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='%23a148ff' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v3F6IvIvKx {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #190f2a;
}
.cid-v3F6IvIvKx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3F6IvIvKx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3F6IvIvKx .content-wrapper {
  position: relative;
  z-index: 1;
  width: 60%;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  .cid-v3F6IvIvKx .content-wrapper {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .cid-v3F6IvIvKx .content-wrapper {
    width: 100%;
  }
}
.cid-v3F6IvIvKx .content-wrapper .subtitle-wrapper .mbr-section-title {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #ffffff, #ca45ff 50%, #ffa997);
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v3F6IvIvKx .content-wrapper .subtitle-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-v3F6IvIvKx .content-wrapper .gradient-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: linear-gradient(135deg, #ffffff, #7042ad, #fe881b);
  filter: blur(4rem);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v3F6IvIvKx .content-wrapper .gradient-wrap {
    height: 50%;
  }
}
.cid-v3F6IvIvKx .content-wrapper .mbr-figure {
  position: relative;
  z-index: 1;
}
.cid-v3F6IvIvKx .mbr-section-title {
  color: #ffffff;
}
.cid-v3F6IvIvKx .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v3F6IvIvKx .mbr-section-title,
.cid-v3F6IvIvKx .mbr-section-btn,
.cid-v3F6IvIvKx .subtitle-wrapper {
  text-align: center;
}
.cid-v3F6IvIvKx .mbr-section-title,
.cid-v3F6IvIvKx .subtitle-wrapper {
  color: #e03c19;
}
.cid-v3F7fnLpI8 {
  padding-top: 4.2rem;
  padding-bottom: 4.6rem;
  background-image: url("../../../assets/images/money20up-1000x865.webp");
}
.cid-v3F7fnLpI8 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v3F7fnLpI8 .mbr-text,
.cid-v3F7fnLpI8 .mbr-section-btn {
  color: #ffffff;
}
.cid-v3F7fnLpI8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v3F7fnLpI8 .container-text {
  margin-top: 6.31rem;
  margin-bottom: 0.63rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-v3F7fnLpI8 .container-text {
    margin-top: 6.25rem;
  }
}
@media (max-width: 767px) {
  .cid-v3F7fnLpI8 .container-text {
    margin-top: 4.37rem;
  }
}
@media (max-width: 479px) {
  .cid-v3F7fnLpI8 .container-text {
    margin-top: 3.75rem;
  }
}
.cid-v3F7fnLpI8 .container {
  align-items: flex-start;
  box-shadow: 0 0 0 0 rgba(255, 142, 94, 0.5);
}
.cid-v3F7fnLpI8 .mbr-section-subtitle,
.cid-v3F7fnLpI8 .mbr-section-btn {
  text-align: center;
}
.cid-v3F6UjfcsD {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v3F6UjfcsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3F6UjfcsD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3F6UjfcsD .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .container {
    padding: 0 16px;
  }
}
.cid-v3F6UjfcsD .row {
  margin: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .row {
    margin: 0 10px;
  }
}
.cid-v3F6UjfcsD .row .card {
  padding: 0;
}
.cid-v3F6UjfcsD .title-wrapper {
  border-radius: 20px;
  padding: 45px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .title-wrapper {
    padding: 45px 20px;
  }
}
.cid-v3F6UjfcsD .title-wrapper .mbr-section-subtitle {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v3F6UjfcsD .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v3F6UjfcsD .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3F6UjfcsD .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v3F6UjfcsD .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v3F6UjfcsD .mbr-section-subtitle {
  color: #4a5357;
  text-align: center;
}
.cid-v3F6UjfcsD .mbr-section-title {
  color: #192227;
}
.cid-v3F6UjfcsD .mbr-text {
  color: #0a75b5;
  text-align: center;
}
.cid-v3F6UjfcsD .mbr-section-title,
.cid-v3F6UjfcsD .mbr-section-btn {
  text-align: center;
}
.cid-v4eNH5vYdI {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-v4eNH5vYdI .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-v4eNH5vYdI .title-wrapper {
  padding: 0 12px;
}
.cid-v4eNH5vYdI .text-block {
  padding: 48px 24px;
}
.cid-v4eNH5vYdI .video-wrapper iframe {
  width: 100%;
}
.cid-v4eNH5vYdI .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-v4eNH5vYdI .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-v4eNH5vYdI .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-v4eNH5vYdI .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-v4eNH5vYdI .mbr-text,
.cid-v4eNH5vYdI .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-v4eNH5vYdI .video-block {
    border-left: none;
  }
  .cid-v4eNH5vYdI .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-v4eNH5vYdI .title-wrapper {
    padding: 0 48px;
  }
  .cid-v4eNH5vYdI .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-v4eNH5vYdI .mbr-section-subtitle {
  color: #ffbc37;
}
.cid-v5dMCs72vM {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v5dMCs72vM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5dMCs72vM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5dMCs72vM .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .container {
    padding: 0 16px;
  }
}
.cid-v5dMCs72vM .row {
  margin: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .row {
    margin: 0 10px;
  }
}
.cid-v5dMCs72vM .row .card {
  padding: 0;
}
.cid-v5dMCs72vM .title-wrapper {
  border-radius: 20px;
  padding: 45px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .title-wrapper {
    padding: 45px 20px;
  }
}
.cid-v5dMCs72vM .title-wrapper .mbr-section-subtitle {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v5dMCs72vM .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v5dMCs72vM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5dMCs72vM .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v5dMCs72vM .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v5dMCs72vM .mbr-section-subtitle {
  color: #4a5357;
  text-align: center;
}
.cid-v5dMCs72vM .mbr-section-title {
  color: #192227;
}
.cid-v5dMCs72vM .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v5dMCs72vM .mbr-section-title,
.cid-v5dMCs72vM .mbr-section-btn {
  text-align: justify;
  color: #000000;
}
.cid-v5dPTS14l8 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-v5dPTS14l8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5dPTS14l8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5dPTS14l8 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .container {
    padding: 0 16px;
  }
}
.cid-v5dPTS14l8 .row {
  margin: 0 20px;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .row {
    margin: 0 10px;
  }
}
.cid-v5dPTS14l8 .row .card {
  padding: 0;
}
.cid-v5dPTS14l8 .title-wrapper {
  border-radius: 20px;
  padding: 45px;
  background-color: #f7f7f7;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .title-wrapper {
    padding: 45px 20px;
  }
}
.cid-v5dPTS14l8 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v5dPTS14l8 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v5dPTS14l8 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v5dPTS14l8 .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v5dPTS14l8 .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v5dPTS14l8 .mbr-section-subtitle {
  color: #4a5357;
  text-align: center;
}
.cid-v5dPTS14l8 .mbr-section-title {
  color: #192227;
}
.cid-v5dPTS14l8 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-v5dPTS14l8 .mbr-section-title,
.cid-v5dPTS14l8 .mbr-section-btn {
  text-align: justify;
  color: #000000;
}
.cid-v5hoqxXdqb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ecede8;
}
.cid-v5hoqxXdqb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5hoqxXdqb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5hoqxXdqb img {
  border-radius: 3rem;
}
.cid-v5hoqxXdqb .row {
  flex-direction: row-reverse;
}
.cid-v5hoqxXdqb .row {
  align-items: center;
}
.cid-v5hoqxXdqb .mbr-section-title {
  color: #491414;
}
.cid-v5hoqxXdqb .mbr-text,
.cid-v5hoqxXdqb .mbr-section-btn {
  color: #491414;
}
.cid-v3FfVB8LaY {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #212132;
}
.cid-v3FfVB8LaY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FfVB8LaY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3FfVB8LaY .row {
  justify-content: left;
}
.cid-v3FfVB8LaY .mbr-section-title {
  color: #FFDD65;
}
.cid-v3FfVB8LaY .mbr-section-subtitle {
  color: #FFDD65;
  background-image: linear-gradient(90deg, currentColor 2.76%, #ffaa5c 29.66%, #ff49c0 61%, #8e59ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-v3FfVB8LaY .btn-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 96px;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .btn-container {
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
  }
}
.cid-v3FfVB8LaY .custom-mbr-section-btn {
  padding-bottom: 0.42rem;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .custom-mbr-section-btn {
    padding-bottom: 0;
  }
}
.cid-v3FfVB8LaY .custom-section-btn {
  height: 100%;
}
.cid-v3FfVB8LaY .custom-section-btn .btn {
  height: 100%;
}
.cid-v3FfVB8LaY .text-container {
  max-width: 384px;
  margin-left: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .text-container {
    margin: 26px auto 0;
  }
}
.cid-v3FfVB8LaY .mbr-text {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .mbr-text {
    text-align: center !important;
  }
}
.cid-v3FfVB8LaY .text-item-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 26px;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .text-item-container {
    flex-wrap: wrap;
  }
}
.cid-v3FfVB8LaY .text-item {
  display: flex;
  align-items: center;
  max-width: 48%;
}
@media (max-width: 991px) {
  .cid-v3FfVB8LaY .text-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
}
.cid-v3FfVB8LaY .icon-text {
  color: #ffffff;
  opacity: 0.6;
}
.cid-v3FfVB8LaY .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.cid-v3FfVB8LaY .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 24px;
  color: #ae5eff;
}
.cid-v3F9mEHq21 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-v3F9mEHq21 .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-v3F9mEHq21 .title-wrapper {
  padding: 0 12px;
}
.cid-v3F9mEHq21 .text-block {
  padding: 48px 24px;
}
.cid-v3F9mEHq21 .video-wrapper iframe {
  width: 100%;
}
.cid-v3F9mEHq21 .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-v3F9mEHq21 .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-v3F9mEHq21 .mbr-description {
  text-align: center;
  color: #5cff01;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-v3F9mEHq21 .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-v3F9mEHq21 .mbr-text,
.cid-v3F9mEHq21 .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-v3F9mEHq21 .video-block {
    border-left: none;
  }
  .cid-v3F9mEHq21 .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-v3F9mEHq21 .title-wrapper {
    padding: 0 48px;
  }
  .cid-v3F9mEHq21 .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-v3F9mEHq21 .mbr-section-subtitle {
  color: #ffbc37;
}
.cid-v4Oq14r5wh {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-886x591.webp");
}
.cid-v4Oq14r5wh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Oq14r5wh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Oq14r5wh .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-v4Oq14r5wh .mbr-section-title {
  margin-bottom: 48px;
  color: #ffffff;
}
.cid-v4Oq14r5wh .mbr-text {
  margin-top: 48px;
  color: #FFFFFF;
}
.cid-v4Oq14r5wh .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4Oq14r5wh iframe,
.cid-v4Oq14r5wh img,
.cid-v4Oq14r5wh video {
  width: 100%;
}
.cid-v4Oq14r5wh .mbr-figure {
  width: 100%;
}
.cid-v4ZylFHnhs {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #6ec7f2;
}
.cid-v4ZylFHnhs .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  width: 115px;
  height: 115px;
}
.cid-v4ZylFHnhs .item-wrapper {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  transition: all 0.3s;
  position: relative;
  justify-content: center;
}
@media (max-width: 1400px) {
  .cid-v4ZylFHnhs .item-wrapper {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4ZylFHnhs .item-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v4ZylFHnhs .item-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v4ZylFHnhs .item-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-v4ZylFHnhs .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-v4ZylFHnhs .row {
  justify-content: center;
}
.cid-v4ZylFHnhs .card-box {
  position: relative;
  z-index: 1;
}
.cid-v4ZylFHnhs .item {
  margin-bottom: 2rem;
}
.cid-v4ZylFHnhs .card-text {
  color: #000000;
}
.cid-v4ZylFHnhs .card-title,
.cid-v4ZylFHnhs .iconfont-wrapper {
  color: #263d5a;
}
.cid-v4ZylFHnhs .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v4ZylFHnhs .mbr-section-title {
  color: #263d5a;
}
.cid-v4ZBxQflES {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #6ec7f2;
}
.cid-v4ZBxQflES .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  width: 115px;
  height: 115px;
}
.cid-v4ZBxQflES .item-wrapper {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  transition: all 0.3s;
  position: relative;
  justify-content: center;
}
@media (max-width: 1400px) {
  .cid-v4ZBxQflES .item-wrapper {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v4ZBxQflES .item-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v4ZBxQflES .item-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v4ZBxQflES .item-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-v4ZBxQflES .item-wrapper:hover {
  transform: translateY(-5px);
}
.cid-v4ZBxQflES .row {
  justify-content: center;
}
.cid-v4ZBxQflES .card-box {
  position: relative;
  z-index: 1;
}
.cid-v4ZBxQflES .item {
  margin-bottom: 2rem;
}
.cid-v4ZBxQflES .card-text {
  color: #000000;
}
.cid-v4ZBxQflES .card-title,
.cid-v4ZBxQflES .iconfont-wrapper {
  color: #263d5a;
}
.cid-v4ZBxQflES .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v4ZBxQflES .mbr-section-title {
  color: #263d5a;
}
.cid-v4xTfVgrcR {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background5-2.webp");
}
.cid-v4xTfVgrcR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4xTfVgrcR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4xTfVgrcR .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-v4xTfVgrcR .mbr-section-title {
  margin-bottom: 48px;
  color: #FFFFFF;
}
.cid-v4xTfVgrcR .mbr-text {
  margin-top: 48px;
  color: #FFFFFF;
}
.cid-v4xTfVgrcR .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4xTfVgrcR iframe,
.cid-v4xTfVgrcR img,
.cid-v4xTfVgrcR video {
  width: 100%;
}
.cid-v4xTfVgrcR .mbr-figure {
  width: 100%;
}
.cid-tvbSGtyHIt {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2-1920x957.webp");
}
.cid-tvbSGtyHIt .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-tvbSGtyHIt .mbr-text {
  color: #8d97ad;
}
.cid-tvbSGtyHIt .card-wrap {
  background-color: #9fdbf8;
  padding: 2rem;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tvbSGtyHIt .mbr-text,
.cid-tvbSGtyHIt .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-v4YW6ZvGz8 {
  padding-top: 7rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1357.webp");
}
.cid-v4YW6ZvGz8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4YW6ZvGz8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4YW6ZvGz8 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-v4YW6ZvGz8 .mbr-section-title {
  margin-bottom: 48px;
  color: #FFFFFF;
}
.cid-v4YW6ZvGz8 .mbr-text {
  margin-top: 48px;
  color: #FFFFFF;
}
.cid-v4YW6ZvGz8 .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4YW6ZvGz8 iframe,
.cid-v4YW6ZvGz8 img,
.cid-v4YW6ZvGz8 video {
  width: 100%;
}
.cid-v4YW6ZvGz8 .mbr-figure {
  width: 100%;
}
.cid-v0btQiVTmm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #353535;
}
.cid-v0btQiVTmm .mbr-text {
  color: #ffe885;
}
.cid-v0btQiVTmm .mbr-text a {
  color: #47b5ed;
}
.cid-v0btQiVTmm .list {
  padding-left: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-v0btQiVTmm .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v0btQiVTmm .list {
    margin-bottom: 0rem;
  }
}
.cid-v0btQiVTmm .list .mbr-link-btn {
  display: inline-block;
}
.cid-v0btQiVTmm .list .mbr-link-btn::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-v0btQiVTmm .list .mbr-link-btn.last::after {
  display: none;
}
@media (max-width: 768px) {
  .cid-v0btQiVTmm .list .mbr-link-btn {
    display: block;
  }
  .cid-v0btQiVTmm .list .mbr-link-btn::after {
    display: none;
  }
}
.cid-v0btQiVTmm .list a {
  padding: 0;
  margin: 0;
}
.cid-v0btQiVTmm .list a:hover {
  text-decoration: underline;
  color: #000000;
}
.cid-v0btQiVTmm .list a::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-v0btQiVTmm .list a:last-child::after {
  display: none;
}
.cid-v0btQiVTmm .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-v0btQiVTmm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .cid-v0btQiVTmm .social-media ul {
    text-align: center;
  }
}
.cid-v0btQiVTmm .social-media ul li {
  padding: 6px;
  display: inline-block;
}
.cid-v0btQiVTmm a:link {
  text-decoration: none;
}
.cid-v0btQiVTmm .icon-transition span {
  text-align: center;
  color: #74a3c7;
  display: block;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  border: 1px solid #74a3c7;
  width: 3em;
  transition: all 0.3s ease-out 0s;
  font-size: 16px;
}
.cid-v0btQiVTmm .icon-transition span:hover {
  background-color: #74a3c7;
  color: #ffffff;
}
.cid-v0bdqPaFGa.popup-builder {
  background-color: #ffffff;
}
.cid-v0bdqPaFGa.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v0bdqPaFGa.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v0bdqPaFGa .modal-content,
.cid-v0bdqPaFGa .modal-dialog {
  height: auto;
}
.cid-v0bdqPaFGa .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v0bdqPaFGa .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v0bdqPaFGa .form-wrapper .mbr-form .form-group,
  .cid-v0bdqPaFGa .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v0bdqPaFGa .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v0bdqPaFGa .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-v0bdqPaFGa .mbr-text {
  text-align: center;
}
.cid-v0bdqPaFGa .pt-0 {
  padding-top: 0 !important;
}
.cid-v0bdqPaFGa .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v0bdqPaFGa .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v0bdqPaFGa .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v0bdqPaFGa .modal-open {
  overflow: hidden;
}
.cid-v0bdqPaFGa .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v0bdqPaFGa .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v0bdqPaFGa .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v0bdqPaFGa .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-v0bdqPaFGa .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v0bdqPaFGa .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v0bdqPaFGa .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v0bdqPaFGa .modal-content {
  background: #55b4d4;
  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-v0bdqPaFGa .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v0bdqPaFGa .modal-backdrop.fade {
  opacity: 0;
}
.cid-v0bdqPaFGa .modal-backdrop.show {
  opacity: .5;
}
.cid-v0bdqPaFGa .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-v0bdqPaFGa .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v0bdqPaFGa .modal-header .close:hover {
  opacity: 1;
}
.cid-v0bdqPaFGa .modal-header .close:focus {
  outline: none;
}
.cid-v0bdqPaFGa .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-v0bdqPaFGa .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v0bdqPaFGa .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-v0bdqPaFGa .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v0bdqPaFGa .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v0bdqPaFGa .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v0bdqPaFGa .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v0bdqPaFGa .modal-sm {
    max-width: 300px;
  }
  .cid-v0bdqPaFGa .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v0bdqPaFGa .modal-lg,
  .cid-v0bdqPaFGa .modal-xl {
    max-width: 800px;
  }
  .cid-v0bdqPaFGa .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v0bdqPaFGa .modal-xl {
    max-width: 1140px;
  }
  .cid-v0bdqPaFGa .container {
    max-width: 1140px;
  }
}
.cid-v0bdqPaFGa .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v0bdqPaFGa .container {
    max-width: 720px;
  }
}
.cid-v0bdqPaFGa .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v0bdqPaFGa .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-v0bdqPaFGa .form-group {
  margin-bottom: 1rem;
}
.cid-v0bdqPaFGa .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v0bdqPaFGa .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v0bdqPaFGa .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-v4JTzkunuW.popup-builder {
  background-color: #ffffff;
}
.cid-v4JTzkunuW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4JTzkunuW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4JTzkunuW .modal-content,
.cid-v4JTzkunuW .modal-dialog {
  height: auto;
}
.cid-v4JTzkunuW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4JTzkunuW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4JTzkunuW .form-wrapper .mbr-form .form-group,
  .cid-v4JTzkunuW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4JTzkunuW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4JTzkunuW .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-v4JTzkunuW .mbr-text {
  text-align: center;
}
.cid-v4JTzkunuW .pt-0 {
  padding-top: 0 !important;
}
.cid-v4JTzkunuW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4JTzkunuW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4JTzkunuW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4JTzkunuW .modal-open {
  overflow: hidden;
}
.cid-v4JTzkunuW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4JTzkunuW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4JTzkunuW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4JTzkunuW .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-v4JTzkunuW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4JTzkunuW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4JTzkunuW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4JTzkunuW .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-v4JTzkunuW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4JTzkunuW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4JTzkunuW .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4JTzkunuW .modal-backdrop.show {
  opacity: .5;
}
.cid-v4JTzkunuW .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-v4JTzkunuW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4JTzkunuW .modal-header {
    padding: 1rem;
  }
}
.cid-v4JTzkunuW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4JTzkunuW .modal-header .close svg {
  fill: #353535;
}
.cid-v4JTzkunuW .modal-header .close:hover {
  opacity: 1;
}
.cid-v4JTzkunuW .modal-header .close:focus {
  outline: none;
}
.cid-v4JTzkunuW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4JTzkunuW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4JTzkunuW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4JTzkunuW .modal-body {
    padding: 1rem;
  }
}
.cid-v4JTzkunuW .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-v4JTzkunuW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4JTzkunuW .modal-footer {
    padding: 1rem;
  }
}
.cid-v4JTzkunuW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4JTzkunuW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4JTzkunuW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4JTzkunuW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4JTzkunuW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4JTzkunuW .modal-lg,
  .cid-v4JTzkunuW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4JTzkunuW .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4JTzkunuW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4JTzkunuW .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-v4JTzkunuW .form-group {
  margin-bottom: 1rem;
}
.cid-v4JTzkunuW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4JTzkunuW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4JTzkunuW .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-v4JTzkunuW .mbr-section-btn {
  margin: 0;
}
.cid-v4JTzkunuW .mbr-section-btn .btn {
  margin: 0;
}
.cid-v4PtAyQg9H.popup-builder {
  background-color: #ffffff;
}
.cid-v4PtAyQg9H.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4PtAyQg9H.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4PtAyQg9H .modal-content,
.cid-v4PtAyQg9H .modal-dialog {
  height: auto;
}
.cid-v4PtAyQg9H .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4PtAyQg9H .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4PtAyQg9H .form-wrapper .mbr-form .form-group,
  .cid-v4PtAyQg9H .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4PtAyQg9H .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .mbr-text {
  text-align: justify;
}
.cid-v4PtAyQg9H .pt-0 {
  padding-top: 0 !important;
}
.cid-v4PtAyQg9H .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4PtAyQg9H .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4PtAyQg9H .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4PtAyQg9H .modal-open {
  overflow: hidden;
}
.cid-v4PtAyQg9H .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4PtAyQg9H .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4PtAyQg9H .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4PtAyQg9H .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4PtAyQg9H .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4PtAyQg9H .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4PtAyQg9H .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4PtAyQg9H .modal-backdrop.show {
  opacity: .5;
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PtAyQg9H .modal-header {
    padding: 1rem;
  }
}
.cid-v4PtAyQg9H .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4PtAyQg9H .modal-header .close svg {
  fill: #353535;
}
.cid-v4PtAyQg9H .modal-header .close:hover {
  opacity: 1;
}
.cid-v4PtAyQg9H .modal-header .close:focus {
  outline: none;
}
.cid-v4PtAyQg9H .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4PtAyQg9H .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4PtAyQg9H .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PtAyQg9H .modal-body {
    padding: 1rem;
  }
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PtAyQg9H .modal-footer {
    padding: 1rem;
  }
}
.cid-v4PtAyQg9H .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4PtAyQg9H .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4PtAyQg9H .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4PtAyQg9H .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4PtAyQg9H .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4PtAyQg9H .modal-lg,
  .cid-v4PtAyQg9H .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4PtAyQg9H .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4PtAyQg9H .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .form-group {
  margin-bottom: 1rem;
}
.cid-v4PtAyQg9H .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4PtAyQg9H .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4PtAyQg9H .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-v4PtAyQg9H .mbr-section-btn {
  margin: 0;
}
.cid-v4PtAyQg9H .mbr-section-btn .btn {
  margin: 0;
}
.cid-v4PVjThN0r.popup-builder {
  background-color: #ffffff;
}
.cid-v4PVjThN0r.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4PVjThN0r.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4PVjThN0r .modal-content,
.cid-v4PVjThN0r .modal-dialog {
  height: auto;
}
.cid-v4PVjThN0r .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4PVjThN0r .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4PVjThN0r .form-wrapper .mbr-form .form-group,
  .cid-v4PVjThN0r .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4PVjThN0r .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4PVjThN0r .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-v4PVjThN0r .mbr-text {
  text-align: center;
}
.cid-v4PVjThN0r .pt-0 {
  padding-top: 0 !important;
}
.cid-v4PVjThN0r .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4PVjThN0r .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4PVjThN0r .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4PVjThN0r .modal-open {
  overflow: hidden;
}
.cid-v4PVjThN0r .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4PVjThN0r .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4PVjThN0r .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4PVjThN0r .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-v4PVjThN0r .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4PVjThN0r .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4PVjThN0r .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4PVjThN0r .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-v4PVjThN0r .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4PVjThN0r .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4PVjThN0r .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4PVjThN0r .modal-backdrop.show {
  opacity: .5;
}
.cid-v4PVjThN0r .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-v4PVjThN0r .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PVjThN0r .modal-header {
    padding: 1rem;
  }
}
.cid-v4PVjThN0r .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4PVjThN0r .modal-header .close svg {
  fill: #353535;
}
.cid-v4PVjThN0r .modal-header .close:hover {
  opacity: 1;
}
.cid-v4PVjThN0r .modal-header .close:focus {
  outline: none;
}
.cid-v4PVjThN0r .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4PVjThN0r .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4PVjThN0r .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PVjThN0r .modal-body {
    padding: 1rem;
  }
}
.cid-v4PVjThN0r .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-v4PVjThN0r .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4PVjThN0r .modal-footer {
    padding: 1rem;
  }
}
.cid-v4PVjThN0r .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4PVjThN0r .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4PVjThN0r .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4PVjThN0r .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4PVjThN0r .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4PVjThN0r .modal-lg,
  .cid-v4PVjThN0r .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4PVjThN0r .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4PVjThN0r .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4PVjThN0r .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-v4PVjThN0r .form-group {
  margin-bottom: 1rem;
}
.cid-v4PVjThN0r .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4PVjThN0r .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4PVjThN0r .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-v4PVjThN0r .mbr-section-btn {
  margin: 0;
}
.cid-v4PVjThN0r .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5bPQ5Ln4k.popup-builder {
  background-color: #ffffff;
}
.cid-v5bPQ5Ln4k.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5bPQ5Ln4k.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5bPQ5Ln4k .modal-content,
.cid-v5bPQ5Ln4k .modal-dialog {
  height: auto;
}
.cid-v5bPQ5Ln4k .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5bPQ5Ln4k .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5bPQ5Ln4k .form-wrapper .mbr-form .form-group,
  .cid-v5bPQ5Ln4k .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5bPQ5Ln4k .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .mbr-text {
  text-align: center;
}
.cid-v5bPQ5Ln4k .pt-0 {
  padding-top: 0 !important;
}
.cid-v5bPQ5Ln4k .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5bPQ5Ln4k .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5bPQ5Ln4k .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5bPQ5Ln4k .modal-open {
  overflow: hidden;
}
.cid-v5bPQ5Ln4k .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5bPQ5Ln4k .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5bPQ5Ln4k .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5bPQ5Ln4k .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5bPQ5Ln4k .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5bPQ5Ln4k .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5bPQ5Ln4k .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5bPQ5Ln4k .modal-backdrop.show {
  opacity: .5;
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bPQ5Ln4k .modal-header {
    padding: 1rem;
  }
}
.cid-v5bPQ5Ln4k .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5bPQ5Ln4k .modal-header .close svg {
  fill: #353535;
}
.cid-v5bPQ5Ln4k .modal-header .close:hover {
  opacity: 1;
}
.cid-v5bPQ5Ln4k .modal-header .close:focus {
  outline: none;
}
.cid-v5bPQ5Ln4k .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5bPQ5Ln4k .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5bPQ5Ln4k .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bPQ5Ln4k .modal-body {
    padding: 1rem;
  }
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bPQ5Ln4k .modal-footer {
    padding: 1rem;
  }
}
.cid-v5bPQ5Ln4k .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5bPQ5Ln4k .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5bPQ5Ln4k .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5bPQ5Ln4k .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5bPQ5Ln4k .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5bPQ5Ln4k .modal-lg,
  .cid-v5bPQ5Ln4k .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5bPQ5Ln4k .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5bPQ5Ln4k .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .form-group {
  margin-bottom: 1rem;
}
.cid-v5bPQ5Ln4k .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5bPQ5Ln4k .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5bPQ5Ln4k .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-v5bPQ5Ln4k .mbr-section-btn {
  margin: 0;
}
.cid-v5bPQ5Ln4k .mbr-section-btn .btn {
  margin: 0;
}
.cid-v4szbkRigH {
  padding-top: 8rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/04-1-1200x800.webp");
}
.cid-v4szbkRigH .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-v4szbkRigH .title-wrapper {
  padding: 0 12px;
  padding: 0 24px;
}
.cid-v4szbkRigH .text-block {
  padding: 48px 24px;
}
.cid-v4szbkRigH .video-wrapper iframe {
  width: 100%;
}
.cid-v4szbkRigH .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-v4szbkRigH .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-v4szbkRigH .mbr-description {
  text-align: center;
  color: #000000;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-v4szbkRigH .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-v4szbkRigH .mbr-text,
.cid-v4szbkRigH .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-v4szbkRigH .video-block {
    border-left: none;
  }
  .cid-v4szbkRigH .row {
    padding: 0 12px;
  }
  .cid-v4szbkRigH .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-v4szbkRigH .title-wrapper {
    padding: 0 48px;
    padding: 0 60px;
  }
  .cid-v4szbkRigH .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
  .cid-v4szbkRigH .row {
    padding: 0 16px;
  }
}
.cid-v4szbkRigH .mbr-section-subtitle {
  color: #000000;
}
.cid-v3FjmWSAAo {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-4-1920x1277.webp");
}
.cid-v3FjmWSAAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FjmWSAAo .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-v3FjmWSAAo .container {
    padding: 0 15px;
  }
}
.cid-v3FjmWSAAo .content-wrapper {
  padding-left: 80px;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .cid-v3FjmWSAAo .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v3FjmWSAAo .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-v3FjmWSAAo .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-v3FjmWSAAo .content-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v3FjmWSAAo .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v3FjmWSAAo .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3FjmWSAAo .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-v3FjmWSAAo .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-v3FjmWSAAo .image-wrapper img {
  width: 400px;
  height: 400px;
  border: 3px solid #373d52;
  box-shadow: 10px 10px 50px #d2d2df;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1500px) {
  .cid-v3FjmWSAAo .image-wrapper img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 1199px) {
  .cid-v3FjmWSAAo .image-wrapper img {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 1200px) {
  .cid-v3FjmWSAAo .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-v3FjmWSAAo .mbr-section-title {
  color: #ffffff;
}
.cid-v3FjmWSAAo .mbr-section-subtitle {
  color: #f2ac2b;
}
.cid-v3FjmWSAAo .mbr-text {
  color: #d2d2df;
}
.cid-v3FhILVnYX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-v3FhILVnYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3FhILVnYX .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-v3FhILVnYX .container {
    padding: 0 30px;
  }
}
.cid-v3FhILVnYX .card {
  justify-content: center;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 992px) {
  .cid-v3FhILVnYX .card {
    flex-direction: column;
    align-items: normal;
  }
}
.cid-v3FhILVnYX .content-wrapper {
  padding: 150px 88px 150px 120px;
}
@media (max-width: 1440px) {
  .cid-v3FhILVnYX .content-wrapper {
    padding: 150px 48px 150px 60px;
  }
}
@media (max-width: 992px) {
  .cid-v3FhILVnYX .content-wrapper {
    padding: 0;
    margin-bottom: 60px;
  }
}
.cid-v3FhILVnYX .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3FhILVnYX .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v3FhILVnYX .content-wrapper .mbr-text {
  margin-bottom: 30px;
}
.cid-v3FhILVnYX .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v3FhILVnYX .image-wrapper img {
    min-height: auto;
  }
}
.cid-v3FhILVnYX .mbr-section-title {
  color: #bee0d6;
}
.cid-v3FhILVnYX .mbr-text {
  color: #bee0d6;
}
.cid-v3FhILVnYX .mbr-section-title,
.cid-v3FhILVnYX .mbr-section-btn {
  text-align: justify;
  color: #ffffff;
}
.cid-v3FjYQtdde {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1076x745.webp");
}
.cid-v3FjYQtdde .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-v3FjYQtdde .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-v3FjYQtdde .mbr-figure img {
    width: 100% !important;
  }
}
.cid-v3FjYQtdde .mbr-text,
.cid-v3FjYQtdde .mbr-section-btn {
  color: #ffffff;
}
.cid-v3FjYQtdde H1 {
  color: #5cff00;
  text-align: left;
}
.cid-v3FjYQtdde H3 {
  color: #e43f3f;
  text-align: center;
}
.cid-v3FjYQtdde H2 {
  color: #ffffff;
  text-align: left;
}
.cid-v4x7H2E3yy {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #232323;
}
.cid-v4x7H2E3yy .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4x7H2E3yy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4x7H2E3yy .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-v4x7H2E3yy .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-v4x7H2E3yy .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-v4x7H2E3yy .container {
    padding: 0 20px;
  }
}
.cid-v4x7H2E3yy .text-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1;
}
.cid-v4x7H2E3yy .text-wrapper .mbr-text span {
  color: #7d41d1;
}
.cid-v4x7H2E3yy .mbr-text {
  color: #ffe885;
  text-align: center;
}
.cid-v4x5RxMbXC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-v4x5RxMbXC .mbr-figure iframe {
  border-radius: 30px;
}
.cid-v4x5RxMbXC .mbr-figure .app-video-wrapper img {
  border-radius: 30px;
  object-fit: cover;
}
.cid-v4x5RxMbXC .mbr-section-title {
  margin-bottom: 0;
  color: #ffffff;
}
.cid-v4xG8gl8vS {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1357.webp");
}
.cid-v4xG8gl8vS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4xG8gl8vS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4xG8gl8vS .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-v4xG8gl8vS .mbr-section-title {
  margin-bottom: 48px;
  color: #FFFFFF;
}
.cid-v4xG8gl8vS .mbr-text {
  margin-top: 48px;
  color: #FFFFFF;
}
.cid-v4xG8gl8vS .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4xG8gl8vS iframe,
.cid-v4xG8gl8vS img,
.cid-v4xG8gl8vS video {
  width: 100%;
}
.cid-v4xG8gl8vS .mbr-figure {
  width: 100%;
}
.cid-v4Q4XNDio4 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/mbr-886x591.webp");
}
.cid-v4Q4XNDio4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4Q4XNDio4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4Q4XNDio4 .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-v4Q4XNDio4 .mbr-section-title {
  margin-bottom: 48px;
  color: #ffffff;
}
.cid-v4Q4XNDio4 .mbr-text {
  margin-top: 48px;
  color: #FFFFFF;
}
.cid-v4Q4XNDio4 .mbr-section-btn {
  margin-top: 20px;
}
.cid-v4Q4XNDio4 iframe,
.cid-v4Q4XNDio4 img,
.cid-v4Q4XNDio4 video {
  width: 100%;
}
.cid-v4Q4XNDio4 .mbr-figure {
  width: 100%;
}
.cid-v3FkA7AZJW.popup-builder {
  background-color: #ffffff;
}
.cid-v3FkA7AZJW.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3FkA7AZJW.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3FkA7AZJW .modal-content,
.cid-v3FkA7AZJW .modal-dialog {
  height: auto;
}
.cid-v3FkA7AZJW .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3FkA7AZJW .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3FkA7AZJW .form-wrapper .mbr-form .form-group,
  .cid-v3FkA7AZJW .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3FkA7AZJW .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .mbr-text {
  text-align: center;
}
.cid-v3FkA7AZJW .pt-0 {
  padding-top: 0 !important;
}
.cid-v3FkA7AZJW .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3FkA7AZJW .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3FkA7AZJW .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3FkA7AZJW .modal-open {
  overflow: hidden;
}
.cid-v3FkA7AZJW .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3FkA7AZJW .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3FkA7AZJW .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3FkA7AZJW .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3FkA7AZJW .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3FkA7AZJW .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3FkA7AZJW .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3FkA7AZJW .modal-backdrop.show {
  opacity: .5;
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FkA7AZJW .modal-header {
    padding: 1rem;
  }
}
.cid-v3FkA7AZJW .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3FkA7AZJW .modal-header .close svg {
  fill: #353535;
}
.cid-v3FkA7AZJW .modal-header .close:hover {
  opacity: 1;
}
.cid-v3FkA7AZJW .modal-header .close:focus {
  outline: none;
}
.cid-v3FkA7AZJW .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3FkA7AZJW .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3FkA7AZJW .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FkA7AZJW .modal-body {
    padding: 1rem;
  }
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FkA7AZJW .modal-footer {
    padding: 1rem;
  }
}
.cid-v3FkA7AZJW .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3FkA7AZJW .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3FkA7AZJW .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3FkA7AZJW .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3FkA7AZJW .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3FkA7AZJW .modal-lg,
  .cid-v3FkA7AZJW .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3FkA7AZJW .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3FkA7AZJW .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .form-group {
  margin-bottom: 1rem;
}
.cid-v3FkA7AZJW .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3FkA7AZJW .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3FkA7AZJW .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-v3FkA7AZJW .mbr-section-btn {
  margin: 0;
}
.cid-v3FkA7AZJW .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3FsNQus5u.popup-builder {
  background-color: #ffffff;
}
.cid-v3FsNQus5u.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3FsNQus5u.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3FsNQus5u .modal-content,
.cid-v3FsNQus5u .modal-dialog {
  height: auto;
}
.cid-v3FsNQus5u .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3FsNQus5u .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3FsNQus5u .form-wrapper .mbr-form .form-group,
  .cid-v3FsNQus5u .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3FsNQus5u .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3FsNQus5u .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-v3FsNQus5u .mbr-text {
  text-align: justify;
}
.cid-v3FsNQus5u .pt-0 {
  padding-top: 0 !important;
}
.cid-v3FsNQus5u .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3FsNQus5u .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3FsNQus5u .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3FsNQus5u .modal-open {
  overflow: hidden;
}
.cid-v3FsNQus5u .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3FsNQus5u .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3FsNQus5u .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3FsNQus5u .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-v3FsNQus5u .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3FsNQus5u .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3FsNQus5u .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3FsNQus5u .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-v3FsNQus5u .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3FsNQus5u .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3FsNQus5u .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3FsNQus5u .modal-backdrop.show {
  opacity: .5;
}
.cid-v3FsNQus5u .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-v3FsNQus5u .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FsNQus5u .modal-header {
    padding: 1rem;
  }
}
.cid-v3FsNQus5u .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3FsNQus5u .modal-header .close svg {
  fill: #353535;
}
.cid-v3FsNQus5u .modal-header .close:hover {
  opacity: 1;
}
.cid-v3FsNQus5u .modal-header .close:focus {
  outline: none;
}
.cid-v3FsNQus5u .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3FsNQus5u .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3FsNQus5u .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FsNQus5u .modal-body {
    padding: 1rem;
  }
}
.cid-v3FsNQus5u .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-v3FsNQus5u .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FsNQus5u .modal-footer {
    padding: 1rem;
  }
}
.cid-v3FsNQus5u .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3FsNQus5u .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3FsNQus5u .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3FsNQus5u .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3FsNQus5u .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3FsNQus5u .modal-lg,
  .cid-v3FsNQus5u .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3FsNQus5u .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3FsNQus5u .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3FsNQus5u .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-v3FsNQus5u .form-group {
  margin-bottom: 1rem;
}
.cid-v3FsNQus5u .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3FsNQus5u .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3FsNQus5u .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-v3FsNQus5u .mbr-section-btn {
  margin: 0;
}
.cid-v3FsNQus5u .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3Fu3LOtoc.popup-builder {
  background-color: #ffffff;
}
.cid-v3Fu3LOtoc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3Fu3LOtoc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3Fu3LOtoc .modal-content,
.cid-v3Fu3LOtoc .modal-dialog {
  height: auto;
}
.cid-v3Fu3LOtoc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3Fu3LOtoc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3Fu3LOtoc .form-wrapper .mbr-form .form-group,
  .cid-v3Fu3LOtoc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3Fu3LOtoc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .mbr-text {
  text-align: justify;
}
.cid-v3Fu3LOtoc .pt-0 {
  padding-top: 0 !important;
}
.cid-v3Fu3LOtoc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3Fu3LOtoc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3Fu3LOtoc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3Fu3LOtoc .modal-open {
  overflow: hidden;
}
.cid-v3Fu3LOtoc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3Fu3LOtoc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3Fu3LOtoc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3Fu3LOtoc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3Fu3LOtoc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3Fu3LOtoc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3Fu3LOtoc .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3Fu3LOtoc .modal-backdrop.show {
  opacity: .5;
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Fu3LOtoc .modal-header {
    padding: 1rem;
  }
}
.cid-v3Fu3LOtoc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3Fu3LOtoc .modal-header .close svg {
  fill: #353535;
}
.cid-v3Fu3LOtoc .modal-header .close:hover {
  opacity: 1;
}
.cid-v3Fu3LOtoc .modal-header .close:focus {
  outline: none;
}
.cid-v3Fu3LOtoc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3Fu3LOtoc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3Fu3LOtoc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Fu3LOtoc .modal-body {
    padding: 1rem;
  }
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3Fu3LOtoc .modal-footer {
    padding: 1rem;
  }
}
.cid-v3Fu3LOtoc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3Fu3LOtoc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3Fu3LOtoc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3Fu3LOtoc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3Fu3LOtoc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3Fu3LOtoc .modal-lg,
  .cid-v3Fu3LOtoc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3Fu3LOtoc .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3Fu3LOtoc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .form-group {
  margin-bottom: 1rem;
}
.cid-v3Fu3LOtoc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3Fu3LOtoc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3Fu3LOtoc .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-v3Fu3LOtoc .mbr-section-btn {
  margin: 0;
}
.cid-v3Fu3LOtoc .mbr-section-btn .btn {
  margin: 0;
}
.cid-v3FuEQdOFm.popup-builder {
  background-color: #ffffff;
}
.cid-v3FuEQdOFm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v3FuEQdOFm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v3FuEQdOFm .modal-content,
.cid-v3FuEQdOFm .modal-dialog {
  height: auto;
}
.cid-v3FuEQdOFm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v3FuEQdOFm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v3FuEQdOFm .form-wrapper .mbr-form .form-group,
  .cid-v3FuEQdOFm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v3FuEQdOFm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .mbr-text {
  text-align: justify;
}
.cid-v3FuEQdOFm .pt-0 {
  padding-top: 0 !important;
}
.cid-v3FuEQdOFm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v3FuEQdOFm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v3FuEQdOFm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v3FuEQdOFm .modal-open {
  overflow: hidden;
}
.cid-v3FuEQdOFm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v3FuEQdOFm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v3FuEQdOFm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v3FuEQdOFm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v3FuEQdOFm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v3FuEQdOFm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v3FuEQdOFm .modal-backdrop.fade {
  opacity: 0;
}
.cid-v3FuEQdOFm .modal-backdrop.show {
  opacity: .5;
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FuEQdOFm .modal-header {
    padding: 1rem;
  }
}
.cid-v3FuEQdOFm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v3FuEQdOFm .modal-header .close svg {
  fill: #353535;
}
.cid-v3FuEQdOFm .modal-header .close:hover {
  opacity: 1;
}
.cid-v3FuEQdOFm .modal-header .close:focus {
  outline: none;
}
.cid-v3FuEQdOFm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v3FuEQdOFm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v3FuEQdOFm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FuEQdOFm .modal-body {
    padding: 1rem;
  }
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v3FuEQdOFm .modal-footer {
    padding: 1rem;
  }
}
.cid-v3FuEQdOFm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v3FuEQdOFm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v3FuEQdOFm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v3FuEQdOFm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v3FuEQdOFm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v3FuEQdOFm .modal-lg,
  .cid-v3FuEQdOFm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v3FuEQdOFm .modal-xl {
    max-width: 1140px;
  }
}
.cid-v3FuEQdOFm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .form-group {
  margin-bottom: 1rem;
}
.cid-v3FuEQdOFm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v3FuEQdOFm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v3FuEQdOFm .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-v3FuEQdOFm .mbr-section-btn {
  margin: 0;
}
.cid-v3FuEQdOFm .mbr-section-btn .btn {
  margin: 0;
}
.cid-v4P58sVwdv.popup-builder {
  background-color: #ffffff;
}
.cid-v4P58sVwdv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4P58sVwdv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4P58sVwdv .modal-content,
.cid-v4P58sVwdv .modal-dialog {
  height: auto;
}
.cid-v4P58sVwdv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4P58sVwdv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4P58sVwdv .form-wrapper .mbr-form .form-group,
  .cid-v4P58sVwdv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4P58sVwdv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4P58sVwdv .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-v4P58sVwdv .mbr-text {
  text-align: justify;
}
.cid-v4P58sVwdv .pt-0 {
  padding-top: 0 !important;
}
.cid-v4P58sVwdv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4P58sVwdv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4P58sVwdv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4P58sVwdv .modal-open {
  overflow: hidden;
}
.cid-v4P58sVwdv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4P58sVwdv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4P58sVwdv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4P58sVwdv .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-v4P58sVwdv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4P58sVwdv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4P58sVwdv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4P58sVwdv .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-v4P58sVwdv .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v4P58sVwdv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4P58sVwdv .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4P58sVwdv .modal-backdrop.show {
  opacity: .5;
}
.cid-v4P58sVwdv .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-v4P58sVwdv .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4P58sVwdv .modal-header {
    padding: 1rem;
  }
}
.cid-v4P58sVwdv .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4P58sVwdv .modal-header .close svg {
  fill: #353535;
}
.cid-v4P58sVwdv .modal-header .close:hover {
  opacity: 1;
}
.cid-v4P58sVwdv .modal-header .close:focus {
  outline: none;
}
.cid-v4P58sVwdv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4P58sVwdv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v4P58sVwdv .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4P58sVwdv .modal-body {
    padding: 1rem;
  }
}
.cid-v4P58sVwdv .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-v4P58sVwdv .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v4P58sVwdv .modal-footer {
    padding: 1rem;
  }
}
.cid-v4P58sVwdv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4P58sVwdv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4P58sVwdv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4P58sVwdv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4P58sVwdv .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v4P58sVwdv .modal-lg,
  .cid-v4P58sVwdv .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v4P58sVwdv .modal-xl {
    max-width: 1140px;
  }
}
.cid-v4P58sVwdv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4P58sVwdv .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-v4P58sVwdv .form-group {
  margin-bottom: 1rem;
}
.cid-v4P58sVwdv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4P58sVwdv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4P58sVwdv .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-v4P58sVwdv .mbr-section-btn {
  margin: 0;
}
.cid-v4P58sVwdv .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5bQsS0QGF.popup-builder {
  background-color: #ffffff;
}
.cid-v5bQsS0QGF.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5bQsS0QGF.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5bQsS0QGF .modal-content,
.cid-v5bQsS0QGF .modal-dialog {
  height: auto;
}
.cid-v5bQsS0QGF .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5bQsS0QGF .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5bQsS0QGF .form-wrapper .mbr-form .form-group,
  .cid-v5bQsS0QGF .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5bQsS0QGF .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .mbr-text {
  text-align: center;
}
.cid-v5bQsS0QGF .pt-0 {
  padding-top: 0 !important;
}
.cid-v5bQsS0QGF .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5bQsS0QGF .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5bQsS0QGF .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5bQsS0QGF .modal-open {
  overflow: hidden;
}
.cid-v5bQsS0QGF .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5bQsS0QGF .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5bQsS0QGF .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5bQsS0QGF .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5bQsS0QGF .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5bQsS0QGF .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5bQsS0QGF .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5bQsS0QGF .modal-backdrop.show {
  opacity: .5;
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bQsS0QGF .modal-header {
    padding: 1rem;
  }
}
.cid-v5bQsS0QGF .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5bQsS0QGF .modal-header .close svg {
  fill: #353535;
}
.cid-v5bQsS0QGF .modal-header .close:hover {
  opacity: 1;
}
.cid-v5bQsS0QGF .modal-header .close:focus {
  outline: none;
}
.cid-v5bQsS0QGF .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5bQsS0QGF .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5bQsS0QGF .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bQsS0QGF .modal-body {
    padding: 1rem;
  }
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bQsS0QGF .modal-footer {
    padding: 1rem;
  }
}
.cid-v5bQsS0QGF .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5bQsS0QGF .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5bQsS0QGF .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5bQsS0QGF .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5bQsS0QGF .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5bQsS0QGF .modal-lg,
  .cid-v5bQsS0QGF .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5bQsS0QGF .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5bQsS0QGF .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .form-group {
  margin-bottom: 1rem;
}
.cid-v5bQsS0QGF .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5bQsS0QGF .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5bQsS0QGF .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-v5bQsS0QGF .mbr-section-btn {
  margin: 0;
}
.cid-v5bQsS0QGF .mbr-section-btn .btn {
  margin: 0;
}
.cid-v5bRTXZmkH.popup-builder {
  background-color: #ffffff;
}
.cid-v5bRTXZmkH.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v5bRTXZmkH.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v5bRTXZmkH .modal-content,
.cid-v5bRTXZmkH .modal-dialog {
  height: auto;
}
.cid-v5bRTXZmkH .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v5bRTXZmkH .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v5bRTXZmkH .form-wrapper .mbr-form .form-group,
  .cid-v5bRTXZmkH .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v5bRTXZmkH .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .mbr-text {
  text-align: center;
}
.cid-v5bRTXZmkH .pt-0 {
  padding-top: 0 !important;
}
.cid-v5bRTXZmkH .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v5bRTXZmkH .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v5bRTXZmkH .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v5bRTXZmkH .modal-open {
  overflow: hidden;
}
.cid-v5bRTXZmkH .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v5bRTXZmkH .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v5bRTXZmkH .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v5bRTXZmkH .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v5bRTXZmkH .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v5bRTXZmkH .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v5bRTXZmkH .modal-backdrop.fade {
  opacity: 0;
}
.cid-v5bRTXZmkH .modal-backdrop.show {
  opacity: .5;
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bRTXZmkH .modal-header {
    padding: 1rem;
  }
}
.cid-v5bRTXZmkH .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v5bRTXZmkH .modal-header .close svg {
  fill: #353535;
}
.cid-v5bRTXZmkH .modal-header .close:hover {
  opacity: 1;
}
.cid-v5bRTXZmkH .modal-header .close:focus {
  outline: none;
}
.cid-v5bRTXZmkH .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v5bRTXZmkH .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v5bRTXZmkH .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bRTXZmkH .modal-body {
    padding: 1rem;
  }
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v5bRTXZmkH .modal-footer {
    padding: 1rem;
  }
}
.cid-v5bRTXZmkH .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v5bRTXZmkH .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v5bRTXZmkH .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v5bRTXZmkH .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v5bRTXZmkH .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v5bRTXZmkH .modal-lg,
  .cid-v5bRTXZmkH .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v5bRTXZmkH .modal-xl {
    max-width: 1140px;
  }
}
.cid-v5bRTXZmkH .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .form-group {
  margin-bottom: 1rem;
}
.cid-v5bRTXZmkH .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v5bRTXZmkH .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v5bRTXZmkH .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-v5bRTXZmkH .mbr-section-btn {
  margin: 0;
}
.cid-v5bRTXZmkH .mbr-section-btn .btn {
  margin: 0;
}
.cid-v4sangav2L {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #192227;
}
.cid-v4sangav2L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4sangav2L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4sangav2L .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v4sangav2L .container {
    padding: 0 16px;
  }
}
.cid-v4sangav2L .row {
  border-radius: 20px;
  background-color: #fdfcfc;
  padding: 90px 45px 75px;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .row {
    padding: 45px 32px;
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  .cid-v4sangav2L .row {
    padding: 45px 4px;
  }
}
.cid-v4sangav2L .row .card {
  justify-content: center;
}
.cid-v4sangav2L .title-wrapper {
  padding-right: 100px;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .title-wrapper {
    padding: 0;
    margin-bottom: 45px;
  }
}
.cid-v4sangav2L .title-wrapper .subtitle-wrapper {
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .title-wrapper .subtitle-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v4sangav2L .title-wrapper .subtitle-wrapper .subtitle-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v4sangav2L .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-section-subtitle {
  margin: 0 20px 0 0;
}
.cid-v4sangav2L .title-wrapper .subtitle-wrapper .subtitle-wrap .mbr-iconfont {
  font-size: 30px;
  color: #d1cece;
}
.cid-v4sangav2L .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v4sangav2L .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v4sangav2L .title-wrapper .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v4sangav2L .title-wrapper .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v4sangav2L .image-wrapper img {
  height: 590px;
  width: 70%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 14rem !important;
  border: 5px solid #d1cece;
}
@media (max-width: 1440px) {
  .cid-v4sangav2L .image-wrapper img {
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .cid-v4sangav2L .image-wrapper img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cid-v4sangav2L .image-wrapper img {
    height: 350px;
  }
}
.cid-v4sangav2L .mbr-section-subtitle {
  color: #d1cece;
}
.cid-v4sangav2L .mbr-section-title {
  color: #192227;
}
.cid-v4sangav2L .mbr-text {
  color: #192227;
}
.cid-v4sas1sbcE {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v4sas1sbcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4sas1sbcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4sas1sbcE .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-v4sas1sbcE .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-v4sas1sbcE .container {
    padding: 0 22px;
  }
}
.cid-v4sas1sbcE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v4sas1sbcE .mbr-text {
  color: #000000;
}
.cid-v4sbfhxEPo {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("");
}
.cid-v4sbfhxEPo .card-wrapper {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v4sbfhxEPo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v4sbfhxEPo .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v4sbfhxEPo .mbr-text,
.cid-v4sbfhxEPo .mbr-section-btn {
  color: #263d5a;
}
.cid-v4sbfhxEPo .mbr-section-title {
  color: #263d5a;
}
.cid-v4sj01lc4T {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-v4sj01lc4T .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4sj01lc4T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4sj01lc4T .image-wrapper img {
  border-radius: 2rem;
  padding: 5px;
  background-color: #fdfde1;
}
.cid-v4sj01lc4T .row {
  flex-direction: row-reverse;
}
.cid-v4sj01lc4T .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v4sj01lc4T .row {
    flex-direction: column-reverse;
    gap: 90px;
  }
}
.cid-v4sj01lc4T .mbr-section-title {
  color: #fdfde1;
}
@media (max-width: 991px) {
  .cid-v4sj01lc4T .text-wrapper {
    text-align: center;
  }
}
.cid-v4sj01lc4T .mbr-text,
.cid-v4sj01lc4T .mbr-section-btn {
  color: #fdfde1;
}
.cid-v4sj01lc4T .mbr-menu,
.cid-v4sj01lc4T .mbr-section-btn {
  color: #fdfde1;
}
.cid-v4sj01lc4T .mbr-desc,
.cid-v4sj01lc4T .mbr-section-btn {
  color: #fdfde1;
}
.cid-v4sgfHcZto {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-886x591.webp");
}
.cid-v4sgfHcZto .video-wrapper iframe {
  width: 100%;
}
.cid-v4sgfHcZto .mbr-section-title,
.cid-v4sgfHcZto .mbr-section-subtitle,
.cid-v4sgfHcZto .mbr-text {
  text-align: center;
}
.cid-v4sgfHcZto .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v4sgIFX3ag {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1920x1277.webp");
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-v4sgIFX3ag .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4sgIFX3ag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4sgIFX3ag .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-v4sgIFX3ag .section-border-item_center {
    display: none;
  }
}
.cid-v4sgIFX3ag .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v4sgIFX3ag .main-container {
    flex-wrap: wrap;
  }
}
.cid-v4sgIFX3ag .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v4sgIFX3ag .card-wrap {
    width: 100%;
  }
}
.cid-v4sgIFX3ag .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-v4sgIFX3ag .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v4sgIFX3ag .card-box {
    max-width: 100%;
  }
}
.cid-v4sgIFX3ag .card-title {
  color: #FFF;
}
.cid-v4sgIFX3ag .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-v4sgIFX3ag .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-v4sgIFX3ag .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-v4sgIFX3ag .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-v4sgIFX3ag .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-v4sgIFX3ag .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v4sgIFX3ag .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-v4sgIFX3ag .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-v4sgIFX3ag .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-v4sgIFX3ag .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-v4sgIFX3ag .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-v4sgIFX3ag .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-v4sgIFX3ag .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-v4sgIFX3ag .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-v4sgIFX3ag .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-v4sgIFX3ag .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-v4sjOaVXh0 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/marketinghasevolved-1192x713.webp");
}
.cid-v4sjOaVXh0 .media-content .btn-bgr {
  z-index: 0;
}
.cid-v4sjOaVXh0 .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-v4sjOaVXh0 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-v4sjOaVXh0 p {
  color: #464646;
}
.cid-v4sjOaVXh0 h2 {
  color: #000000;
}
.cid-v4sjOaVXh0 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-v4sjOaVXh0 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-v4sjOaVXh0 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-v4sjOaVXh0 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-v4sjOaVXh0 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v4sjOaVXh0 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v4sjOaVXh0 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-v4sjOaVXh0 .mbr-text {
    text-align: center;
  }
}
.cid-v4sjOaVXh0 .mbr-section-subtitle {
  color: #faf412;
}
.cid-v4sjOaVXh0 .mbr-section-title,
.cid-v4sjOaVXh0 .mbr-section-btn {
  color: #f8f9c4;
}
.cid-v4sjOaVXh0 .mbr-section-title,
.cid-v4sjOaVXh0 .mbr-section-btn B {
  color: #ffffff;
}
.cid-v4smS9DPTI {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/2ah6wjp-1400x800.webp");
  background-position: right;
}
.cid-v4smS9DPTI .wrapper {
  position: relative;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  padding: 2.5rem 2.5rem;
}
.cid-v4smS9DPTI .wrapper:before {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-v4smS9DPTI .wrapper:after {
  content: "";
  background: #ffffff;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-v4smS9DPTI img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-v4smS9DPTI .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-v4sobjx2FR {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-v4sobjx2FR .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-v4sobjx2FR .media-container-row img {
  -webkit-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  -moz-transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
  transition: transform 0.4s cubic-bezier(0.38, 3, 0.57, 1.6);
}
.cid-v4sobjx2FR .media-container-row:hover img {
  -webkit-transform: translate3d(0, -5px, 0);
  -moz-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
}
@media (min-width: 992px) {
  .cid-v4sobjx2FR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-v4sobjx2FR .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-v4sobjx2FR {
    text-align: center !important;
  }
}
.cid-v4sobjx2FR .mbr-text {
  color: #ffffff;
}
.cid-v4soHLUcDi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-v4soHLUcDi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4soHLUcDi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4soHLUcDi .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-v4soHLUcDi .section-border-item_center {
    display: none;
  }
}
.cid-v4soHLUcDi .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-v4soHLUcDi .main-container {
    flex-wrap: wrap;
  }
}
.cid-v4soHLUcDi .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-v4soHLUcDi .card-wrap {
    width: 100%;
  }
}
.cid-v4soHLUcDi .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-v4soHLUcDi .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-v4soHLUcDi .card-box {
    max-width: 100%;
  }
}
.cid-v4soHLUcDi .card-title {
  color: #FFF;
}
.cid-v4soHLUcDi .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-v4soHLUcDi .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-v4soHLUcDi .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-v4soHLUcDi .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-v4soHLUcDi .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-v4soHLUcDi .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-v4soHLUcDi .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-v4soHLUcDi .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-v4soHLUcDi .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-v4soHLUcDi .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-v4soHLUcDi .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-v4soHLUcDi .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-v4soHLUcDi .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-v4soHLUcDi .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-v4soHLUcDi .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-v4soHLUcDi .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-v4soOaNZLd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #173d33;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cid-v4soOaNZLd .container,
.cid-v4soOaNZLd .container-fluid {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.cid-v4soOaNZLd .row {
  width: 100%;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.cid-v4soOaNZLd .bg-frame-container {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
}
.cid-v4soOaNZLd .bg-frame {
  position: absolute;
  bottom: -12%;
  right: 0;
  opacity: 1;
  width: 80vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #aafc75;
  box-shadow: 0 0 40px #aafc75;
  filter: blur(130px);
}
@media (max-width: 767px) {
  .cid-v4soOaNZLd .bg-frame {
    width: 160vw;
  }
}
.cid-v4soOaNZLd .img-bg-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 100px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-v4soOaNZLd .img-bg-container {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .cid-v4soOaNZLd .img-bg-container {
    padding: 80px 30px;
    align-items: flex-end;
  }
}
.cid-v4soOaNZLd .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../assets/images/features3-2.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.cid-v4soOaNZLd .img-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #021c15;
  opacity: 0.6;
}
.cid-v4soOaNZLd .item-img {
  position: absolute;
  right: 100px;
  top: -80px;
  max-width: 180px;
  width: 180px;
}
@media (max-width: 991px) {
  .cid-v4soOaNZLd .item-img {
    max-width: 120px;
    width: 120px;
    top: -40px;
    right: 80px;
  }
}
@media (max-width: 767px) {
  .cid-v4soOaNZLd .item-img {
    max-width: 120px;
    width: 120px;
    top: -40px;
    right: auto;
    left: 10%;
  }
}
.cid-v4soOaNZLd .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(360deg);
}
.cid-v4soOaNZLd .text-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}
.cid-v4soOaNZLd .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 40px;
}
.cid-v4soOaNZLd .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .cid-v4soOaNZLd .mbr-section-subtitle {
    margin-bottom: 16px;
  }
}
.cid-v4sorGnNTY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #192227;
}
.cid-v4sorGnNTY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4sorGnNTY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4sorGnNTY .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .container {
    padding: 0 16px;
  }
}
.cid-v4sorGnNTY .row {
  justify-content: center;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .row {
    margin: 0 10px;
  }
}
.cid-v4sorGnNTY .row .item {
  padding: 0;
}
.cid-v4sorGnNTY .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v4sorGnNTY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v4sorGnNTY .panel-group {
  border: 1px solid #fdfcfc;
  border-radius: 20px;
  overflow: hidden;
}
.cid-v4sorGnNTY .panel-group .card {
  border-top: 1px solid #4a5357;
  border-radius: 0 !important;
}
.cid-v4sorGnNTY .panel-group .card:first-child {
  border-top: none;
}
.cid-v4sorGnNTY .panel-group .card:last-child {
  border-bottom: none;
}
.cid-v4sorGnNTY .panel-group .card .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .panel-group .card .card-header .panel-title {
    padding: 20px 10px;
  }
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title:not(.collapsed) {
  background-color: #f9a600;
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-180deg);
  color: #f9a600;
  background-color: #192227;
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #192227;
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-v4sorGnNTY .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 30px;
  color: #192227;
  background-color: #f9a600;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-v4sorGnNTY .panel-group .card .panel-collapse .panel-body {
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .panel-group .card .panel-collapse .panel-body {
    padding: 20px 10px;
  }
}
.cid-v4sorGnNTY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v4sorGnNTY .image-wrapper {
  height: 100%;
}
.cid-v4sorGnNTY .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v4sorGnNTY .image-wrapper img {
    height: 350px;
  }
}
.cid-v4sorGnNTY .mbr-section-title {
  color: #fdfcfc;
}
.cid-v4sorGnNTY .panel-title-edit {
  color: #fdfcfc;
}
.cid-v4sorGnNTY .panel-text {
  color: #fdfcfc;
}
.cid-v4soC9l2Mq.popup-builder {
  background-color: #ffffff;
}
.cid-v4soC9l2Mq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v4soC9l2Mq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v4soC9l2Mq .modal-content,
.cid-v4soC9l2Mq .modal-dialog {
  height: auto;
}
.cid-v4soC9l2Mq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v4soC9l2Mq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v4soC9l2Mq .form-wrapper .mbr-form .form-group,
  .cid-v4soC9l2Mq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v4soC9l2Mq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v4soC9l2Mq .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-v4soC9l2Mq .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-v4soC9l2Mq .pt-0 {
  padding-top: 0 !important;
}
.cid-v4soC9l2Mq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v4soC9l2Mq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v4soC9l2Mq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v4soC9l2Mq .modal-open {
  overflow: hidden;
}
.cid-v4soC9l2Mq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v4soC9l2Mq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v4soC9l2Mq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v4soC9l2Mq .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-v4soC9l2Mq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v4soC9l2Mq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v4soC9l2Mq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v4soC9l2Mq .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-v4soC9l2Mq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v4soC9l2Mq .modal-backdrop.fade {
  opacity: 0;
}
.cid-v4soC9l2Mq .modal-backdrop.show {
  opacity: .5;
}
.cid-v4soC9l2Mq .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: none;
}
.cid-v4soC9l2Mq .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v4soC9l2Mq .modal-header .close:hover {
  opacity: 1;
}
.cid-v4soC9l2Mq .modal-header .close:focus {
  outline: none;
}
.cid-v4soC9l2Mq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v4soC9l2Mq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v4soC9l2Mq .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  border-top: none;
  text-align: center;
}
.cid-v4soC9l2Mq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v4soC9l2Mq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v4soC9l2Mq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v4soC9l2Mq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v4soC9l2Mq .modal-sm {
    max-width: 300px;
  }
  .cid-v4soC9l2Mq .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v4soC9l2Mq .modal-lg,
  .cid-v4soC9l2Mq .modal-xl {
    max-width: 800px;
  }
  .cid-v4soC9l2Mq .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v4soC9l2Mq .modal-xl {
    max-width: 1140px;
  }
  .cid-v4soC9l2Mq .container {
    max-width: 1140px;
  }
}
.cid-v4soC9l2Mq .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v4soC9l2Mq .container {
    max-width: 720px;
  }
}
.cid-v4soC9l2Mq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v4soC9l2Mq .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-v4soC9l2Mq .form-group {
  margin-bottom: 1rem;
}
.cid-v4soC9l2Mq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v4soC9l2Mq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v4soC9l2Mq .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-v4PhIGLQD8 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-v4PhIGLQD8 .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #820cfe;
  margin-bottom: 2rem;
  background: linear-gradient(0deg, transparent 0%, #ffffff 100%);
  border-radius: 50%;
  width: 115px;
  height: 115px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.cid-v4PhIGLQD8 .item-wrapper {
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 3rem 3rem;
  margin: 0;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-v4PhIGLQD8 .item-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-v4PhIGLQD8 .item-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid #ffffff;
  border-radius: 30px;
  pointer-events: none;
}
.cid-v4PhIGLQD8 .item-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background-color: #ffffff;
  border-radius: 30px;
}
.cid-v4PhIGLQD8 .row {
  justify-content: center;
}
.cid-v4PhIGLQD8 .item {
  margin-bottom: 2rem;
}
.cid-v4PhIGLQD8 .card-box {
  position: relative;
  z-index: 1;
}
.cid-v4PhIGLQD8 .card-text {
  color: #000000;
  text-align: justify;
}
.cid-v4PhIGLQD8 .card-title,
.cid-v4PhIGLQD8 .iconfont-wrapper {
  color: #263d5a;
}
.cid-v4PhIGLQD8 .mbr-section-subtitle {
  color: #263d5a;
}
.cid-v4PhIGLQD8 .mbr-section-title {
  color: #e43f3f;
}
