.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.96rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #66ff77 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #66ff77 !important;
  border-color: #66ff77 !important;
  color: #00660b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #000f02 !important;
  background-color: #0fff2a !important;
  border-color: #0fff2a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #00660b !important;
  background-color: #0fff2a !important;
  border-color: #0fff2a !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #66ff77;
  color: #66ff77;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0fff2a !important;
  background-color: transparent!important;
  border-color: #0fff2a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #00660b !important;
  background-color: #66ff77 !important;
  border-color: #66ff77 !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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #66ff77 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !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: #00ff1c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.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: #66ff77;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.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: 'Jost', 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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', 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: #6592e6;
}
/* 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: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !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: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-u0AxvxWHCe {
  padding-top: 90px;
  padding-bottom: 90px;
}
.cid-u0AxvxWHCe .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-u0AxvxWHCe .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-u0AxvxWHCe .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-u0AxvxWHCe .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u0AxvxWHCe .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-u0AxvxWHCe {
    text-align: center !important;
  }
}
.cid-u0AxvxWHCe .mbr-text {
  color: #ffffff;
}
.cid-uAr4c1PeWB {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/bluehandsearth-1024x768.webp");
}
.cid-uAr4c1PeWB .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uAr4c1PeWB .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uAr4c1PeWB .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uAr4c1PeWB .mbr-text,
.cid-uAr4c1PeWB .mbr-section-btn {
  color: #ffffff;
}
.cid-uAr4c1PeWB H1 {
  color: #5cff00;
  text-align: left;
}
.cid-uAr4c1PeWB H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uAr4c1PeWB H2 {
  color: #ffffff;
  text-align: left;
}
.cid-uZNppcoTPp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/atthegame-1709x1076.webp");
}
.cid-uZNppcoTPp .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uZNppcoTPp .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uZNppcoTPp .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uZNppcoTPp .mbr-text,
.cid-uZNppcoTPp .mbr-section-btn {
  color: #ffffff;
}
.cid-uZNppcoTPp H1 {
  color: #5cff00;
  text-align: left;
}
.cid-uZNppcoTPp H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uZNppcoTPp H2 {
  color: #ffffff;
  text-align: left;
}
.cid-uZNFt2jBp3 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/ab265-main-650x230.webp");
}
.cid-uZNFt2jBp3 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uZNFt2jBp3 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uZNFt2jBp3 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uZNFt2jBp3 .mbr-text,
.cid-uZNFt2jBp3 .mbr-section-btn {
  color: #ffffff;
}
.cid-uZNFt2jBp3 H1 {
  color: #5cff00;
  text-align: left;
}
.cid-uZNFt2jBp3 H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uZNFt2jBp3 H2 {
  color: #ffffff;
  text-align: left;
}
.cid-u0AE8I6HLB {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/header-bg-indoor-1900x1250.webp");
}
.cid-u0AE8I6HLB .mbr-section-head {
  margin-bottom: 2.3rem;
}
.cid-u0AE8I6HLB .mbr-section-title {
  text-align: center;
  color: #f9f295;
}
.cid-u0AE8I6HLB .mbr-section-subtitle {
  margin-bottom: 2.3rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u0AE8I6HLB .text-wrapper {
    margin-top: 2rem;
  }
}
.cid-u0AE8I6HLB .video-wrapper iframe {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u0AE8I6HLB .text-wrapper {
    padding: 2rem;
  }
}
.cid-u0AE8I6HLB .mbr-text {
  color: #f9f295;
}
.cid-u0ACzlkWbM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-u0ACzlkWbM .panel-group {
  border: none;
}
.cid-u0ACzlkWbM .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u0ACzlkWbM .panel-title.collapsed .icon-card::after {
  transform: rotate(90deg);
}
.cid-u0ACzlkWbM .panel-title.collapsed .icon-card::before {
  transform: rotate(180deg);
}
.cid-u0ACzlkWbM .panel-title:hover .icon-card::after {
  transform: rotate(0deg);
}
.cid-u0ACzlkWbM .panel-title:hover .icon-card::before {
  transform: rotate(0deg);
}
.cid-u0ACzlkWbM .card-header {
  margin: 0 !important;
  padding: 0.8125rem 0 0.3125rem 0;
  border-bottom: 2px solid #e5d9d0;
}
.cid-u0ACzlkWbM .panel-body {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.cid-u0ACzlkWbM .card {
  margin-bottom: 0.75rem;
}
.cid-u0ACzlkWbM .card .card-header {
  background-color: transparent;
}
.cid-u0ACzlkWbM .panel-title-edit {
  width: 100%;
  color: #ffffff;
}
.cid-u0ACzlkWbM .image-wrapper,
.cid-u0ACzlkWbM .mbr-img-wrap {
  height: 100%;
}
.cid-u0ACzlkWbM .icon-card {
  width: 17px;
  height: 17px;
  position: relative;
}
.cid-u0ACzlkWbM .icon-card::before,
.cid-u0ACzlkWbM .icon-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #6592e6;
  transition: 0.3s;
}
.cid-u0ACzlkWbM .panel-text {
  color: #ffffff;
  text-align: left;
}
.cid-uAU4ohcT1H {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/businesssuccessglobe1020-1020x765.webp");
}
.cid-uAU4ohcT1H .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uAU4ohcT1H .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uAU4ohcT1H .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uAU4A1eCJv {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-uAU4A1eCJv .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-uAU4A1eCJv .title-wrapper {
  padding: 0 12px;
}
.cid-uAU4A1eCJv .text-block {
  padding: 48px 24px;
}
.cid-uAU4A1eCJv .video-wrapper iframe {
  width: 100%;
}
.cid-uAU4A1eCJv .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-uAU4A1eCJv .mbr-section-title {
  text-align: center;
  color: #ff49c0;
}
.cid-uAU4A1eCJv .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-uAU4A1eCJv .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-uAU4A1eCJv .mbr-text,
.cid-uAU4A1eCJv .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uAU4A1eCJv .video-block {
    border-left: none;
  }
  .cid-uAU4A1eCJv .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-uAU4A1eCJv .title-wrapper {
    padding: 0 48px;
  }
  .cid-uAU4A1eCJv .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-uAU4A1eCJv .mbr-section-subtitle {
  color: #ff6f45;
}
.cid-uAU4A1eCJv .mbr-text {
  color: #ffe161;
}
.cid-uAU6v5Zin5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/businesssuccessglobe-1200x900.webp");
  overflow: hidden;
}
.cid-uAU6v5Zin5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAU6v5Zin5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAU6v5Zin5 .container,
.cid-uAU6v5Zin5 .container-fluid {
  position: relative;
}
.cid-uAU6v5Zin5 .row {
  justify-content: left;
}
.cid-uAU6v5Zin5 .col-content {
  position: relative;
  z-index: 10;
}
.cid-uAU6v5Zin5 .mbr-section-title {
  color: #ffffff;
}
.cid-uAU6v5Zin5 .mbr-section-subtitle {
  color: #2B2B2B;
}
.cid-uAU6v5Zin5 .mbr-text {
  color: #2B2B2B;
}
.cid-uAU6v5Zin5 .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-uAU6v5Zin5 .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-uAU6v5Zin5 .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-uAU6v5Zin5 .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #a47ee3 27%, #a47ee3 50%, #a47ee3 79%);
}
.cid-uAU6v5Zin5 .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #5f6ad4 27%, #5f6ad4 50%, #5f6ad4 79%);
}
.cid-uAU6v5Zin5 .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #fff182 27%, #fff182 50%, #fff182 79%);
}
.cid-uAU6v5Zin5 .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-uAU6ouvfgF {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/background3-1.webp");
}
.cid-uAU6ouvfgF .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-uAU6ouvfgF .title-wrapper {
  padding: 0 12px;
}
.cid-uAU6ouvfgF .text-block {
  padding: 48px 24px;
}
.cid-uAU6ouvfgF .video-wrapper iframe {
  width: 100%;
}
.cid-uAU6ouvfgF .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-uAU6ouvfgF .mbr-section-title {
  text-align: center;
  color: #ff49c0;
}
.cid-uAU6ouvfgF .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-uAU6ouvfgF .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-uAU6ouvfgF .mbr-text,
.cid-uAU6ouvfgF .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-uAU6ouvfgF .video-block {
    border-left: none;
  }
  .cid-uAU6ouvfgF .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-uAU6ouvfgF .title-wrapper {
    padding: 0 48px;
  }
  .cid-uAU6ouvfgF .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-uAU6ouvfgF .mbr-section-subtitle {
  color: #ff6f45;
}
.cid-uAU6ouvfgF .mbr-text {
  color: #ffe161;
}
.cid-u0AIz6bssU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/01-900x600.webp");
}
.cid-u0AIz6bssU .mbr-text {
  color: #000000;
}
.cid-u0AIz6bssU .mbr-text a {
  color: #47b5ed;
}
.cid-u0AIz6bssU .list {
  padding-left: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-u0AIz6bssU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u0AIz6bssU .list {
    margin-bottom: 0rem;
  }
}
.cid-u0AIz6bssU .list .mbr-link-btn {
  display: inline-block;
}
.cid-u0AIz6bssU .list .mbr-link-btn::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-u0AIz6bssU .list .mbr-link-btn.last::after {
  display: none;
}
@media (max-width: 768px) {
  .cid-u0AIz6bssU .list .mbr-link-btn {
    display: block;
  }
  .cid-u0AIz6bssU .list .mbr-link-btn::after {
    display: none;
  }
}
.cid-u0AIz6bssU .list a {
  padding: 0;
  margin: 0;
}
.cid-u0AIz6bssU .list a:hover {
  text-decoration: underline;
  color: #000000;
}
.cid-u0AIz6bssU .list a::after {
  content: '\2022';
  color: #74a3c7;
  display: inline-block;
  padding: 0 1.5rem;
  font-size: 1.5em;
  vertical-align: -4px;
}
.cid-u0AIz6bssU .list a:last-child::after {
  display: none;
}
.cid-u0AIz6bssU .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u0AIz6bssU .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .cid-u0AIz6bssU .social-media ul {
    text-align: center;
  }
}
.cid-u0AIz6bssU .social-media ul li {
  padding: 6px;
  display: inline-block;
}
.cid-u0AIz6bssU a:link {
  text-decoration: none;
}
.cid-u0AIz6bssU .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-u0AIz6bssU .icon-transition span:hover {
  background-color: #74a3c7;
  color: #ffffff;
}
.cid-u0ADnSMAFi.popup-builder {
  background-color: #ffffff;
}
.cid-u0ADnSMAFi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u0ADnSMAFi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u0ADnSMAFi .modal-content,
.cid-u0ADnSMAFi .modal-dialog {
  height: auto;
}
.cid-u0ADnSMAFi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u0ADnSMAFi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u0ADnSMAFi .form-wrapper .mbr-form .form-group,
  .cid-u0ADnSMAFi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u0ADnSMAFi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .mbr-text {
  text-align: center;
}
.cid-u0ADnSMAFi .pt-0 {
  padding-top: 0 !important;
}
.cid-u0ADnSMAFi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u0ADnSMAFi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u0ADnSMAFi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u0ADnSMAFi .modal-open {
  overflow: hidden;
}
.cid-u0ADnSMAFi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u0ADnSMAFi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u0ADnSMAFi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u0ADnSMAFi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u0ADnSMAFi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u0ADnSMAFi .modal-backdrop.fade {
  opacity: 0;
}
.cid-u0ADnSMAFi .modal-backdrop.show {
  opacity: .5;
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u0ADnSMAFi .modal-header .close:hover {
  opacity: 1;
}
.cid-u0ADnSMAFi .modal-header .close:focus {
  outline: none;
}
.cid-u0ADnSMAFi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-u0ADnSMAFi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u0ADnSMAFi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u0ADnSMAFi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u0ADnSMAFi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u0ADnSMAFi .modal-sm {
    max-width: 300px;
  }
  .cid-u0ADnSMAFi .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-u0ADnSMAFi .modal-lg,
  .cid-u0ADnSMAFi .modal-xl {
    max-width: 800px;
  }
  .cid-u0ADnSMAFi .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-u0ADnSMAFi .modal-xl {
    max-width: 1140px;
  }
  .cid-u0ADnSMAFi .container {
    max-width: 1140px;
  }
}
.cid-u0ADnSMAFi .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-u0ADnSMAFi .container {
    max-width: 720px;
  }
}
.cid-u0ADnSMAFi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u0ADnSMAFi .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-u0ADnSMAFi .form-group {
  margin-bottom: 1rem;
}
.cid-u0ADnSMAFi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u0ADnSMAFi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u0ADnSMAFi .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-u0AFLmBdqb.popup-builder {
  background-color: #ffffff;
}
.cid-u0AFLmBdqb.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u0AFLmBdqb.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u0AFLmBdqb .modal-content,
.cid-u0AFLmBdqb .modal-dialog {
  height: auto;
}
.cid-u0AFLmBdqb .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u0AFLmBdqb .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u0AFLmBdqb .form-wrapper .mbr-form .form-group,
  .cid-u0AFLmBdqb .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u0AFLmBdqb .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-u0AFLmBdqb .pt-0 {
  padding-top: 0 !important;
}
.cid-u0AFLmBdqb .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u0AFLmBdqb .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u0AFLmBdqb .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u0AFLmBdqb .modal-open {
  overflow: hidden;
}
.cid-u0AFLmBdqb .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u0AFLmBdqb .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u0AFLmBdqb .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u0AFLmBdqb .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u0AFLmBdqb .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-u0AFLmBdqb .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u0AFLmBdqb .modal-backdrop.fade {
  opacity: 0;
}
.cid-u0AFLmBdqb .modal-backdrop.show {
  opacity: .5;
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u0AFLmBdqb .modal-header {
    padding: 1rem;
  }
}
.cid-u0AFLmBdqb .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u0AFLmBdqb .modal-header .close svg {
  fill: #353535;
}
.cid-u0AFLmBdqb .modal-header .close:hover {
  opacity: 1;
}
.cid-u0AFLmBdqb .modal-header .close:focus {
  outline: none;
}
.cid-u0AFLmBdqb .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u0AFLmBdqb .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-u0AFLmBdqb .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0AFLmBdqb .modal-body {
    padding: 1rem;
  }
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0AFLmBdqb .modal-footer {
    padding: 1rem;
  }
}
.cid-u0AFLmBdqb .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u0AFLmBdqb .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u0AFLmBdqb .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u0AFLmBdqb .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u0AFLmBdqb .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-u0AFLmBdqb .modal-lg,
  .cid-u0AFLmBdqb .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-u0AFLmBdqb .modal-xl {
    max-width: 1140px;
  }
}
.cid-u0AFLmBdqb .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .form-group {
  margin-bottom: 1rem;
}
.cid-u0AFLmBdqb .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u0AFLmBdqb .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u0AFLmBdqb .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-u0AFLmBdqb .mbr-section-btn {
  margin: 0;
}
.cid-u0AFLmBdqb .mbr-section-btn .btn {
  margin: 0;
}
.cid-u0B0gqipOg.popup-builder {
  background-color: #ffffff;
}
.cid-u0B0gqipOg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-u0B0gqipOg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-u0B0gqipOg .modal-content,
.cid-u0B0gqipOg .modal-dialog {
  height: auto;
}
.cid-u0B0gqipOg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-u0B0gqipOg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-u0B0gqipOg .form-wrapper .mbr-form .form-group,
  .cid-u0B0gqipOg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-u0B0gqipOg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-u0B0gqipOg .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-u0B0gqipOg .mbr-text {
  text-align: center;
}
.cid-u0B0gqipOg .pt-0 {
  padding-top: 0 !important;
}
.cid-u0B0gqipOg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-u0B0gqipOg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-u0B0gqipOg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-u0B0gqipOg .modal-open {
  overflow: hidden;
}
.cid-u0B0gqipOg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-u0B0gqipOg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-u0B0gqipOg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-u0B0gqipOg .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-u0B0gqipOg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-u0B0gqipOg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-u0B0gqipOg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-u0B0gqipOg .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-u0B0gqipOg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-u0B0gqipOg .modal-backdrop.fade {
  opacity: 0;
}
.cid-u0B0gqipOg .modal-backdrop.show {
  opacity: .5;
}
.cid-u0B0gqipOg .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-u0B0gqipOg .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-u0B0gqipOg .modal-header .close:hover {
  opacity: 1;
}
.cid-u0B0gqipOg .modal-header .close:focus {
  outline: none;
}
.cid-u0B0gqipOg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-u0B0gqipOg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-u0B0gqipOg .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-u0B0gqipOg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-u0B0gqipOg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-u0B0gqipOg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-u0B0gqipOg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-u0B0gqipOg .modal-sm {
    max-width: 300px;
  }
  .cid-u0B0gqipOg .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-u0B0gqipOg .modal-lg,
  .cid-u0B0gqipOg .modal-xl {
    max-width: 800px;
  }
  .cid-u0B0gqipOg .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-u0B0gqipOg .modal-xl {
    max-width: 1140px;
  }
  .cid-u0B0gqipOg .container {
    max-width: 1140px;
  }
}
.cid-u0B0gqipOg .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-u0B0gqipOg .container {
    max-width: 720px;
  }
}
.cid-u0B0gqipOg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-u0B0gqipOg .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-u0B0gqipOg .form-group {
  margin-bottom: 1rem;
}
.cid-u0B0gqipOg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-u0B0gqipOg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-u0B0gqipOg .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-uAgnnALrfS.popup-builder {
  background-color: #ffffff;
}
.cid-uAgnnALrfS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAgnnALrfS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAgnnALrfS .modal-content,
.cid-uAgnnALrfS .modal-dialog {
  height: auto;
}
.cid-uAgnnALrfS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAgnnALrfS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAgnnALrfS .form-wrapper .mbr-form .form-group,
  .cid-uAgnnALrfS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAgnnALrfS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAgnnALrfS .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-uAgnnALrfS .mbr-text {
  text-align: center;
}
.cid-uAgnnALrfS .pt-0 {
  padding-top: 0 !important;
}
.cid-uAgnnALrfS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAgnnALrfS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAgnnALrfS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAgnnALrfS .modal-open {
  overflow: hidden;
}
.cid-uAgnnALrfS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAgnnALrfS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAgnnALrfS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAgnnALrfS .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-uAgnnALrfS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAgnnALrfS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAgnnALrfS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAgnnALrfS .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-uAgnnALrfS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAgnnALrfS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAgnnALrfS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAgnnALrfS .modal-backdrop.show {
  opacity: .5;
}
.cid-uAgnnALrfS .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-uAgnnALrfS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAgnnALrfS .modal-header {
    padding: 1rem;
  }
}
.cid-uAgnnALrfS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAgnnALrfS .modal-header .close svg {
  fill: #353535;
}
.cid-uAgnnALrfS .modal-header .close:hover {
  opacity: 1;
}
.cid-uAgnnALrfS .modal-header .close:focus {
  outline: none;
}
.cid-uAgnnALrfS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAgnnALrfS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAgnnALrfS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAgnnALrfS .modal-body {
    padding: 1rem;
  }
}
.cid-uAgnnALrfS .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-uAgnnALrfS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAgnnALrfS .modal-footer {
    padding: 1rem;
  }
}
.cid-uAgnnALrfS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAgnnALrfS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAgnnALrfS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAgnnALrfS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAgnnALrfS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAgnnALrfS .modal-lg,
  .cid-uAgnnALrfS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAgnnALrfS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAgnnALrfS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAgnnALrfS .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-uAgnnALrfS .form-group {
  margin-bottom: 1rem;
}
.cid-uAgnnALrfS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAgnnALrfS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAgnnALrfS .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-uAgnnALrfS .mbr-section-btn {
  margin: 0;
}
.cid-uAgnnALrfS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAU77rc1pv.popup-builder {
  background-color: #ffffff;
}
.cid-uAU77rc1pv.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAU77rc1pv.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAU77rc1pv .modal-content,
.cid-uAU77rc1pv .modal-dialog {
  height: auto;
}
.cid-uAU77rc1pv .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAU77rc1pv .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAU77rc1pv .form-wrapper .mbr-form .form-group,
  .cid-uAU77rc1pv .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAU77rc1pv .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAU77rc1pv .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-uAU77rc1pv .mbr-text {
  text-align: center;
}
.cid-uAU77rc1pv .pt-0 {
  padding-top: 0 !important;
}
.cid-uAU77rc1pv .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAU77rc1pv .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAU77rc1pv .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAU77rc1pv .modal-open {
  overflow: hidden;
}
.cid-uAU77rc1pv .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAU77rc1pv .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAU77rc1pv .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAU77rc1pv .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-uAU77rc1pv .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAU77rc1pv .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAU77rc1pv .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAU77rc1pv .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-uAU77rc1pv .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAU77rc1pv .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAU77rc1pv .modal-backdrop.show {
  opacity: .5;
}
.cid-uAU77rc1pv .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-uAU77rc1pv .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAU77rc1pv .modal-header .close:hover {
  opacity: 1;
}
.cid-uAU77rc1pv .modal-header .close:focus {
  outline: none;
}
.cid-uAU77rc1pv .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAU77rc1pv .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uAU77rc1pv .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-uAU77rc1pv .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAU77rc1pv .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAU77rc1pv .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAU77rc1pv .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAU77rc1pv .modal-sm {
    max-width: 300px;
  }
  .cid-uAU77rc1pv .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uAU77rc1pv .modal-lg,
  .cid-uAU77rc1pv .modal-xl {
    max-width: 800px;
  }
  .cid-uAU77rc1pv .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uAU77rc1pv .modal-xl {
    max-width: 1140px;
  }
  .cid-uAU77rc1pv .container {
    max-width: 1140px;
  }
}
.cid-uAU77rc1pv .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uAU77rc1pv .container {
    max-width: 720px;
  }
}
.cid-uAU77rc1pv .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAU77rc1pv .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-uAU77rc1pv .form-group {
  margin-bottom: 1rem;
}
.cid-uAU77rc1pv .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAU77rc1pv .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAU77rc1pv .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-uAU7aBmSP6.popup-builder {
  background-color: #ffffff;
}
.cid-uAU7aBmSP6.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAU7aBmSP6.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAU7aBmSP6 .modal-content,
.cid-uAU7aBmSP6 .modal-dialog {
  height: auto;
}
.cid-uAU7aBmSP6 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAU7aBmSP6 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAU7aBmSP6 .form-wrapper .mbr-form .form-group,
  .cid-uAU7aBmSP6 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAU7aBmSP6 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .mbr-text {
  text-align: center;
}
.cid-uAU7aBmSP6 .pt-0 {
  padding-top: 0 !important;
}
.cid-uAU7aBmSP6 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAU7aBmSP6 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAU7aBmSP6 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAU7aBmSP6 .modal-open {
  overflow: hidden;
}
.cid-uAU7aBmSP6 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAU7aBmSP6 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAU7aBmSP6 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAU7aBmSP6 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAU7aBmSP6 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAU7aBmSP6 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAU7aBmSP6 .modal-backdrop.show {
  opacity: .5;
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAU7aBmSP6 .modal-header .close:hover {
  opacity: 1;
}
.cid-uAU7aBmSP6 .modal-header .close:focus {
  outline: none;
}
.cid-uAU7aBmSP6 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAU7aBmSP6 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAU7aBmSP6 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAU7aBmSP6 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAU7aBmSP6 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAU7aBmSP6 .modal-sm {
    max-width: 300px;
  }
  .cid-uAU7aBmSP6 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uAU7aBmSP6 .modal-lg,
  .cid-uAU7aBmSP6 .modal-xl {
    max-width: 800px;
  }
  .cid-uAU7aBmSP6 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uAU7aBmSP6 .modal-xl {
    max-width: 1140px;
  }
  .cid-uAU7aBmSP6 .container {
    max-width: 1140px;
  }
}
.cid-uAU7aBmSP6 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uAU7aBmSP6 .container {
    max-width: 720px;
  }
}
.cid-uAU7aBmSP6 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAU7aBmSP6 .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-uAU7aBmSP6 .form-group {
  margin-bottom: 1rem;
}
.cid-uAU7aBmSP6 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAU7aBmSP6 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAU7aBmSP6 .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-uAU7dZxa2Z.popup-builder {
  background-color: #ffffff;
}
.cid-uAU7dZxa2Z.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAU7dZxa2Z.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAU7dZxa2Z .modal-content,
.cid-uAU7dZxa2Z .modal-dialog {
  height: auto;
}
.cid-uAU7dZxa2Z .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAU7dZxa2Z .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAU7dZxa2Z .form-wrapper .mbr-form .form-group,
  .cid-uAU7dZxa2Z .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAU7dZxa2Z .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uAU7dZxa2Z .pt-0 {
  padding-top: 0 !important;
}
.cid-uAU7dZxa2Z .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAU7dZxa2Z .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAU7dZxa2Z .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAU7dZxa2Z .modal-open {
  overflow: hidden;
}
.cid-uAU7dZxa2Z .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAU7dZxa2Z .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAU7dZxa2Z .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAU7dZxa2Z .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAU7dZxa2Z .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAU7dZxa2Z .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAU7dZxa2Z .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAU7dZxa2Z .modal-backdrop.show {
  opacity: .5;
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7dZxa2Z .modal-header {
    padding: 1rem;
  }
}
.cid-uAU7dZxa2Z .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAU7dZxa2Z .modal-header .close svg {
  fill: #353535;
}
.cid-uAU7dZxa2Z .modal-header .close:hover {
  opacity: 1;
}
.cid-uAU7dZxa2Z .modal-header .close:focus {
  outline: none;
}
.cid-uAU7dZxa2Z .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAU7dZxa2Z .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAU7dZxa2Z .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7dZxa2Z .modal-body {
    padding: 1rem;
  }
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7dZxa2Z .modal-footer {
    padding: 1rem;
  }
}
.cid-uAU7dZxa2Z .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAU7dZxa2Z .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAU7dZxa2Z .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAU7dZxa2Z .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAU7dZxa2Z .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAU7dZxa2Z .modal-lg,
  .cid-uAU7dZxa2Z .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAU7dZxa2Z .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAU7dZxa2Z .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .form-group {
  margin-bottom: 1rem;
}
.cid-uAU7dZxa2Z .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAU7dZxa2Z .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAU7dZxa2Z .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-uAU7dZxa2Z .mbr-section-btn {
  margin: 0;
}
.cid-uAU7dZxa2Z .mbr-section-btn .btn {
  margin: 0;
}
.cid-uAU7fuh2mj.popup-builder {
  background-color: #ffffff;
}
.cid-uAU7fuh2mj.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uAU7fuh2mj.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uAU7fuh2mj .modal-content,
.cid-uAU7fuh2mj .modal-dialog {
  height: auto;
}
.cid-uAU7fuh2mj .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uAU7fuh2mj .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uAU7fuh2mj .form-wrapper .mbr-form .form-group,
  .cid-uAU7fuh2mj .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uAU7fuh2mj .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uAU7fuh2mj .pt-0 {
  padding-top: 0 !important;
}
.cid-uAU7fuh2mj .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uAU7fuh2mj .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uAU7fuh2mj .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uAU7fuh2mj .modal-open {
  overflow: hidden;
}
.cid-uAU7fuh2mj .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uAU7fuh2mj .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uAU7fuh2mj .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uAU7fuh2mj .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uAU7fuh2mj .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uAU7fuh2mj .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uAU7fuh2mj .modal-backdrop.fade {
  opacity: 0;
}
.cid-uAU7fuh2mj .modal-backdrop.show {
  opacity: .5;
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7fuh2mj .modal-header {
    padding: 1rem;
  }
}
.cid-uAU7fuh2mj .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uAU7fuh2mj .modal-header .close svg {
  fill: #353535;
}
.cid-uAU7fuh2mj .modal-header .close:hover {
  opacity: 1;
}
.cid-uAU7fuh2mj .modal-header .close:focus {
  outline: none;
}
.cid-uAU7fuh2mj .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uAU7fuh2mj .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uAU7fuh2mj .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7fuh2mj .modal-body {
    padding: 1rem;
  }
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAU7fuh2mj .modal-footer {
    padding: 1rem;
  }
}
.cid-uAU7fuh2mj .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uAU7fuh2mj .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uAU7fuh2mj .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uAU7fuh2mj .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uAU7fuh2mj .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uAU7fuh2mj .modal-lg,
  .cid-uAU7fuh2mj .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uAU7fuh2mj .modal-xl {
    max-width: 1140px;
  }
}
.cid-uAU7fuh2mj .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .form-group {
  margin-bottom: 1rem;
}
.cid-uAU7fuh2mj .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uAU7fuh2mj .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uAU7fuh2mj .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-uAU7fuh2mj .mbr-section-btn {
  margin: 0;
}
.cid-uAU7fuh2mj .mbr-section-btn .btn {
  margin: 0;
}
.cid-u0AMnA1090 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #0b0b0b;
}
.cid-u0AMnA1090 .row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-u0AMnA1090 .text-wrapper {
    padding: 0 3rem 0 0;
  }
}
@media (max-width: 768px) {
  .cid-u0AMnA1090 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u0AMnA1090 .mbr-img-wrap {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-u0AMnA1090 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u0AMnA1090 .image-wrapper img {
  vertical-align: middle;
  width: 100%;
  object-fit: cover;
}
.cid-u0AMnA1090 .mbr-section-tag {
  color: #fefd36;
  margin-bottom: 7px;
}
.cid-u0AMnA1090 .mbr-section-btn {
  margin-top: 1.625rem;
}
.cid-u0AMnA1090 .mbr-section-bottom {
  border-style: solid;
  border-width: 2px 0px 0px 0px;
  border-color: #232323;
}
.cid-u0AMnA1090 .bottom-text {
  margin-top: 2rem;
  margin-bottom: 0.625rem;
}
.cid-u0AMnA1090 .bottom-title {
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
  color: #f23801;
}
.cid-u0AMnA1090 .list {
  list-style: none;
  padding-left: 0;
}
.cid-u0AMnA1090 .list li {
  position: relative;
  margin: 0 0 0.625rem;
}
.cid-u0AMnA1090 .list li::before {
  content: "–";
  display: inline-block;
  margin-right: 1rem;
}
.cid-u0AMnA1090 .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-u0AMnA1090 .mbr-section-text {
  margin-bottom: 2rem;
}
.cid-u0AMnA1090 .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-u0AMnA1090 .mbr-section-title b:last-child,
.cid-u0AMnA1090 .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-u0AMpoL9lC {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
  overflow: hidden;
}
.cid-u0AMpoL9lC svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-u0AMpoL9lC #e2_shape {
  fill: #ffffff !important;
}
.cid-u0AMpoL9lC img {
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
}
@media (max-width: 576px) {
  .cid-u0AMpoL9lC img {
    width: 90%!important;
  }
}
.cid-u0AMpoL9lC H1 {
  color: #ffffff;
}
.cid-u0AMpoL9lC H3 {
  color: #fff0b0;
}
.cid-u0REkDiRLt {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1920x855.webp");
  overflow: hidden;
}
.cid-u0REkDiRLt svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-u0REkDiRLt #e2_shape {
  fill: #ffffff !important;
}
.cid-u0REkDiRLt img {
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
}
@media (max-width: 576px) {
  .cid-u0REkDiRLt img {
    width: 90%!important;
  }
}
.cid-u0REkDiRLt H1 {
  color: #ffffff;
}
.cid-u0REkDiRLt H3 {
  color: #ffe161;
}
.cid-u0AMrG5tf0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-u0AMrG5tf0 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-u0AMrG5tf0 .panel-group {
  border: none;
}
.cid-u0AMrG5tf0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-u0AMrG5tf0 .panel-body,
.cid-u0AMrG5tf0 .card-header {
  padding: 1rem 0;
}
.cid-u0AMrG5tf0 .panel-title-edit {
  color: #000000;
}
.cid-u0AMrG5tf0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-u0AMtirbKF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u0AMtirbKF .mbr-text {
  color: #000000;
}
.cid-u0ANWuyTIF {
  padding-top: 60px;
  background-color: #232323;
}
.cid-u0ANWuyTIF .container {
  margin-bottom: 15%;
}
.cid-u0ANWuyTIF .content-container .btn-bgr {
  z-index: 0;
}
.cid-u0ANWuyTIF .container-boxes {
  padding-bottom: 15px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-u0ANWuyTIF .icon-block-top span {
  background-color: #172eca;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-u0ANWuyTIF .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-u0ANWuyTIF .box-item:first-child {
  background-color: #e43f3f;
  margin-top: -150px;
}
.cid-u0ANWuyTIF .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-u0ANWuyTIF .box-item:last-child {
  background-color: #56fc7f;
  margin-right: 0;
}
.cid-u0ANWuyTIF .box-item-text,
.cid-u0ANWuyTIF .mbr-section-btn {
  color: #000000;
}
.cid-u0ANWuyTIF .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-u0ANWuyTIF .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-u0ANWuyTIF .box-list li:last-child {
  border-bottom: none;
}
.cid-u0ANWuyTIF .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-u0ANWuyTIF .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-u0ANWuyTIF .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u0ANWuyTIF .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-u0ANWuyTIF .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-u0ANWuyTIF .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-u0ANWuyTIF .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-u0ANWuyTIF .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-u0ANWuyTIF .mbr-text {
  color: #efefef;
  text-align: left;
}
.cid-u0ANWuyTIF H1 {
  color: #ffffff;
  text-align: left;
}
.cid-u0ANXmL5WK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u0ANXmL5WK .mbr-text {
  color: #000000;
}
.cid-u1su2IGCMK {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/5-1183x789.webp");
}
.cid-u1su2IGCMK .mbr-overlay {
  backdrop-filter: blur(3.5px);
}
.cid-u1su2IGCMK img {
  width: 100%;
  transform: scale(2) translateX(-2rem);
  z-index: 0;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-u1su2IGCMK img {
    transform: scale(1) translateX(0);
  }
}
.cid-u1su2IGCMK .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: 6rem 3rem;
  margin: 0;
  z-index: 1;
  overflow: visible;
  position: relative;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-u1su2IGCMK .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u1su2IGCMK .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-u1su2IGCMK .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u1su2IGCMK .col-12 {
  position: relative;
}
.cid-u1su2IGCMK .round {
  position: absolute;
  top: -60px;
  right: -150px;
  width: 280px;
  height: 280px;
  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: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-u1su2IGCMK .round {
    top: -30px;
    right: -110px;
    width: 180px;
    height: 180px;
  }
}
.cid-u1su2IGCMK .round:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  pointer-events: none;
  border: 2px solid white;
  border-radius: 50%;
}
.cid-u1su2IGCMK .round2 {
  top: auto;
  right: auto;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  z-index: 0;
}
.cid-u1su2IGCMK .mbr-section-title {
  color: #263d5a;
}
.cid-u1su2IGCMK .mbr-text,
.cid-u1su2IGCMK .mbr-section-btn {
  color: #000000;
}
.cid-u1su2IGCMK .mbr-section-subtitle {
  color: #263d5a;
}
.cid-u1swNjpJ73 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #141414;
}
.cid-u1swNjpJ73 .row {
  display: flex;
  flex-direction: row-reverse;
  border: 1px solid #ffffff;
  margin-top: -1px;
}
.cid-u1swNjpJ73 .title-wrapper {
  padding: 0 12px;
}
.cid-u1swNjpJ73 .text-block {
  padding: 48px 24px;
}
.cid-u1swNjpJ73 .video-wrapper iframe {
  width: 100%;
}
.cid-u1swNjpJ73 .video-block {
  border-left: 1px solid #ffffff;
  padding: 0;
}
.cid-u1swNjpJ73 .mbr-section-title {
  text-align: center;
  color: #FFFFFF;
}
.cid-u1swNjpJ73 .mbr-description {
  text-align: center;
  color: #FFFFFF;
  padding: 16px;
}
@media (min-width: 992px) {
  .cid-u1swNjpJ73 .mbr-description {
    padding: 16px 60px 16px;
  }
}
.cid-u1swNjpJ73 .mbr-text,
.cid-u1swNjpJ73 .mbr-section-subtitle {
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .cid-u1swNjpJ73 .video-block {
    border-left: none;
  }
  .cid-u1swNjpJ73 .text-block {
    border-top: 1px solid #ffffff;
  }
}
@media (min-width: 992px) {
  .cid-u1swNjpJ73 .title-wrapper {
    padding: 0 48px;
  }
  .cid-u1swNjpJ73 .text-block {
    padding: 60px;
    border-right: 1px solid #ffffff;
    margin-right: -1px;
    margin-bottom: auto;
  }
}
.cid-u1su551RTl {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/background3-1.webp");
}
.cid-u1su551RTl .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #263d5a;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: visible;
}
.cid-u1su551RTl .image-wrapper {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u1su551RTl .image-wrapper {
    padding-bottom: 2rem;
  }
}
.cid-u1su551RTl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.cid-u1su551RTl .glass {
  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: 2rem 1rem;
  margin: 0;
  overflow: visible;
  position: relative;
}
@media (max-width: 767px) {
  .cid-u1su551RTl .glass {
    padding: 1rem 0rem;
  }
}
.cid-u1su551RTl .glass: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-u1su551RTl .card-wrapper {
  overflow: visible;
  margin-bottom: 2rem;
}
.cid-u1su551RTl .card-text {
  color: #263d5a;
}
.cid-u1su551RTl .card-title,
.cid-u1su551RTl .iconfont-wrapper {
  color: #263d5a;
}
.cid-u1su551RTl .mbr-section-subtitle {
  color: #263d5a;
}
.cid-u1su551RTl .mbr-section-title {
  color: #263d5a;
}
@media (max-width: 992px) {
  .cid-u1su551RTl .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-u1sU9XOqMb {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1sU9XOqMb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1sU9XOqMb .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1sU9XOqMb .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1sU9XOqMb img {
  border-radius: 1rem;
}
.cid-u1sU9XOqMb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1sU9XOqMb .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1sU9XOqMb .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1sU9XOqMb .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1sU9XOqMb .mbr-section-title {
  color: #19303d;
}
.cid-u1sU9XOqMb .mbr-section-subtitle,
.cid-u1sU9XOqMb .subtitle-wrap {
  color: #19303d;
}
.cid-u1sU9XOqMb .mbr-text,
.cid-u1sU9XOqMb .mbr-section-btn {
  color: #19303d;
}
.cid-u1swKeojvQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1swKeojvQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1swKeojvQ .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1swKeojvQ .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1swKeojvQ img {
  border-radius: 1rem;
}
.cid-u1swKeojvQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1swKeojvQ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1swKeojvQ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1swKeojvQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1swKeojvQ .mbr-section-title {
  color: #19303d;
}
.cid-u1swKeojvQ .mbr-section-subtitle,
.cid-u1swKeojvQ .subtitle-wrap {
  color: #19303d;
}
.cid-u1swKeojvQ .mbr-text,
.cid-u1swKeojvQ .mbr-section-btn {
  color: #19303d;
}
.cid-u1sU5at1G6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1sU5at1G6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1sU5at1G6 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1sU5at1G6 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1sU5at1G6 img {
  border-radius: 1rem;
}
.cid-u1sU5at1G6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1sU5at1G6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1sU5at1G6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1sU5at1G6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1sU5at1G6 .mbr-section-title {
  color: #19303d;
}
.cid-u1sU5at1G6 .mbr-section-subtitle,
.cid-u1sU5at1G6 .subtitle-wrap {
  color: #19303d;
}
.cid-u1sU5at1G6 .mbr-text,
.cid-u1sU5at1G6 .mbr-section-btn {
  color: #19303d;
}
.cid-u1sY952xjk {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1sY952xjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1sY952xjk .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1sY952xjk .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1sY952xjk img {
  border-radius: 1rem;
}
.cid-u1sY952xjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1sY952xjk .row {
  flex-direction: row-reverse;
}
.cid-u1sY952xjk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1sY952xjk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1sY952xjk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1sY952xjk .mbr-section-title {
  color: #19303d;
}
.cid-u1sY952xjk .mbr-section-subtitle,
.cid-u1sY952xjk .subtitle-wrap {
  color: #19303d;
}
.cid-u1sY952xjk .mbr-text,
.cid-u1sY952xjk .mbr-section-btn {
  color: #19303d;
}
.cid-u1sZYJQ4bo {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1sZYJQ4bo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1sZYJQ4bo .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1sZYJQ4bo .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1sZYJQ4bo img {
  border-radius: 1rem;
}
.cid-u1sZYJQ4bo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1sZYJQ4bo .row {
  flex-direction: row-reverse;
}
.cid-u1sZYJQ4bo .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1sZYJQ4bo .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1sZYJQ4bo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1sZYJQ4bo .mbr-section-title {
  color: #19303d;
}
.cid-u1sZYJQ4bo .mbr-section-subtitle,
.cid-u1sZYJQ4bo .subtitle-wrap {
  color: #19303d;
}
.cid-u1sZYJQ4bo .mbr-text,
.cid-u1sZYJQ4bo .mbr-section-btn {
  color: #19303d;
}
.cid-u1t0lLSSJW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #efefec;
  overflow: hidden;
}
.cid-u1t0lLSSJW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1t0lLSSJW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1t0lLSSJW .container,
.cid-u1t0lLSSJW .container-fluid {
  position: relative;
}
.cid-u1t0lLSSJW .row {
  justify-content: left;
}
.cid-u1t0lLSSJW .col-content {
  position: relative;
  z-index: 10;
}
.cid-u1t0lLSSJW .mbr-section-title {
  color: #ffffff;
}
.cid-u1t0lLSSJW .mbr-section-subtitle {
  color: #2B2B2B;
}
.cid-u1t0lLSSJW .mbr-text {
  color: #2B2B2B;
}
.cid-u1t0lLSSJW .mbr-section-btn .btn-primary:hover {
  background-color: #cecec1 !important;
  color: #2b2b2b !important;
}
.cid-u1t0lLSSJW .circle-blur {
  position: absolute;
  transform: translate(50%, -50%);
  display: block;
  width: 320px;
  height: 320px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .97;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
@media (max-width: 991px) {
  .cid-u1t0lLSSJW .circle-blur {
    width: 240px;
    height: 240px;
  }
}
.cid-u1t0lLSSJW .circle-blur1 {
  top: 0;
  right: 70%;
  background-image: linear-gradient(132deg, #a47ee3 27%, #a47ee3 50%, #a47ee3 79%);
}
.cid-u1t0lLSSJW .circle-blur2 {
  top: 30%;
  right: 50%;
  background-image: linear-gradient(132deg, #5f6ad4 27%, #5f6ad4 50%, #5f6ad4 79%);
}
.cid-u1t0lLSSJW .circle-blur3 {
  top: 50%;
  right: 10%;
  background-image: linear-gradient(132deg, #fff182 27%, #fff182 50%, #fff182 79%);
}
.cid-u1t0lLSSJW .circle-blur4 {
  top: 75%;
  right: 25%;
  background-image: linear-gradient(132deg, #77bbdf 27%, #77bbdf 50%, #77bbdf 79%);
}
.cid-u1t0s5afHJ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1t0s5afHJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1t0s5afHJ .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1t0s5afHJ .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1t0s5afHJ img {
  border-radius: 1rem;
}
.cid-u1t0s5afHJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1t0s5afHJ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1t0s5afHJ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1t0s5afHJ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1t0s5afHJ .mbr-section-title {
  color: #19303d;
}
.cid-u1t0s5afHJ .mbr-section-subtitle,
.cid-u1t0s5afHJ .subtitle-wrap {
  color: #19303d;
}
.cid-u1t0s5afHJ .mbr-text,
.cid-u1t0s5afHJ .mbr-section-btn {
  color: #19303d;
}
.cid-u1t15v30Lv {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1t15v30Lv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1t15v30Lv .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1t15v30Lv .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1t15v30Lv img {
  border-radius: 1rem;
}
.cid-u1t15v30Lv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1t15v30Lv .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1t15v30Lv .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1t15v30Lv .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1t15v30Lv .mbr-section-title {
  color: #19303d;
}
.cid-u1t15v30Lv .mbr-section-subtitle,
.cid-u1t15v30Lv .subtitle-wrap {
  color: #19303d;
}
.cid-u1t15v30Lv .mbr-text,
.cid-u1t15v30Lv .mbr-section-btn {
  color: #19303d;
}
.cid-u1t2b3hZx0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-u1t2b3hZx0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1t2b3hZx0 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-u1t2b3hZx0 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-u1t2b3hZx0 img {
  border-radius: 1rem;
}
.cid-u1t2b3hZx0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1t2b3hZx0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-u1t2b3hZx0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-u1t2b3hZx0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-u1t2b3hZx0 .mbr-section-title {
  color: #19303d;
}
.cid-u1t2b3hZx0 .mbr-section-subtitle,
.cid-u1t2b3hZx0 .subtitle-wrap {
  color: #19303d;
}
.cid-u1t2b3hZx0 .mbr-text,
.cid-u1t2b3hZx0 .mbr-section-btn {
  color: #19303d;
}
.cid-u1t7sS0Ira {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/header-bg-indoor-1900x1250.webp");
}
.cid-u1t7sS0Ira .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1t7sS0Ira .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1t7sS0Ira .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u1t7sS0Ira .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-u1t7sS0Ira .mbr-section-title {
  color: #ffe161;
}
.cid-u1t8Bq6AgE {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1279.webp");
}
.cid-u1t8Bq6AgE .mbr-img-wrap {
  height: 100%;
  object-fit: cover;
}
.cid-u1t8Bq6AgE .mbr-section-tag {
  margin-bottom: 14px;
}
.cid-u1t8Bq6AgE .mbr-section-btn {
  margin: 1.625rem 0 0 0;
}
.cid-u1t8Bq6AgE .mbr-section-title {
  margin-bottom: 2.1875rem;
  text-align: center;
  color: #ffe161;
}
.cid-u1t8Bq6AgE .mbr-section-title b:last-child,
.cid-u1t8Bq6AgE .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-u1t8Bq6AgE .mbr-section-subtitle {
  text-align: center;
}
.cid-u1t8Bq6AgE .mbr-text,
.cid-u1t8Bq6AgE .mbr-section-btn {
  color: #e43f3f;
}
.cid-u1t9rZflzo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-696x464.webp");
}
.cid-u1t9rZflzo h4 {
  font-weight: 500;
  color: #ffffff;
}
.cid-u1t9rZflzo p {
  color: #ffffff;
}
.cid-u1t9rZflzo .card {
  margin-bottom: 2rem;
}
.cid-u1t9rZflzo .card-img {
  border-radius: 0;
  padding: 2rem 2rem 0 2rem;
  background-color: #149dcc;
}
.cid-u1t9rZflzo .card-img span {
  font-size: 100px;
  color: #ffffff;
}
.cid-u1t9rZflzo .card-box {
  padding-bottom: 2rem;
  background-color: #149dcc;
  background: linear-gradient(#149dcc, transparent);
}
.cid-u1t9rZflzo .card-box .card-title {
  margin: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-u1t9rZflzo .card-box .mbr-text {
  margin-bottom: 0;
  padding: 2rem 2rem 0 2rem;
}
.cid-u1t9rZflzo .card-box .mbr-section-btn {
  padding-top: 1rem;
}
.cid-u1t9rZflzo .card-box .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-u1t9rZflzo P {
  text-align: left;
}
.cid-u1t9Z9m8Tq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-696x466.webp");
}
.cid-u1t9Z9m8Tq .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-u1t9Z9m8Tq .mbr-author-name {
  font-weight: bold;
  color: #ffe161;
}
.cid-u1t9Z9m8Tq .mbr-author-desc {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u1t9Z9m8Tq .mbr-figure,
  .cid-u1t9Z9m8Tq img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-u8ZLwhn8qo {
  padding-top: 9rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/rideshare-app-2000x1333.webp");
}
.cid-u8ZLwhn8qo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8ZLwhn8qo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8ZLwhn8qo .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8ZLwhn8qo .image-wrap img {
    display: block;
    margin: auto;
    width: 80%;
  }
}
.cid-u8ZLwhn8qo .mbr-section-title {
  color: #ffe161;
}
.cid-u8ZLwib1qZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #e43f3f;
}
.cid-u8ZLwib1qZ .testimonial-text {
  font-style: italic;
  color: #ffe161;
  font-weight: 300;
}
.cid-u8ZLwib1qZ .mbr-author-name {
  font-weight: bold;
  color: #ffffff;
}
.cid-u8ZLwib1qZ .mbr-author-desc {
  color: #232;
}
@media (max-width: 991px) {
  .cid-u8ZLwib1qZ .mbr-figure,
  .cid-u8ZLwib1qZ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uxH1EjmRxR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1600x1200.webp");
}
.cid-uxH1EjmRxR .mbr-overlay {
  background: linear-gradient(90deg, #000000, #000000);
}
.cid-uxH1EjmRxR .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-uxH1EjmRxR .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-uxH1EjmRxR .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH1EjmRxR .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH1EjmRxR {
    text-align: center !important;
  }
}
.cid-uxH1EO3O3E {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/04-1-1200x800.webp");
}
.cid-uxH1EO3O3E .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uxH1EO3O3E .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #6592e6;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff;
}
.cid-uxH1EO3O3E .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uxH1EO3O3E .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uxH1EO3O3E .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uxH1EO3O3E .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uxH1EO3O3E a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uxH1EO3O3E a.close:hover {
  color: #ffffff;
}
.cid-uxH2u9uoau {
  background: #2c1616;
  padding-top: 60px;
  padding-bottom: 15px;
}
.cid-uxH2u9uoau .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uxH2u9uoau .video-block {
    width: 100% !important;
  }
}
.cid-uxH2wgUVjC {
  background: #2c1616;
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #2c1616, #6c9cdf);
}
.cid-uxH2wgUVjC .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uxH2wgUVjC .video-block {
    width: 100% !important;
  }
}
.cid-uxH2xxDVZo {
  background: #2c1616;
  padding-top: 15px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #2c1616, #6c9cdf);
}
.cid-uxH2xxDVZo .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-uxH2xxDVZo .video-block {
    width: 100% !important;
  }
}
.cid-uxH2yQOrDt {
  padding-top: 40px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1390.webp");
}
.cid-uxH2yQOrDt .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH2yQOrDt .mbr-overlay {
  background: linear-gradient(90deg, #fafafa, #bbbbbb);
}
.cid-uxH2yQOrDt h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH2yQOrDt p {
  color: #464646;
}
.cid-uxH2yQOrDt h2 {
  color: #000000;
}
.cid-uxH2yQOrDt .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uxH2yQOrDt .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH2yQOrDt .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uxH2yQOrDt .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH2yQOrDt .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH2yQOrDt .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uxH2yQOrDt .mbr-text {
    text-align: center;
  }
}
.cid-uxH2yQOrDt .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH2zQOdr8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x981.webp");
}
.cid-uxH2zQOdr8 .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH2zQOdr8 .mbr-overlay {
  background: linear-gradient(90deg, #bbbbbb, #fafafa);
}
.cid-uxH2zQOdr8 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH2zQOdr8 p {
  color: #464646;
}
.cid-uxH2zQOdr8 h2 {
  color: #000000;
}
.cid-uxH2zQOdr8 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uxH2zQOdr8 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH2zQOdr8 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uxH2zQOdr8 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH2zQOdr8 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH2zQOdr8 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uxH2zQOdr8 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uxH2zQOdr8 .mbr-text {
    text-align: center;
  }
}
.cid-uxH2zQOdr8 .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH3MjRgpT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1357.webp");
}
.cid-uxH3MjRgpT .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH3MjRgpT .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #bbbbbb);
}
.cid-uxH3MjRgpT h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH3MjRgpT p {
  color: #464646;
}
.cid-uxH3MjRgpT h2 {
  color: #000000;
}
.cid-uxH3MjRgpT .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uxH3MjRgpT .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH3MjRgpT .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uxH3MjRgpT .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH3MjRgpT .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH3MjRgpT .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uxH3MjRgpT .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uxH3MjRgpT .mbr-text {
    text-align: center;
  }
}
.cid-uxH3MjRgpT .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH2JjSpDs {
  padding-top: 20px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-uxH2JjSpDs .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH2JjSpDs .mbr-overlay {
  background: linear-gradient(90deg, #fafafa, #bbbbbb);
}
.cid-uxH2JjSpDs h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH2JjSpDs p {
  color: #464646;
}
.cid-uxH2JjSpDs h2 {
  color: #000000;
}
.cid-uxH2JjSpDs .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uxH2JjSpDs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH2JjSpDs .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uxH2JjSpDs .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH2JjSpDs .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH2JjSpDs .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uxH2JjSpDs .mbr-text {
    text-align: center;
  }
}
.cid-uxH2JjSpDs .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH2LoErWJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-uxH2LoErWJ .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH2LoErWJ .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #bbbbbb);
}
.cid-uxH2LoErWJ h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH2LoErWJ p {
  color: #464646;
}
.cid-uxH2LoErWJ h2 {
  color: #000000;
}
.cid-uxH2LoErWJ .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-uxH2LoErWJ .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH2LoErWJ .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-uxH2LoErWJ .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH2LoErWJ .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH2LoErWJ .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-uxH2LoErWJ .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-uxH2LoErWJ .mbr-text {
    text-align: center;
  }
}
.cid-uxH2LoErWJ .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH2Mm5wyS {
  padding-top: 40px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-uxH2Mm5wyS .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxH2Mm5wyS .mbr-overlay {
  background: linear-gradient(90deg, #ffffff, #bbbbbb);
}
.cid-uxH2Mm5wyS h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uxH2Mm5wyS p {
  color: #464646;
}
.cid-uxH2Mm5wyS h2 {
  color: #000000;
}
.cid-uxH2Mm5wyS .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uxH2Mm5wyS .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH2Mm5wyS .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uxH2Mm5wyS .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uxH2Mm5wyS .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH2Mm5wyS .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uxH2Mm5wyS .mbr-text {
    text-align: center;
  }
}
.cid-uxH2Mm5wyS .mbr-section-subtitle {
  color: #000000;
}
.cid-uxH89eZtQf {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/mbr-2-1920x1920.webp");
}
.cid-uxH89eZtQf .text-content .btn-bgr {
  z-index: 0;
}
.cid-uxH89eZtQf .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uxH89eZtQf h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-uxH89eZtQf p {
  color: #ffffff;
}
.cid-uxH89eZtQf h2 {
  color: #ffffff;
}
.cid-uxH89eZtQf .text-content {
  padding: 2rem 0rem;
  background-color: #000000;
}
.cid-uxH89eZtQf .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxH89eZtQf .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uxH89eZtQf .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uxH89eZtQf .text-content {
    margin-bottom: 2rem;
  }
}
.cid-uxH89eZtQf .mbr-section-btn,
.cid-uxH89eZtQf .mbr-section-title I {
  color: #faf412;
}
.cid-uxH89eZtQf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxH4aVc0em {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/businesssuccessglobe-1200x900.webp");
}
@media (min-width: 992px) {
  .cid-uxH4aVc0em .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxH4aVc0em .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uxH4aVc0em .mbr-text {
    text-align: center;
  }
}
.cid-uxH4aVc0em H1 {
  color: #f0fc0b;
}
.cid-uxH4euoKik {
  background-image: url("../../../assets/images/mbr-936x620.webp");
}
.cid-uxH4euoKik .column-content {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-uxH4euoKik .text-content .btn-bgr {
  z-index: 0;
}
.cid-uxH4euoKik .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-uxH4euoKik .container-full-width {
  position: relative;
}
.cid-uxH4euoKik .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-uxH4euoKik .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-uxH4euoKik .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-uxH4euoKik .text-content {
    width: 540px;
  }
  .cid-uxH4euoKik .column-content {
    width: 100%;
  }
  .cid-uxH4euoKik .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-uxH4euoKik .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-uxH4euoKik .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-uxH4euoKik .column-content {
    width: 50%;
  }
  .cid-uxH4euoKik .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-uxH4euoKik .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uxH4euoKik .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-uxH4euoKik .column-content {
    height: 33rem;
  }
}
.cid-uxH4euoKik H1 {
  color: #951d19;
}
.cid-uxH4euoKik .mbr-text,
.cid-uxH4euoKik .mbr-section-btn {
  color: #000000;
}
.cid-uxH4i9AlE1 {
  padding-top: 40px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-696x466.webp");
}
.cid-uxH4i9AlE1 .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-uxH4i9AlE1 H1 {
  color: #232323;
  text-align: center;
}
.cid-uxH4i9AlE1 .mbr-text,
.cid-uxH4i9AlE1 .mbr-section-btn {
  color: #951d19;
  text-align: center;
}
.cid-uxHaJ3zQWF {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/growth20background-1600x1200.webp");
}
.cid-uxHaJ3zQWF .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxHaJ3zQWF .mbr-section-text {
  word-break: break-word;
}
.cid-uxHaJ3zQWF .mbr-overlay {
  background: linear-gradient(90deg, #000000, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uxHaJ3zQWF .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxHaJ3zQWF .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uxHaJ3zQWF .mbr-text {
    text-align: center;
  }
}
.cid-uxHaJ3zQWF H1 {
  color: #e9ea88;
}
.cid-uxHaJ3zQWF .mbr-text,
.cid-uxHaJ3zQWF .mbr-section-btn {
  color: #f0fc0b;
}
.cid-uxHa5pCmjm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-uxHa5pCmjm .text-content .btn-bgr {
  z-index: 0;
}
.cid-uxHa5pCmjm .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uxHa5pCmjm h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-uxHa5pCmjm p {
  color: #ffffff;
}
.cid-uxHa5pCmjm h2 {
  color: #ffffff;
}
.cid-uxHa5pCmjm .content-row {
  flex-direction: row-reverse;
}
.cid-uxHa5pCmjm .text-content {
  padding: 2rem 0rem;
  background-color: #000000;
}
.cid-uxHa5pCmjm .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxHa5pCmjm .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uxHa5pCmjm .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uxHa5pCmjm .text-content {
    margin-bottom: 2rem;
  }
}
.cid-uxHa5pCmjm .mbr-section-btn,
.cid-uxHa5pCmjm .mbr-section-title I {
  color: #faf412;
}
.cid-uxHa5pCmjm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxHaflzse6 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-uxHaflzse6 .text-content .btn-bgr {
  z-index: 0;
}
.cid-uxHaflzse6 .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uxHaflzse6 h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-uxHaflzse6 p {
  color: #ffffff;
}
.cid-uxHaflzse6 h2 {
  color: #ffffff;
}
.cid-uxHaflzse6 .content-row {
  flex-direction: row-reverse;
}
.cid-uxHaflzse6 .text-content {
  padding: 2rem 0rem;
  background-color: #000000;
}
.cid-uxHaflzse6 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxHaflzse6 .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uxHaflzse6 .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uxHaflzse6 .text-content {
    margin-bottom: 2rem;
  }
}
.cid-uxHaflzse6 .mbr-section-btn,
.cid-uxHaflzse6 .mbr-section-title I {
  color: #faf412;
}
.cid-uxHaflzse6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxHaoPgEjk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background1-1.webp");
}
.cid-uxHaoPgEjk .text-content .btn-bgr {
  z-index: 0;
}
.cid-uxHaoPgEjk .mbr-overlay {
  background: linear-gradient(90deg, #d6173f, #4284df);
}
.cid-uxHaoPgEjk h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-uxHaoPgEjk p {
  color: #ffffff;
}
.cid-uxHaoPgEjk h2 {
  color: #ffffff;
}
.cid-uxHaoPgEjk .content-row {
  flex-direction: row-reverse;
}
.cid-uxHaoPgEjk .text-content {
  padding: 2rem 0rem;
  background-color: #000000;
}
.cid-uxHaoPgEjk .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uxHaoPgEjk .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uxHaoPgEjk .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-uxHaoPgEjk .text-content {
    margin-bottom: 2rem;
  }
}
.cid-uxHaoPgEjk .mbr-section-btn,
.cid-uxHaoPgEjk .mbr-section-title I {
  color: #faf412;
}
.cid-uxHaoPgEjk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxHgOZTbfw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/growth20background-1600x1200.webp");
}
.cid-uxHgOZTbfw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uxHgOZTbfw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uxHgOZTbfw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uxHgOZTbfw .mbr-section-title {
  color: #5bff00;
}
.cid-uxHgOZTbfw .mbr-text,
.cid-uxHgOZTbfw .mbr-section-btn {
  color: #ffffff;
}
.cid-uxHfXWtpRy {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-uxHfXWtpRy .media-content .btn-bgr {
  z-index: 0;
}
.cid-uxHfXWtpRy .mbr-section-text {
  word-break: break-word;
}
.cid-uxHfXWtpRy .mbr-overlay {
  background: linear-gradient(90deg, #000000, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-uxHfXWtpRy .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uxHfXWtpRy .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uxHfXWtpRy .mbr-text {
    text-align: center;
  }
}
.cid-uxHfXWtpRy H1 {
  color: #e9ea88;
}
.cid-uxHfXWtpRy .mbr-text,
.cid-uxHfXWtpRy .mbr-section-btn {
  color: #f0fc0b;
}
.cid-uxHjKH6SS0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3-1.webp");
}
.cid-uxHjKH6SS0 .content-wrapper {
  background: #ffda00;
}
@media (max-width: 991px) {
  .cid-uxHjKH6SS0 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uxHjKH6SS0 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uxHjKH6SS0 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uxHjKH6SS0 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxHjKH6SS0 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uxHjKH6SS0 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uxHjKH6SS0 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxHjKH6SS0 .mbr-text,
.cid-uxHjKH6SS0 .mbr-section-btn {
  color: #000000;
}
.cid-uxHgn3uuuL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background3-1.webp");
}
.cid-uxHgn3uuuL .content-wrapper {
  background: #ffda00;
}
@media (max-width: 991px) {
  .cid-uxHgn3uuuL .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uxHgn3uuuL .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uxHgn3uuuL .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uxHgn3uuuL .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxHgn3uuuL .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uxHgn3uuuL .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uxHgn3uuuL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uxHgn3uuuL .mbr-text,
.cid-uxHgn3uuuL .mbr-section-btn {
  color: #000000;
}
.cid-uxHlgWfjCA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/businesssuccessglobe-1200x900.webp");
}
.cid-uxHlgWfjCA .mbr-text,
.cid-uxHlgWfjCA .mbr-section-btn {
  color: #ffffff;
}
.cid-uZOpfdZEB8.popup-builder {
  background-color: #ffffff;
}
.cid-uZOpfdZEB8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uZOpfdZEB8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uZOpfdZEB8 .modal-content,
.cid-uZOpfdZEB8 .modal-dialog {
  height: auto;
}
.cid-uZOpfdZEB8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uZOpfdZEB8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uZOpfdZEB8 .form-wrapper .mbr-form .form-group,
  .cid-uZOpfdZEB8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uZOpfdZEB8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .mbr-text {
  text-align: center;
}
.cid-uZOpfdZEB8 .pt-0 {
  padding-top: 0 !important;
}
.cid-uZOpfdZEB8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uZOpfdZEB8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uZOpfdZEB8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uZOpfdZEB8 .modal-open {
  overflow: hidden;
}
.cid-uZOpfdZEB8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uZOpfdZEB8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uZOpfdZEB8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uZOpfdZEB8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uZOpfdZEB8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uZOpfdZEB8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uZOpfdZEB8 .modal-backdrop.show {
  opacity: .5;
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uZOpfdZEB8 .modal-header .close:hover {
  opacity: 1;
}
.cid-uZOpfdZEB8 .modal-header .close:focus {
  outline: none;
}
.cid-uZOpfdZEB8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-uZOpfdZEB8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uZOpfdZEB8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uZOpfdZEB8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uZOpfdZEB8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uZOpfdZEB8 .modal-sm {
    max-width: 300px;
  }
  .cid-uZOpfdZEB8 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uZOpfdZEB8 .modal-lg,
  .cid-uZOpfdZEB8 .modal-xl {
    max-width: 800px;
  }
  .cid-uZOpfdZEB8 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uZOpfdZEB8 .modal-xl {
    max-width: 1140px;
  }
  .cid-uZOpfdZEB8 .container {
    max-width: 1140px;
  }
}
.cid-uZOpfdZEB8 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uZOpfdZEB8 .container {
    max-width: 720px;
  }
}
.cid-uZOpfdZEB8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uZOpfdZEB8 .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-uZOpfdZEB8 .form-group {
  margin-bottom: 1rem;
}
.cid-uZOpfdZEB8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uZOpfdZEB8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uZOpfdZEB8 .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-uxNa8Cpq7C {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1276.webp");
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uxNa8Cpq7C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxNa8Cpq7C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxNa8Cpq7C.mbr-fullscreen {
  padding: 0 !important;
}
.cid-uxNa8Cpq7C:not(.mbr-fullscreen) {
  min-height: 680px;
}
@media (max-width: 991px) {
  .cid-uxNa8Cpq7C:not(.mbr-fullscreen) {
    min-height: 616px;
  }
}
.cid-uxNa8Cpq7C .section-border-item {
  background-color: #fcdb42;
}
.cid-uxNa8Cpq7C .row {
  width: 100%;
  margin: 0;
}
.cid-uxNa8Cpq7C .col-content {
  padding: 4rem !important;
  background-color: #090f10;
}
@media (max-width: 575px) {
  .cid-uxNa8Cpq7C .col-content {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 5% !important;
  }
}
.cid-uxNa8Cpq7C .mbr-section-title {
  color: #fcdb42;
}
.cid-uxNa8Cpq7C .mbr-section-subtitle {
  color: #fff;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uxNa8Cpq7C .mbr-section-subtitle {
    margin-top: .75rem;
  }
}
.cid-uxNa8Cpq7C .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-uxNa8Cpq7C .mbr-text {
    margin-top: 1rem;
  }
}
.cid-uxNa8Cpq7C .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uxNa8Cpq7C .mbr-section-btn {
    margin-top: 1.25rem;
  }
}
.cid-uxNa8Cpq7C .label-container {
  width: fit-content;
  max-width: 50%;
  padding: 0.75rem 1.5rem;
  margin-right: -4rem;
  margin-bottom: -4rem;
  margin-left: auto;
  margin-top: 2rem;
  background-color: #fcdb42;
}
@media (max-width: 776px) {
  .cid-uxNa8Cpq7C .label-container {
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-uxNa8Cpq7C .label-container {
    margin-top: 1rem;
    margin-bottom: -2rem;
  }
}
.cid-uxNa8Cpq7C .label-text {
  color: #090f10;
}
.cid-uxNaazxG0W {
  padding-top: 10rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1920x1390.webp");
}
.cid-uxNaazxG0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxNaazxG0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxNaazxG0W .mbr-section-title {
  color: #fcdb42;
  margin-bottom: 20px;
}
.cid-uxNaazxG0W .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 30px;
}
.cid-uxNaazxG0W .mbr-text {
  color: #878e99;
  margin-top: 0;
}
.cid-uxNaazxG0W .mbr-section-btn {
  margin-top: 30px;
}
.cid-uxNaazxG0W .mbr-section-btn .btn {
  box-shadow: none !important;
}
.cid-uxNaazxG0W .mbr-text,
.cid-uxNaazxG0W .mbr-section-btn {
  color: #fafafa;
}
.cid-uxNaaY8ttg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uxNaaY8ttg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxNaaY8ttg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxNaaY8ttg .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-uxNaaY8ttg .section-border-item_center {
    display: none;
  }
}
.cid-uxNaaY8ttg .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uxNaaY8ttg .main-container {
    flex-wrap: wrap;
  }
}
.cid-uxNaaY8ttg .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uxNaaY8ttg .card-wrap {
    width: 100%;
  }
}
.cid-uxNaaY8ttg .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-uxNaaY8ttg .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uxNaaY8ttg .card-box {
    max-width: 100%;
  }
}
.cid-uxNaaY8ttg .card-title {
  color: #FFF;
}
.cid-uxNaaY8ttg .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uxNaaY8ttg .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-uxNaaY8ttg .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-uxNaaY8ttg .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-uxNaaY8ttg .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-uxNaaY8ttg .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uxNaaY8ttg .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-uxNaaY8ttg .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-uxNaaY8ttg .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-uxNaaY8ttg .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uxNaaY8ttg .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-uxNaaY8ttg .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-uxNaaY8ttg .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-uxNaaY8ttg .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #fcdb42;
  }
}
.cid-uxNaaY8ttg .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-uxNaaY8ttg .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-uxNbCJBby4 {
  background-image: url("../../../assets/images/mbr-1920x981.webp");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-uxNbCJBby4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxNbCJBby4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxNbCJBby4 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-uxNbCJBby4 .container {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .cid-uxNbCJBby4 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uxNbCJBby4 .container {
    max-width: 540px;
  }
}
.cid-uxNbCJBby4 .row {
  margin-left: -25px;
  margin-right: -25px;
  justify-content: flex-start;
}
.cid-uxNbCJBby4 .row > [class*="col"] {
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1199px) {
  .cid-uxNbCJBby4 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-uxNbCJBby4 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uxNbCJBby4 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-uxNbCJBby4 .mbr-section-title {
  color: #C4CFDE;
}
.cid-uxNbCJBby4 .mbr-section-subtitle {
  color: #FF014E;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
@media (max-width: 767px) {
  .cid-uxNbCJBby4 .mbr-section-subtitle {
    padding-top: 0.325rem;
    padding-bottom: 0.325rem;
  }
}
.cid-uxNbCJBby4 .card-row {
  align-items: stretch;
}
.cid-uxNbCJBby4 .card {
  margin-top: 30px;
}
.cid-uxNbCJBby4 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
}
.cid-uxNbCJBby4 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-uxNbCJBby4 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-uxNbCJBby4 .card-wrapper:hover .card-title {
  color: #ffffff !important;
}
.cid-uxNbCJBby4 .card-wrapper:hover .card-text {
  color: #ffffff !important;
}
.cid-uxNbCJBby4 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
  transition: .5s all;
}
.cid-uxNbCJBby4 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-uxNbCJBby4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-uxNbCJBby4 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ff014e;
}
.cid-uxNbCJBby4 .card-title {
  color: #C4CFDE;
  margin-bottom: 20px;
  transition: .5s all;
}
.cid-uxNbCJBby4 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-uxNbC1I7Xw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #090f10;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-uxNbC1I7Xw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxNbC1I7Xw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxNbC1I7Xw .section-border-item {
  background-color: #fcdb42;
}
@media (max-width: 991px) {
  .cid-uxNbC1I7Xw .section-border-item_center {
    display: none;
  }
}
.cid-uxNbC1I7Xw .main-container {
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uxNbC1I7Xw .main-container {
    flex-wrap: wrap;
  }
}
.cid-uxNbC1I7Xw .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-uxNbC1I7Xw .card-wrap {
    width: 100%;
  }
}
.cid-uxNbC1I7Xw .card-box {
  width: 100%;
  height: 100%;
}
.cid-uxNbC1I7Xw .list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}
.cid-uxNbC1I7Xw .list:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #fcdb42;
}
@media (max-width: 575px) {
  .cid-uxNbC1I7Xw .list:before {
    display: none;
  }
}
@media (max-width: 575px) {
  .cid-uxNbC1I7Xw .list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.cid-uxNbC1I7Xw .list-item {
  padding: 2rem 1rem;
  min-height: 192px;
}
.cid-uxNbC1I7Xw .list-item:not(:nth-child(3n)) {
  border-right: 1px solid #fcdb42;
}
@media (max-width: 575px) {
  .cid-uxNbC1I7Xw .list-item {
    border-right: none;
  }
  .cid-uxNbC1I7Xw .list-item:not(:last-child) {
    border-bottom: 1px solid #fcdb42;
  }
}
.cid-uxNbC1I7Xw .list-title {
  color: #fcdb42;
}
.cid-uxNbC1I7Xw .list-text {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uxNbC1I7Xw .list-text {
    margin-top: 0.75rem;
  }
}
.cid-uxNbC1I7Xw .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 50%;
  padding: 0 2.5%;
}
@media (max-width: 991px) {
  .cid-uxNbC1I7Xw .text-wrap {
    position: relative;
    width: 100%;
    padding: 0;
  }
}
.cid-uxNbC1I7Xw .text-box {
  padding-top: calc(5% + 3rem);
  padding-bottom: calc(5% + 3rem);
}
@media (max-width: 991px) {
  .cid-uxNbC1I7Xw .text-box {
    position: relative;
    width: 100%;
    padding: 5%;
  }
  .cid-uxNbC1I7Xw .text-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-color: #fcdb42;
  }
}
@media (max-width: 575px) {
  .cid-uxNbC1I7Xw .text-box {
    padding: 1rem;
  }
}
.cid-uxNbC1I7Xw .text-item:nth-child(:last-child) {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uxNbC1I7Xw .text-item:nth-child(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.cid-uxNbC1I7Xw .card-title {
  color: #fcdb42;
}
.cid-uxNbC1I7Xw .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uxNbC1I7Xw .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-uZOD2aha8K.popup-builder {
  background-color: #ffffff;
}
.cid-uZOD2aha8K.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uZOD2aha8K.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uZOD2aha8K .modal-content,
.cid-uZOD2aha8K .modal-dialog {
  height: auto;
}
.cid-uZOD2aha8K .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uZOD2aha8K .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uZOD2aha8K .form-wrapper .mbr-form .form-group,
  .cid-uZOD2aha8K .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uZOD2aha8K .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uZOD2aha8K .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-uZOD2aha8K .mbr-text {
  text-align: center;
}
.cid-uZOD2aha8K .pt-0 {
  padding-top: 0 !important;
}
.cid-uZOD2aha8K .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uZOD2aha8K .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uZOD2aha8K .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uZOD2aha8K .modal-open {
  overflow: hidden;
}
.cid-uZOD2aha8K .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uZOD2aha8K .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uZOD2aha8K .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uZOD2aha8K .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-uZOD2aha8K .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uZOD2aha8K .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uZOD2aha8K .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uZOD2aha8K .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-uZOD2aha8K .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uZOD2aha8K .modal-backdrop.fade {
  opacity: 0;
}
.cid-uZOD2aha8K .modal-backdrop.show {
  opacity: .5;
}
.cid-uZOD2aha8K .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-uZOD2aha8K .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uZOD2aha8K .modal-header .close:hover {
  opacity: 1;
}
.cid-uZOD2aha8K .modal-header .close:focus {
  outline: none;
}
.cid-uZOD2aha8K .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #000000;
}
.cid-uZOD2aha8K .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
  min-height: 100%;
}
.cid-uZOD2aha8K .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-uZOD2aha8K .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uZOD2aha8K .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uZOD2aha8K .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uZOD2aha8K .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uZOD2aha8K .modal-sm {
    max-width: 300px;
  }
  .cid-uZOD2aha8K .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-uZOD2aha8K .modal-lg,
  .cid-uZOD2aha8K .modal-xl {
    max-width: 800px;
  }
  .cid-uZOD2aha8K .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-uZOD2aha8K .modal-xl {
    max-width: 1140px;
  }
  .cid-uZOD2aha8K .container {
    max-width: 1140px;
  }
}
.cid-uZOD2aha8K .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uZOD2aha8K .container {
    max-width: 720px;
  }
}
.cid-uZOD2aha8K .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uZOD2aha8K .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-uZOD2aha8K .form-group {
  margin-bottom: 1rem;
}
.cid-uZOD2aha8K .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uZOD2aha8K .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uZOD2aha8K .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%;
}
