.btn {
  border-width: 2px;
}
body {
  font-family: 'Lexend', sans-serif;
}
.display-1 {
  font-family: 'Lexend', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.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.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((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: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .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-v8nvWMWkly {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uZgFuHC9An {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/f35-hardturn-1188x1187.webp");
}
.cid-uZgFuHC9An img {
  width: 100%;
  border-radius: 30px;
}
.cid-uZgFuHC9An .card-wrapper {
  background: linear-gradient(0deg, transparent 0%, #232323 150%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uZgFuHC9An .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uZgFuHC9An .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid #232323;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uZgFuHC9An .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uZgFuHC9An .mbr-section-title {
  color: #ffffff;
}
.cid-uZgFuHC9An .mbr-text,
.cid-uZgFuHC9An .mbr-section-btn {
  color: #263d5a;
}
.cid-uZgFuHC9An .mbr-section-subtitle {
  color: #ffe161;
}
.cid-sz52hQ3MIW {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1281.webp");
}
.cid-sz52hQ3MIW img {
  width: 150px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-sz52hQ3MIW img {
    width: 120px;
  }
}
.cid-sz52hQ3MIW .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-bottom: 2rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-sz52hQ3MIW .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sz52hQ3MIW .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-sz52hQ3MIW .mbr-section-title {
  color: #ffffff;
}
.cid-sz52hQ3MIW .mbr-section-subtitle {
  color: #ffe161;
}
.cid-u38cypXVSB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-u38cypXVSB img {
  width: 150px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-u38cypXVSB img {
    width: 120px;
  }
}
.cid-u38cypXVSB .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-bottom: 2rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u38cypXVSB .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u38cypXVSB .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-u38cypXVSB .mbr-section-title {
  color: #ffffff;
}
.cid-u38cypXVSB .mbr-section-subtitle {
  color: #ffe161;
}
.cid-vcCLoZepfN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1079.webp");
}
.cid-vcCLoZepfN img {
  width: 150px;
  margin: auto;
}
@media (max-width: 992px) {
  .cid-vcCLoZepfN img {
    width: 120px;
  }
}
.cid-vcCLoZepfN .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-bottom: 2rem;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vcCLoZepfN .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-vcCLoZepfN .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-vcCLoZepfN .mbr-section-title {
  color: #ffffff;
}
.cid-vcCLoZepfN .mbr-section-subtitle {
  color: #ffe161;
}
.cid-tOBKg7I9Dx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/sanfran-1259x951.webp");
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-tOBKg7I9Dx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBKg7I9Dx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBKg7I9Dx .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-tOBKg7I9Dx .section-border-item_center {
    display: none;
  }
}
.cid-tOBKg7I9Dx .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tOBKg7I9Dx .main-container {
    flex-wrap: wrap;
  }
}
.cid-tOBKg7I9Dx .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tOBKg7I9Dx .card-wrap {
    width: 100%;
  }
}
.cid-tOBKg7I9Dx .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-tOBKg7I9Dx .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBKg7I9Dx .card-box {
    max-width: 100%;
  }
}
.cid-tOBKg7I9Dx .card-title {
  color: #FFF;
}
.cid-tOBKg7I9Dx .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tOBKg7I9Dx .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-tOBKg7I9Dx .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-tOBKg7I9Dx .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-tOBKg7I9Dx .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-tOBKg7I9Dx .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tOBKg7I9Dx .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-tOBKg7I9Dx .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-tOBKg7I9Dx .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-tOBKg7I9Dx .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tOBKg7I9Dx .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-tOBKg7I9Dx .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-tOBKg7I9Dx .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-tOBKg7I9Dx .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-tOBKg7I9Dx .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-tOBKg7I9Dx .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-tOBNEhUS4F {
  padding-top: 120px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/ad-67-502x356.webp");
}
@media (min-width: 992px) {
  .cid-tOBNEhUS4F .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tOBNEhUS4F .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBNEhUS4F .mbr-text {
    text-align: center;
  }
}
.cid-tOBNEhUS4F H1 {
  color: #5cff00;
}
.cid-tJxITa1R7e {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x1277.webp");
}
@media (min-width: 992px) {
  .cid-tJxITa1R7e .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tJxITa1R7e .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tJxITa1R7e .mbr-text {
    text-align: center;
  }
}
.cid-tJxITa1R7e H1 {
  color: #5cff00;
}
.cid-v8nCgC7oNA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000c21;
}
.cid-v8nCgC7oNA .video-wrapper iframe {
  width: 100%;
}
.cid-v8nCgC7oNA .mbr-section-title,
.cid-v8nCgC7oNA .mbr-section-subtitle,
.cid-v8nCgC7oNA .mbr-text {
  text-align: center;
}
.cid-v8nCgC7oNA .mbr-text {
  color: #ffe161;
}
.cid-v8nCgC7oNA .mbr-section-title {
  color: #f7f421;
}
.cid-v8nCgC7oNA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tJxLUTf4Ej {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-tJxLUTf4Ej .mbr-text {
  color: #e3ebf3;
}
.cid-u38oZmBwUj.popup-builder {
  background-color: #ffffff;
}
.cid-u38oZmBwUj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u38oZmBwUj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u38oZmBwUj .modal-content,
.cid-u38oZmBwUj .modal-dialog {
  height: auto;
}
.cid-u38oZmBwUj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u38oZmBwUj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u38oZmBwUj .form-wrapper .mbr-form .form-group,
  .cid-u38oZmBwUj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u38oZmBwUj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u38oZmBwUj .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-u38oZmBwUj .mbr-text {
  text-align: center;
}
.cid-u38oZmBwUj .pt-0 {
  padding-top: 0 !important;
}
.cid-u38oZmBwUj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u38oZmBwUj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u38oZmBwUj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u38oZmBwUj .modal-open {
  overflow: hidden;
}
.cid-u38oZmBwUj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u38oZmBwUj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u38oZmBwUj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u38oZmBwUj .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-u38oZmBwUj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u38oZmBwUj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u38oZmBwUj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u38oZmBwUj .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-u38oZmBwUj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u38oZmBwUj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u38oZmBwUj .modal-backdrop.fade {
  opacity: 0;
}
.cid-u38oZmBwUj .modal-backdrop.show {
  opacity: .5;
}
.cid-u38oZmBwUj .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-u38oZmBwUj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u38oZmBwUj .modal-header {
    padding: 1rem;
  }
}
.cid-u38oZmBwUj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u38oZmBwUj .modal-header .close svg {
  fill: #353535;
}
.cid-u38oZmBwUj .modal-header .close:hover {
  opacity: 1;
}
.cid-u38oZmBwUj .modal-header .close:focus {
  outline: none;
}
.cid-u38oZmBwUj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u38oZmBwUj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u38oZmBwUj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u38oZmBwUj .modal-body {
    padding: 1rem;
  }
}
.cid-u38oZmBwUj .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-u38oZmBwUj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u38oZmBwUj .modal-footer {
    padding: 1rem;
  }
}
.cid-u38oZmBwUj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u38oZmBwUj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u38oZmBwUj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u38oZmBwUj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u38oZmBwUj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u38oZmBwUj .modal-lg,
  .cid-u38oZmBwUj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u38oZmBwUj .modal-xl {
    max-width: 1140px;
  }
}
.cid-u38oZmBwUj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u38oZmBwUj .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-u38oZmBwUj .form-group {
  margin-bottom: 1rem;
}
.cid-u38oZmBwUj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u38oZmBwUj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u38oZmBwUj .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-u38oZmBwUj .mbr-section-btn {
  margin: 0;
}
.cid-u38oZmBwUj .mbr-section-btn .btn {
  margin: 0;
}
.cid-uzZsX8xhMT.popup-builder {
  background-color: #ffffff;
}
.cid-uzZsX8xhMT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uzZsX8xhMT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uzZsX8xhMT .modal-content,
.cid-uzZsX8xhMT .modal-dialog {
  height: auto;
}
.cid-uzZsX8xhMT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uzZsX8xhMT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uzZsX8xhMT .form-wrapper .mbr-form .form-group,
  .cid-uzZsX8xhMT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uzZsX8xhMT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .mbr-text {
  text-align: center;
}
.cid-uzZsX8xhMT .pt-0 {
  padding-top: 0 !important;
}
.cid-uzZsX8xhMT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uzZsX8xhMT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uzZsX8xhMT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uzZsX8xhMT .modal-open {
  overflow: hidden;
}
.cid-uzZsX8xhMT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uzZsX8xhMT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uzZsX8xhMT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uzZsX8xhMT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uzZsX8xhMT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uzZsX8xhMT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uzZsX8xhMT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uzZsX8xhMT .modal-backdrop.show {
  opacity: .5;
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzZsX8xhMT .modal-header {
    padding: 1rem;
  }
}
.cid-uzZsX8xhMT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uzZsX8xhMT .modal-header .close svg {
  fill: #353535;
}
.cid-uzZsX8xhMT .modal-header .close:hover {
  opacity: 1;
}
.cid-uzZsX8xhMT .modal-header .close:focus {
  outline: none;
}
.cid-uzZsX8xhMT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uzZsX8xhMT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uzZsX8xhMT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzZsX8xhMT .modal-body {
    padding: 1rem;
  }
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzZsX8xhMT .modal-footer {
    padding: 1rem;
  }
}
.cid-uzZsX8xhMT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uzZsX8xhMT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uzZsX8xhMT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uzZsX8xhMT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uzZsX8xhMT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uzZsX8xhMT .modal-lg,
  .cid-uzZsX8xhMT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uzZsX8xhMT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uzZsX8xhMT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .form-group {
  margin-bottom: 1rem;
}
.cid-uzZsX8xhMT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uzZsX8xhMT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uzZsX8xhMT .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-uzZsX8xhMT .mbr-section-btn {
  margin: 0;
}
.cid-uzZsX8xhMT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uA3mxrD541.popup-builder {
  background-color: #ffffff;
}
.cid-uA3mxrD541.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uA3mxrD541.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uA3mxrD541 .modal-content,
.cid-uA3mxrD541 .modal-dialog {
  height: auto;
}
.cid-uA3mxrD541 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uA3mxrD541 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uA3mxrD541 .form-wrapper .mbr-form .form-group,
  .cid-uA3mxrD541 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uA3mxrD541 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uA3mxrD541 .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-uA3mxrD541 .mbr-text {
  text-align: center;
}
.cid-uA3mxrD541 .pt-0 {
  padding-top: 0 !important;
}
.cid-uA3mxrD541 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uA3mxrD541 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uA3mxrD541 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uA3mxrD541 .modal-open {
  overflow: hidden;
}
.cid-uA3mxrD541 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uA3mxrD541 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uA3mxrD541 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uA3mxrD541 .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-uA3mxrD541 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uA3mxrD541 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uA3mxrD541 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uA3mxrD541 .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-uA3mxrD541 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uA3mxrD541 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uA3mxrD541 .modal-backdrop.show {
  opacity: .5;
}
.cid-uA3mxrD541 .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-uA3mxrD541 .modal-header {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uA3mxrD541 .modal-header {
    padding: 1rem;
  }
}
.cid-uA3mxrD541 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uA3mxrD541 .modal-header .close:hover {
  opacity: 1;
}
.cid-uA3mxrD541 .modal-header .close:focus {
  outline: none;
}
.cid-uA3mxrD541 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uA3mxrD541 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-uA3mxrD541 .modal-body {
    padding: 1rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uA3mxrD541 .modal-body {
    padding: 1rem;
  }
}
.cid-uA3mxrD541 .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-uA3mxrD541 .modal-footer {
    padding: 1rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uA3mxrD541 .modal-footer {
    padding: 1rem;
  }
}
.cid-uA3mxrD541 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uA3mxrD541 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uA3mxrD541 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uA3mxrD541 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uA3mxrD541 .modal-sm {
    max-width: 300px;
  }
  .cid-uA3mxrD541 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uA3mxrD541 .modal-lg,
  .cid-uA3mxrD541 .modal-xl {
    max-width: 800px;
  }
  .cid-uA3mxrD541 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uA3mxrD541 .modal-xl {
    max-width: 1140px;
  }
  .cid-uA3mxrD541 .container {
    max-width: 1140px;
  }
}
.cid-uA3mxrD541 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uA3mxrD541 .container {
    max-width: 720px;
  }
}
.cid-uA3mxrD541 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uA3mxrD541 .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-uA3mxrD541 .form-group {
  margin-bottom: 1rem;
}
.cid-uA3mxrD541 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uA3mxrD541 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uA3mxrD541 .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-v8nsmjRY7t.popup-builder {
  background-color: #ffffff;
}
.cid-v8nsmjRY7t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v8nsmjRY7t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v8nsmjRY7t .modal-content,
.cid-v8nsmjRY7t .modal-dialog {
  height: auto;
}
.cid-v8nsmjRY7t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v8nsmjRY7t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v8nsmjRY7t .form-wrapper .mbr-form .form-group,
  .cid-v8nsmjRY7t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v8nsmjRY7t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .mbr-text {
  text-align: center;
}
.cid-v8nsmjRY7t .pt-0 {
  padding-top: 0 !important;
}
.cid-v8nsmjRY7t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v8nsmjRY7t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v8nsmjRY7t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v8nsmjRY7t .modal-open {
  overflow: hidden;
}
.cid-v8nsmjRY7t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v8nsmjRY7t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v8nsmjRY7t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v8nsmjRY7t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v8nsmjRY7t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v8nsmjRY7t .modal-backdrop.fade {
  opacity: 0;
}
.cid-v8nsmjRY7t .modal-backdrop.show {
  opacity: .5;
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v8nsmjRY7t .modal-header .close:hover {
  opacity: 1;
}
.cid-v8nsmjRY7t .modal-header .close:focus {
  outline: none;
}
.cid-v8nsmjRY7t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-v8nsmjRY7t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v8nsmjRY7t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v8nsmjRY7t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v8nsmjRY7t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v8nsmjRY7t .modal-sm {
    max-width: 300px;
  }
  .cid-v8nsmjRY7t .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-v8nsmjRY7t .modal-lg,
  .cid-v8nsmjRY7t .modal-xl {
    max-width: 800px;
  }
  .cid-v8nsmjRY7t .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-v8nsmjRY7t .modal-xl {
    max-width: 1140px;
  }
  .cid-v8nsmjRY7t .container {
    max-width: 1140px;
  }
}
.cid-v8nsmjRY7t .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-v8nsmjRY7t .container {
    max-width: 720px;
  }
}
.cid-v8nsmjRY7t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v8nsmjRY7t .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-v8nsmjRY7t .form-group {
  margin-bottom: 1rem;
}
.cid-v8nsmjRY7t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v8nsmjRY7t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v8nsmjRY7t .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%;
}
