body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((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: #4d6d9a !important;
}
.bg-success {
  background-color: #649496 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #aa4dd4 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d6d9a !important;
  border-color: #4d6d9a !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: #304460 !important;
  border-color: #304460 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #304460 !important;
  border-color: #304460 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #edb5bf !important;
  border-color: #edb5bf !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: #dc6f83 !important;
  border-color: #dc6f83 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #dc6f83 !important;
  border-color: #dc6f83 !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: #649496 !important;
  border-color: #649496 !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: #416162 !important;
  border-color: #416162 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #416162 !important;
  border-color: #416162 !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: #aa4dd4 !important;
  border-color: #aa4dd4 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #7c27a3 !important;
  border-color: #7c27a3 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #7c27a3 !important;
  border-color: #7c27a3 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4d6d9a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #304460 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4d6d9a !important;
  border-color: #4d6d9a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb5bf;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #dc6f83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #edb5bf !important;
  border-color: #edb5bf !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #649496;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #416162 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #649496 !important;
  border-color: #649496 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  color: #aa4dd4;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #7c27a3 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #aa4dd4 !important;
  border-color: #aa4dd4 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #4d6d9a !important;
}
.text-secondary {
  color: #edb5bf !important;
}
.text-success {
  color: #649496 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #aa4dd4 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2b3d56 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #d96378 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3b5859 !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: #732497 !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: #4d6d9a;
}
.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: #aa4dd4;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4d6d9a;
  border-color: #4d6d9a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4d6d9a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9aafcc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b0c9ca;
}
.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: #f8f1fc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #4d6d9a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #4d6d9a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d6d9a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d6d9a;
}
.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: #4d6d9a;
  border-bottom-color: #4d6d9a;
}
.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: #4d6d9a !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: #edb5bf !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='%234d6d9a' %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;
}
.cid-uibnvEfMMN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uibnvEfMMN nav.navbar {
  position: fixed;
}
.cid-uibnvEfMMN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uibnvEfMMN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uibnvEfMMN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uibnvEfMMN .dropdown-item:hover,
.cid-uibnvEfMMN .dropdown-item:focus {
  background: #000000;
  color: white;
  font-weight: bold;
}
.cid-uibnvEfMMN .dropdown-item:hover span {
  color: white;
}
.cid-uibnvEfMMN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uibnvEfMMN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uibnvEfMMN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uibnvEfMMN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uibnvEfMMN .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uibnvEfMMN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uibnvEfMMN .container {
    flex-wrap: nowrap;
  }
}
.cid-uibnvEfMMN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uibnvEfMMN .dropdown-menu,
.cid-uibnvEfMMN .navbar.opened {
  background: #000000 !important;
}
.cid-uibnvEfMMN .nav-item:focus,
.cid-uibnvEfMMN .nav-link:focus {
  outline: none;
}
.cid-uibnvEfMMN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uibnvEfMMN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uibnvEfMMN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uibnvEfMMN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uibnvEfMMN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uibnvEfMMN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uibnvEfMMN .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
}
.cid-uibnvEfMMN .navbar.opened {
  transition: all 0.3s;
}
.cid-uibnvEfMMN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uibnvEfMMN .navbar .navbar-logo img {
  width: auto;
}
.cid-uibnvEfMMN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uibnvEfMMN .navbar.collapsed {
  justify-content: center;
}
.cid-uibnvEfMMN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uibnvEfMMN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uibnvEfMMN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uibnvEfMMN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uibnvEfMMN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uibnvEfMMN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uibnvEfMMN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uibnvEfMMN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uibnvEfMMN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uibnvEfMMN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uibnvEfMMN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uibnvEfMMN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uibnvEfMMN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uibnvEfMMN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uibnvEfMMN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uibnvEfMMN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uibnvEfMMN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uibnvEfMMN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uibnvEfMMN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uibnvEfMMN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uibnvEfMMN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uibnvEfMMN .navbar.navbar-short {
  min-height: 60px;
}
.cid-uibnvEfMMN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uibnvEfMMN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uibnvEfMMN .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uibnvEfMMN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uibnvEfMMN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uibnvEfMMN .dropdown-item.active,
.cid-uibnvEfMMN .dropdown-item:active {
  background-color: transparent;
}
.cid-uibnvEfMMN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uibnvEfMMN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uibnvEfMMN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uibnvEfMMN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uibnvEfMMN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uibnvEfMMN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uibnvEfMMN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uibnvEfMMN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uibnvEfMMN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uibnvEfMMN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe161;
}
.cid-uibnvEfMMN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uibnvEfMMN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uibnvEfMMN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uibnvEfMMN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uibnvEfMMN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uibnvEfMMN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uibnvEfMMN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uibnvEfMMN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uibnvEfMMN .navbar-dropdown {
  position: fixed;
}
.cid-uibnvEfMMN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uibnvEfMMN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uibnvEfMMN .navbar {
    height: 70px;
  }
  .cid-uibnvEfMMN .navbar.opened {
    height: auto;
  }
  .cid-uibnvEfMMN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujeLZILpsz {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujeLZILpsz .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ujeLZILpsz .subtitle__block,
.cid-ujeLZILpsz .title__block,
.cid-ujeLZILpsz .buttons__block {
  pointer-events: all;
}
.cid-ujeLZILpsz .subtitle__block {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 18px;
}
.cid-ujeLZILpsz .subtitle__block SPAN {
  color: #aa4dd4;
}
.cid-ujeLZILpsz .mbr-section-subtitle {
  display: inline-block;
  color: #ffffff;
  text-align: center;
}
.cid-ujeLZILpsz .mbr-section-title {
  margin-top: 25px;
  color: #ffffff;
}
.cid-ujeLZILpsz .mbr-text {
  margin-top: 35px;
}
.cid-ujeLZILpsz .inner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 33px;
}
.cid-ujeLZILpsz .inner__buttons .mbr-section-btn {
  display: inline-block;
}
.cid-ujeLZILpsz .inner__buttons .mbr-section-btn .btn-info {
  border: none !important;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(-135deg, #47b5ed 0%, rgba(71, 181, 237, 0.85) 100%) !important;
}
.cid-ujeLZILpsz .inner__buttons .mbr-section-btn .btn-info:hover {
  border-color: transparent !important;
}
.cid-ujeLZILpsz .inner__buttons .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 5px;
  vertical-align: -5px;
}
@media (max-width: 550px) {
  .cid-ujeLZILpsz .inner__buttons .mbr-section-btn {
    width: 100%;
  }
}
.cid-ujeLZILpsz .mbr-figure {
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-ujeLZILpsz .mbr-figure:hover {
  color: #47b5ed;
  cursor: pointer;
}
.cid-ujeLZILpsz .mbr-figure:hover .mbr-media {
  border-color: #47b5ed;
  color: #47b5ed;
}
@media (max-width: 575px) {
  .cid-ujeLZILpsz .mbr-figure {
    margin: 0;
    margin-top: 10px;
    max-width: 350px;
    width: 100%;
  }
}
.cid-ujeLZILpsz .mbr-media {
  display: inline-flex;
  color: #dbdbdb;
  align-items: center;
  justify-content: center;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease-in-out;
}
.cid-ujeLZILpsz .mbr-media span {
  font-size: 22px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}
.cid-ujeLZILpsz .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-ujeLZILpsz .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.cid-ujeLZILpsz .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ujeLZILpsz .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ujeLZILpsz .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-ujeLZILpsz a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-ujeLZILpsz a.close:hover {
  color: #ffffff;
}
.cid-ujeLZILpsz .animation__background .triangle {
  position: absolute;
  top: 13%;
  right: 44%;
  animation: rotatedHalf 40s infinite linear;
}
.cid-ujeLZILpsz .animation__background .triangle2 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  animation: rotated 23s infinite linear;
  width: 55px;
  height: 55px;
}
.cid-ujeLZILpsz .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #ffe161;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 36%;
  animation: animationOne 25s infinite linear;
}
.cid-ujeLZILpsz .animation__background .circle2 {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #47b5ed;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: 8%;
  animation: animationTwo 27s infinite linear;
}
.cid-ujeLZILpsz .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 30%;
  background: #aa4dd4;
  border-radius: 50%;
  animation: animationOne 21s infinite linear;
}
.cid-ujeLZILpsz .animation__background .circle4 {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #649496;
  border-radius: 50%;
  bottom: 42%;
  left: 6%;
  animation: animationTwo 31s infinite linear;
}
.cid-ujeLZILpsz .animation__background .circle5 {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #4d6d9a;
  border-radius: 50%;
  top: 12%;
  right: 6%;
  animation: animationTwo 35s infinite linear;
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-ujeLZILpsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujeLZILpsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujeLZILpsz .row {
  position: relative;
}
.cid-ujeLZILpsz .text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ujeLZILpsz .text {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.cid-ujeLZILpsz .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-ujeLZILpsz .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-ujeLZILpsz .box {
  display: inline-block;
}
.cid-ujeLZILpsz .animation {
  animation-name: bounceIn;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-play-state: running;
  animation-delay: initial;
}
@keyframes rotate-keyframe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes move-object {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
.cid-ujSToFaP9Z {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujSToFaP9Z .mbr-section-title {
  color: #ffffff;
  font-weight: 400;
  width: 100%;
}
.cid-ujSToFaP9Z .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 300;
}
.cid-ujSToFaP9Z .countdown-title img {
  max-width: 128px;
}
.cid-ujSToFaP9Z .countdown-title {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ujSToFaP9Z .number-wrap {
  color: #aaaaaa;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 2.5px 5px 6.5px 5px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-ujSToFaP9Z .number {
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 2.3rem;
  color: #ffffff;
}
.cid-ujSToFaP9Z .period {
  display: block;
  padding-top: 0px;
  border-top: 0px solid rgba(0, 0, 0, 0.1);
}
.cid-ujSToFaP9Z .dot {
  position: absolute;
  font-size: 0;
  display: inline-block;
  width: 1px;
  height: 60px;
  right: -2.3rem;
  top: 15px;
  background-color: #ffffff;
}
.cid-ujSToFaP9Z .countdown-cont {
  background-color: rgba(0, 0, 0, 0.5);
  max-width: 730px;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-ujSToFaP9Z .dot {
    display: none;
  }
  .cid-ujSToFaP9Z .countdown-cont {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-ujSToFaP9Z .col-sm-3 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .cid-ujSToFaP9Z .number-wrap {
    min-width: auto;
  }
  .cid-ujSToFaP9Z .number {
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .cid-ujSToFaP9Z .number {
    font-size: 25px;
  }
}
@media (max-width: 380px) {
  .cid-ujSToFaP9Z .period {
    font-size: 7px;
  }
}
@media (max-width: 300px) {
  .cid-ujSToFaP9Z .number {
    font-size: 15px;
  }
}
.cid-ujSToFaP9Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujSToFaP9Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui14cL1Ufi {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ui14cL1Ufi .mbr-section-title {
  margin-bottom: 20px;
  color: #ffe161;
  text-align: center;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-ui14cL1Ufi .mbr-text {
  opacity: .7;
  margin-bottom: 0;
  color: #919dab;
  margin-top: 15px;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-ui14cL1Ufi .block__product {
  margin: 30px 0;
}
.cid-ui14cL1Ufi .image {
  transition: all .25s;
}
.cid-ui14cL1Ufi .image:hover {
  opacity: .8;
}
.cid-ui14cL1Ufi .image img {
  border-radius: 10px;
  width: 290px;
  height: 210px;
}
.cid-ui14cL1Ufi .block__content {
  margin-left: 30px;
  position: relative;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-ui14cL1Ufi .block__content {
    margin-top: 30px;
    margin-left: 0;
  }
}
.cid-ui14cL1Ufi .title__block {
  font-weight: 700;
  transition: all .25s;
  margin-bottom: 0;
  color: #65c6d4;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-ui14cL1Ufi .title__block:hover {
  color: #4d6d9a;
}
.cid-ui14cL1Ufi .price__block {
  margin-bottom: 15px;
  color: #919dab;
  letter-spacing: 2px;
}
.cid-ui14cL1Ufi .mbr-section-btn {
  width: 105%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 991px) {
  .cid-ui14cL1Ufi .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ui14cL1Ufi .mbr-section-btn .btn {
  height: 40px;
  padding: 0 15px;
  font-weight: 500;
  margin-right: 0;
}
.cid-ui14cL1Ufi .mbr-section-btn .btn:hover {
  background-color: transparent !important;
  border-color: #4d6d9a !important;
  color: #4d6d9a !important;
}
.cid-ui14cL1Ufi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ui14cL1Ufi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ui14cL1Ufi .mbr-section-title DIV {
  text-align: center;
}
.cid-ui14cL1Ufi .mbr-text,
.cid-ui14cL1Ufi .mbr-section-btn {
  color: #ffffff;
}
.cid-uibFAGywGN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uibFAGywGN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uibFAGywGN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uibFAGywGN .mbr-section-title {
  color: #ffe161;
  text-align: center;
}
.cid-uibFAGywGN .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-uqGBBCYiHc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqGBBCYiHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqGBBCYiHc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqGBBCYiHc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uqGBBCYiHc .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-uo2BNlR85f {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo2BNlR85f .nav-tabs .nav-item.open .nav-link:focus,
.cid-uo2BNlR85f .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uo2BNlR85f .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-uo2BNlR85f .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uo2BNlR85f .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-uo2BNlR85f .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #bbbbbb;
}
.cid-uo2BNlR85f .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uo2BNlR85f .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-uo2BNlR85f .nav-tabs .nav-item {
  width: 100%;
}
.cid-uo2BNlR85f .nav-link,
.cid-uo2BNlR85f .nav-link.active {
  padding: 1rem auto;
  background: #5f6ad4;
}
.cid-uo2BNlR85f .nav-tabs .nav-link.active {
  color: #bbbbbb;
}
.cid-uo2BNlR85f .tab-content {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-uo2BNlR85f .tab-content {
    border-radius: 30px !important;
  }
}
.cid-uo2BNlR85f .logo-container img {
  max-width: 300px;
}
@media screen and (min-width: 767px) {
  .cid-uo2BNlR85f .logo-container {
    border-right: 1px solid #bbbbbb;
  }
}
.cid-uo2BNlR85f H4 {
  text-align: center;
  color: #bbbbbb;
}
.cid-uo2BNlR85f H3 {
  text-align: center;
  color: #ffe161;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-uo2BNlR85f .nav-link {
    font-size: 1.2rem;
  }
}
.cid-uo2BNlR85f #IoTseminar-table {
  margin-bottom: 10px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cid-uo2BNlR85f #IoTseminar-table .IoTseminar-table-head {
  background: #5f6ad4;
  height: 50px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.cid-uo2BNlR85f .IoTseminar-table-head td {
  color: #fff;
  font-size: 18px;
  height: 52px;
  line-height: 26px;
  min-height: 20px;
  padding: 5px 5px;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
}
.cid-uo2BNlR85f #IoTseminar-table td {
  border: 1px solid #d2d2d2;
  font-size: 18px;
  height: 52px;
  line-height: 26px;
  padding: 5px 5px;
  text-align: center;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-uo2BNlR85f #IoTseminar-table td:nth-child(1) {
  width: 130px;
}
.cid-uo2BNlR85f #IoTseminar-table td:nth-child(2) {
  width: 350px;
}
.cid-uo2BNlR85f #IoTseminar-table td:nth-child(3) {
  width: 260px;
}
.cid-uo2BNlR85f #IoTseminar-table p {
  line-height: 20px;
}
.cid-uo2BNlR85f .bttn {
  background-color: #5f6ad4;
  width: 70px;
  font-size: 13px;
  text-align: center;
  margin: auto;
}
.cid-utNmH3vgEq.popup-builder {
  background-color: #ffffff;
}
.cid-utNmH3vgEq.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-utNmH3vgEq.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-utNmH3vgEq .modal-content,
.cid-utNmH3vgEq .modal-dialog {
  height: auto;
}
.cid-utNmH3vgEq .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-utNmH3vgEq .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-utNmH3vgEq .form-wrapper .mbr-form .form-group,
  .cid-utNmH3vgEq .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-utNmH3vgEq .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-utNmH3vgEq .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-utNmH3vgEq .mbr-text {
  text-align: left;
}
.cid-utNmH3vgEq .pt-0 {
  padding-top: 0 !important;
}
.cid-utNmH3vgEq .pb-0 {
  padding-bottom: 0 !important;
}
.cid-utNmH3vgEq .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-utNmH3vgEq .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-utNmH3vgEq .modal-open {
  overflow: hidden;
}
.cid-utNmH3vgEq .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-utNmH3vgEq .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-utNmH3vgEq .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-utNmH3vgEq .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-utNmH3vgEq .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-utNmH3vgEq .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-utNmH3vgEq .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-utNmH3vgEq .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-utNmH3vgEq .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-utNmH3vgEq .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-utNmH3vgEq .modal-backdrop.fade {
  opacity: 0;
}
.cid-utNmH3vgEq .modal-backdrop.show {
  opacity: .5;
}
.cid-utNmH3vgEq .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-utNmH3vgEq .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-utNmH3vgEq .modal-header {
    padding: 1rem;
  }
}
.cid-utNmH3vgEq .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-utNmH3vgEq .modal-header .close svg {
  fill: #353535;
}
.cid-utNmH3vgEq .modal-header .close:hover {
  opacity: 1;
}
.cid-utNmH3vgEq .modal-header .close:focus {
  outline: none;
}
.cid-utNmH3vgEq .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-utNmH3vgEq .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-utNmH3vgEq .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utNmH3vgEq .modal-body {
    padding: 1rem;
  }
}
.cid-utNmH3vgEq .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-utNmH3vgEq .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utNmH3vgEq .modal-footer {
    padding: 1rem;
  }
}
.cid-utNmH3vgEq .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-utNmH3vgEq .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-utNmH3vgEq .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-utNmH3vgEq .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-utNmH3vgEq .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-utNmH3vgEq .modal-lg,
  .cid-utNmH3vgEq .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-utNmH3vgEq .modal-xl {
    max-width: 1140px;
  }
}
.cid-utNmH3vgEq .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-utNmH3vgEq .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-utNmH3vgEq .form-group {
  margin-bottom: 1rem;
}
.cid-utNmH3vgEq .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-utNmH3vgEq .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-utNmH3vgEq .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-utNmH3vgEq .mbr-section-btn {
  margin: 0;
}
.cid-utNmH3vgEq .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhhqFsHU.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhhqFsHU.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhhqFsHU.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhhqFsHU .modal-content,
.cid-uqHhhqFsHU .modal-dialog {
  height: auto;
}
.cid-uqHhhqFsHU .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhhqFsHU .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhhqFsHU .form-wrapper .mbr-form .form-group,
  .cid-uqHhhqFsHU .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhhqFsHU .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .mbr-text {
  text-align: left;
}
.cid-uqHhhqFsHU .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhhqFsHU .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhhqFsHU .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhhqFsHU .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhhqFsHU .modal-open {
  overflow: hidden;
}
.cid-uqHhhqFsHU .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhhqFsHU .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhhqFsHU .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhhqFsHU .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhhqFsHU .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhhqFsHU .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhhqFsHU .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhhqFsHU .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhhqFsHU .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhhqFsHU .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhhqFsHU .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhhqFsHU .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhhqFsHU .modal-header .close:focus {
  outline: none;
}
.cid-uqHhhqFsHU .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhhqFsHU .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhhqFsHU .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhhqFsHU .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhhqFsHU .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhhqFsHU .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhhqFsHU .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhhqFsHU .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhhqFsHU .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhhqFsHU .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhhqFsHU .modal-lg,
  .cid-uqHhhqFsHU .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhhqFsHU .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhhqFsHU .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhhqFsHU .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhhqFsHU .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhhqFsHU .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-uqHhhqFsHU .mbr-section-btn {
  margin: 0;
}
.cid-uqHhhqFsHU .mbr-section-btn .btn {
  margin: 0;
}
.cid-urghPg4Tlm.popup-builder {
  background-color: #ffffff;
}
.cid-urghPg4Tlm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urghPg4Tlm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urghPg4Tlm .modal-content,
.cid-urghPg4Tlm .modal-dialog {
  height: auto;
}
.cid-urghPg4Tlm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urghPg4Tlm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urghPg4Tlm .form-wrapper .mbr-form .form-group,
  .cid-urghPg4Tlm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urghPg4Tlm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urghPg4Tlm .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-urghPg4Tlm .mbr-text {
  text-align: left;
}
.cid-urghPg4Tlm .pt-0 {
  padding-top: 0 !important;
}
.cid-urghPg4Tlm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urghPg4Tlm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urghPg4Tlm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urghPg4Tlm .modal-open {
  overflow: hidden;
}
.cid-urghPg4Tlm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urghPg4Tlm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urghPg4Tlm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urghPg4Tlm .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-urghPg4Tlm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urghPg4Tlm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urghPg4Tlm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urghPg4Tlm .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-urghPg4Tlm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urghPg4Tlm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urghPg4Tlm .modal-backdrop.fade {
  opacity: 0;
}
.cid-urghPg4Tlm .modal-backdrop.show {
  opacity: .5;
}
.cid-urghPg4Tlm .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-urghPg4Tlm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urghPg4Tlm .modal-header {
    padding: 1rem;
  }
}
.cid-urghPg4Tlm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urghPg4Tlm .modal-header .close svg {
  fill: #353535;
}
.cid-urghPg4Tlm .modal-header .close:hover {
  opacity: 1;
}
.cid-urghPg4Tlm .modal-header .close:focus {
  outline: none;
}
.cid-urghPg4Tlm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-urghPg4Tlm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urghPg4Tlm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urghPg4Tlm .modal-body {
    padding: 1rem;
  }
}
.cid-urghPg4Tlm .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-urghPg4Tlm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urghPg4Tlm .modal-footer {
    padding: 1rem;
  }
}
.cid-urghPg4Tlm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urghPg4Tlm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urghPg4Tlm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urghPg4Tlm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urghPg4Tlm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urghPg4Tlm .modal-lg,
  .cid-urghPg4Tlm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urghPg4Tlm .modal-xl {
    max-width: 1140px;
  }
}
.cid-urghPg4Tlm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urghPg4Tlm .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-urghPg4Tlm .form-group {
  margin-bottom: 1rem;
}
.cid-urghPg4Tlm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urghPg4Tlm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urghPg4Tlm .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-urghPg4Tlm .mbr-section-btn {
  margin: 0;
}
.cid-urghPg4Tlm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhichEcn.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhichEcn.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhichEcn.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhichEcn .modal-content,
.cid-uqHhichEcn .modal-dialog {
  height: auto;
}
.cid-uqHhichEcn .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhichEcn .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhichEcn .form-wrapper .mbr-form .form-group,
  .cid-uqHhichEcn .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhichEcn .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhichEcn .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-uqHhichEcn .mbr-text {
  text-align: left;
}
.cid-uqHhichEcn .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhichEcn .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhichEcn .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhichEcn .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhichEcn .modal-open {
  overflow: hidden;
}
.cid-uqHhichEcn .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhichEcn .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhichEcn .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhichEcn .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-uqHhichEcn .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhichEcn .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhichEcn .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhichEcn .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-uqHhichEcn .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhichEcn .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhichEcn .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhichEcn .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhichEcn .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-uqHhichEcn .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhichEcn .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhichEcn .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhichEcn .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhichEcn .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhichEcn .modal-header .close:focus {
  outline: none;
}
.cid-uqHhichEcn .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhichEcn .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhichEcn .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhichEcn .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhichEcn .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-uqHhichEcn .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhichEcn .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhichEcn .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhichEcn .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhichEcn .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhichEcn .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhichEcn .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhichEcn .modal-lg,
  .cid-uqHhichEcn .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhichEcn .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhichEcn .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhichEcn .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-uqHhichEcn .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhichEcn .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhichEcn .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhichEcn .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-uqHhichEcn .mbr-section-btn {
  margin: 0;
}
.cid-uqHhichEcn .mbr-section-btn .btn {
  margin: 0;
}
.cid-uo2ds2rYnI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo2ds2rYnI .nav-tabs .nav-item.open .nav-link:focus,
.cid-uo2ds2rYnI .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uo2ds2rYnI .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-uo2ds2rYnI .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-uo2ds2rYnI .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-uo2ds2rYnI .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #d2d2d2;
}
.cid-uo2ds2rYnI .nav-tabs .nav-link:not(.active) {
  color: #525252;
}
@media (max-width: 767px) {
  .cid-uo2ds2rYnI .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-uo2ds2rYnI .nav-tabs .nav-item {
  width: 100%;
}
.cid-uo2ds2rYnI .nav-link,
.cid-uo2ds2rYnI .nav-link.active {
  padding: 1rem auto;
  background: #5f6ad4;
}
.cid-uo2ds2rYnI .nav-tabs .nav-link.active {
  color: #d2d2d2;
}
.cid-uo2ds2rYnI .tab-content {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-uo2ds2rYnI .tab-content {
    border-radius: 30px !important;
  }
}
.cid-uo2ds2rYnI .logo-container img {
  max-width: 300px;
}
@media screen and (min-width: 767px) {
  .cid-uo2ds2rYnI .logo-container {
    border-right: 1px solid #d2d2d2;
  }
}
.cid-uo2ds2rYnI H4 {
  text-align: center;
}
.cid-uo2ds2rYnI H3 {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-uo2ds2rYnI .nav-link {
    font-size: 1.2rem;
  }
}
.cid-uo2ds2rYnI #IoTseminar-table {
  margin-bottom: 10px;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, 'Noto Sans', sans-serif;
}
.cid-uo2ds2rYnI #IoTseminar-table .IoTseminar-table-head {
  background: #5f6ad4;
  height: 50px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.cid-uo2ds2rYnI .IoTseminar-table-head td {
  color: #fff;
  font-size: 18px;
  height: 52px;
  line-height: 26px;
  min-height: 20px;
  padding: 5px 5px;
  text-align: center;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
}
.cid-uo2ds2rYnI #IoTseminar-table td {
  border: 1px solid #d2d2d2;
  font-size: 18px;
  height: 52px;
  line-height: 26px;
  padding: 5px 5px;
  text-align: center;
}
.cid-uo2ds2rYnI #IoTseminar-table td:nth-child(1) {
  width: 130px;
}
.cid-uo2ds2rYnI #IoTseminar-table td:nth-child(2) {
  width: 350px;
}
.cid-uo2ds2rYnI #IoTseminar-table td:nth-child(3) {
  width: 260px;
}
.cid-uo2ds2rYnI #IoTseminar-table p {
  line-height: 20px;
}
.cid-uo2ds2rYnI .bttn {
  background-color: #5f6ad4;
  width: 70px;
  font-size: 13px;
  text-align: center;
  margin: auto;
}
.cid-usQdF9MsZi.popup-builder {
  background-color: #ffffff;
}
.cid-usQdF9MsZi.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usQdF9MsZi.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usQdF9MsZi .modal-content,
.cid-usQdF9MsZi .modal-dialog {
  height: auto;
}
.cid-usQdF9MsZi .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usQdF9MsZi .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usQdF9MsZi .form-wrapper .mbr-form .form-group,
  .cid-usQdF9MsZi .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usQdF9MsZi .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usQdF9MsZi .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-usQdF9MsZi .mbr-text {
  text-align: left;
}
.cid-usQdF9MsZi .pt-0 {
  padding-top: 0 !important;
}
.cid-usQdF9MsZi .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usQdF9MsZi .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usQdF9MsZi .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usQdF9MsZi .modal-open {
  overflow: hidden;
}
.cid-usQdF9MsZi .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usQdF9MsZi .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usQdF9MsZi .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usQdF9MsZi .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-usQdF9MsZi .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usQdF9MsZi .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usQdF9MsZi .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usQdF9MsZi .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-usQdF9MsZi .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usQdF9MsZi .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usQdF9MsZi .modal-backdrop.fade {
  opacity: 0;
}
.cid-usQdF9MsZi .modal-backdrop.show {
  opacity: .5;
}
.cid-usQdF9MsZi .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-usQdF9MsZi .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usQdF9MsZi .modal-header {
    padding: 1rem;
  }
}
.cid-usQdF9MsZi .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usQdF9MsZi .modal-header .close svg {
  fill: #353535;
}
.cid-usQdF9MsZi .modal-header .close:hover {
  opacity: 1;
}
.cid-usQdF9MsZi .modal-header .close:focus {
  outline: none;
}
.cid-usQdF9MsZi .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-usQdF9MsZi .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usQdF9MsZi .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQdF9MsZi .modal-body {
    padding: 1rem;
  }
}
.cid-usQdF9MsZi .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-usQdF9MsZi .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usQdF9MsZi .modal-footer {
    padding: 1rem;
  }
}
.cid-usQdF9MsZi .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usQdF9MsZi .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usQdF9MsZi .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usQdF9MsZi .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usQdF9MsZi .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usQdF9MsZi .modal-lg,
  .cid-usQdF9MsZi .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usQdF9MsZi .modal-xl {
    max-width: 1140px;
  }
}
.cid-usQdF9MsZi .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usQdF9MsZi .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-usQdF9MsZi .form-group {
  margin-bottom: 1rem;
}
.cid-usQdF9MsZi .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usQdF9MsZi .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usQdF9MsZi .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-usQdF9MsZi .mbr-section-btn {
  margin: 0;
}
.cid-usQdF9MsZi .mbr-section-btn .btn {
  margin: 0;
}
.cid-usdmqk2K0A.popup-builder {
  background-color: #ffffff;
}
.cid-usdmqk2K0A.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usdmqk2K0A.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usdmqk2K0A .modal-content,
.cid-usdmqk2K0A .modal-dialog {
  height: auto;
}
.cid-usdmqk2K0A .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usdmqk2K0A .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usdmqk2K0A .form-wrapper .mbr-form .form-group,
  .cid-usdmqk2K0A .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usdmqk2K0A .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usdmqk2K0A .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-usdmqk2K0A .mbr-text {
  text-align: left;
}
.cid-usdmqk2K0A .pt-0 {
  padding-top: 0 !important;
}
.cid-usdmqk2K0A .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usdmqk2K0A .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usdmqk2K0A .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usdmqk2K0A .modal-open {
  overflow: hidden;
}
.cid-usdmqk2K0A .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usdmqk2K0A .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usdmqk2K0A .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usdmqk2K0A .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-usdmqk2K0A .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usdmqk2K0A .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usdmqk2K0A .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usdmqk2K0A .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-usdmqk2K0A .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usdmqk2K0A .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usdmqk2K0A .modal-backdrop.fade {
  opacity: 0;
}
.cid-usdmqk2K0A .modal-backdrop.show {
  opacity: .5;
}
.cid-usdmqk2K0A .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-usdmqk2K0A .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usdmqk2K0A .modal-header {
    padding: 1rem;
  }
}
.cid-usdmqk2K0A .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usdmqk2K0A .modal-header .close svg {
  fill: #353535;
}
.cid-usdmqk2K0A .modal-header .close:hover {
  opacity: 1;
}
.cid-usdmqk2K0A .modal-header .close:focus {
  outline: none;
}
.cid-usdmqk2K0A .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-usdmqk2K0A .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usdmqk2K0A .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usdmqk2K0A .modal-body {
    padding: 1rem;
  }
}
.cid-usdmqk2K0A .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-usdmqk2K0A .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usdmqk2K0A .modal-footer {
    padding: 1rem;
  }
}
.cid-usdmqk2K0A .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usdmqk2K0A .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usdmqk2K0A .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usdmqk2K0A .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usdmqk2K0A .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usdmqk2K0A .modal-lg,
  .cid-usdmqk2K0A .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usdmqk2K0A .modal-xl {
    max-width: 1140px;
  }
}
.cid-usdmqk2K0A .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usdmqk2K0A .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-usdmqk2K0A .form-group {
  margin-bottom: 1rem;
}
.cid-usdmqk2K0A .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usdmqk2K0A .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usdmqk2K0A .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-usdmqk2K0A .mbr-section-btn {
  margin: 0;
}
.cid-usdmqk2K0A .mbr-section-btn .btn {
  margin: 0;
}
.cid-us1vVeGS6v.popup-builder {
  background-color: #ffffff;
}
.cid-us1vVeGS6v.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us1vVeGS6v.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us1vVeGS6v .modal-content,
.cid-us1vVeGS6v .modal-dialog {
  height: auto;
}
.cid-us1vVeGS6v .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us1vVeGS6v .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us1vVeGS6v .form-wrapper .mbr-form .form-group,
  .cid-us1vVeGS6v .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us1vVeGS6v .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us1vVeGS6v .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-us1vVeGS6v .mbr-text {
  text-align: left;
}
.cid-us1vVeGS6v .pt-0 {
  padding-top: 0 !important;
}
.cid-us1vVeGS6v .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us1vVeGS6v .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us1vVeGS6v .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us1vVeGS6v .modal-open {
  overflow: hidden;
}
.cid-us1vVeGS6v .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us1vVeGS6v .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us1vVeGS6v .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us1vVeGS6v .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-us1vVeGS6v .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us1vVeGS6v .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us1vVeGS6v .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us1vVeGS6v .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-us1vVeGS6v .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us1vVeGS6v .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us1vVeGS6v .modal-backdrop.fade {
  opacity: 0;
}
.cid-us1vVeGS6v .modal-backdrop.show {
  opacity: .5;
}
.cid-us1vVeGS6v .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-us1vVeGS6v .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us1vVeGS6v .modal-header {
    padding: 1rem;
  }
}
.cid-us1vVeGS6v .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us1vVeGS6v .modal-header .close svg {
  fill: #353535;
}
.cid-us1vVeGS6v .modal-header .close:hover {
  opacity: 1;
}
.cid-us1vVeGS6v .modal-header .close:focus {
  outline: none;
}
.cid-us1vVeGS6v .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-us1vVeGS6v .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us1vVeGS6v .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1vVeGS6v .modal-body {
    padding: 1rem;
  }
}
.cid-us1vVeGS6v .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-us1vVeGS6v .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1vVeGS6v .modal-footer {
    padding: 1rem;
  }
}
.cid-us1vVeGS6v .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us1vVeGS6v .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us1vVeGS6v .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us1vVeGS6v .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us1vVeGS6v .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us1vVeGS6v .modal-lg,
  .cid-us1vVeGS6v .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us1vVeGS6v .modal-xl {
    max-width: 1140px;
  }
}
.cid-us1vVeGS6v .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us1vVeGS6v .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-us1vVeGS6v .form-group {
  margin-bottom: 1rem;
}
.cid-us1vVeGS6v .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us1vVeGS6v .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us1vVeGS6v .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-us1vVeGS6v .mbr-section-btn {
  margin: 0;
}
.cid-us1vVeGS6v .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhN5S9nT.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhN5S9nT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhN5S9nT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhN5S9nT .modal-content,
.cid-uqHhN5S9nT .modal-dialog {
  height: auto;
}
.cid-uqHhN5S9nT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhN5S9nT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhN5S9nT .form-wrapper .mbr-form .form-group,
  .cid-uqHhN5S9nT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhN5S9nT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .mbr-text {
  text-align: left;
}
.cid-uqHhN5S9nT .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhN5S9nT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhN5S9nT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhN5S9nT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhN5S9nT .modal-open {
  overflow: hidden;
}
.cid-uqHhN5S9nT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhN5S9nT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhN5S9nT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhN5S9nT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhN5S9nT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhN5S9nT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhN5S9nT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhN5S9nT .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhN5S9nT .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhN5S9nT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhN5S9nT .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhN5S9nT .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhN5S9nT .modal-header .close:focus {
  outline: none;
}
.cid-uqHhN5S9nT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhN5S9nT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhN5S9nT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhN5S9nT .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhN5S9nT .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhN5S9nT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhN5S9nT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhN5S9nT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhN5S9nT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhN5S9nT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhN5S9nT .modal-lg,
  .cid-uqHhN5S9nT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhN5S9nT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhN5S9nT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhN5S9nT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhN5S9nT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhN5S9nT .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-uqHhN5S9nT .mbr-section-btn {
  margin: 0;
}
.cid-uqHhN5S9nT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhNIJDl9.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhNIJDl9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhNIJDl9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhNIJDl9 .modal-content,
.cid-uqHhNIJDl9 .modal-dialog {
  height: auto;
}
.cid-uqHhNIJDl9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhNIJDl9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhNIJDl9 .form-wrapper .mbr-form .form-group,
  .cid-uqHhNIJDl9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhNIJDl9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .mbr-text {
  text-align: left;
}
.cid-uqHhNIJDl9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhNIJDl9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhNIJDl9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhNIJDl9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhNIJDl9 .modal-open {
  overflow: hidden;
}
.cid-uqHhNIJDl9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhNIJDl9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhNIJDl9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhNIJDl9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhNIJDl9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhNIJDl9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhNIJDl9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhNIJDl9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhNIJDl9 .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhNIJDl9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhNIJDl9 .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhNIJDl9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhNIJDl9 .modal-header .close:focus {
  outline: none;
}
.cid-uqHhNIJDl9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhNIJDl9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhNIJDl9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhNIJDl9 .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhNIJDl9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhNIJDl9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhNIJDl9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhNIJDl9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhNIJDl9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhNIJDl9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhNIJDl9 .modal-lg,
  .cid-uqHhNIJDl9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhNIJDl9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhNIJDl9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhNIJDl9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhNIJDl9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhNIJDl9 .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-uqHhNIJDl9 .mbr-section-btn {
  margin: 0;
}
.cid-uqHhNIJDl9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhOk6QRT.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhOk6QRT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhOk6QRT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhOk6QRT .modal-content,
.cid-uqHhOk6QRT .modal-dialog {
  height: auto;
}
.cid-uqHhOk6QRT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhOk6QRT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhOk6QRT .form-wrapper .mbr-form .form-group,
  .cid-uqHhOk6QRT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhOk6QRT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .mbr-text {
  text-align: left;
}
.cid-uqHhOk6QRT .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhOk6QRT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhOk6QRT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhOk6QRT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhOk6QRT .modal-open {
  overflow: hidden;
}
.cid-uqHhOk6QRT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhOk6QRT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhOk6QRT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhOk6QRT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhOk6QRT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhOk6QRT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhOk6QRT .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhOk6QRT .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOk6QRT .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhOk6QRT .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhOk6QRT .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhOk6QRT .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhOk6QRT .modal-header .close:focus {
  outline: none;
}
.cid-uqHhOk6QRT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhOk6QRT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhOk6QRT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOk6QRT .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOk6QRT .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhOk6QRT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhOk6QRT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhOk6QRT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhOk6QRT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhOk6QRT .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhOk6QRT .modal-lg,
  .cid-uqHhOk6QRT .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhOk6QRT .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhOk6QRT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhOk6QRT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhOk6QRT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhOk6QRT .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-uqHhOk6QRT .mbr-section-btn {
  margin: 0;
}
.cid-uqHhOk6QRT .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhOYsZSm.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhOYsZSm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhOYsZSm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhOYsZSm .modal-content,
.cid-uqHhOYsZSm .modal-dialog {
  height: auto;
}
.cid-uqHhOYsZSm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhOYsZSm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhOYsZSm .form-wrapper .mbr-form .form-group,
  .cid-uqHhOYsZSm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhOYsZSm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .mbr-text {
  text-align: left;
}
.cid-uqHhOYsZSm .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhOYsZSm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhOYsZSm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhOYsZSm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhOYsZSm .modal-open {
  overflow: hidden;
}
.cid-uqHhOYsZSm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhOYsZSm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhOYsZSm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhOYsZSm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhOYsZSm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhOYsZSm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhOYsZSm .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhOYsZSm .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOYsZSm .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhOYsZSm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhOYsZSm .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhOYsZSm .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhOYsZSm .modal-header .close:focus {
  outline: none;
}
.cid-uqHhOYsZSm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhOYsZSm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhOYsZSm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOYsZSm .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhOYsZSm .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhOYsZSm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhOYsZSm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhOYsZSm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhOYsZSm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhOYsZSm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhOYsZSm .modal-lg,
  .cid-uqHhOYsZSm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhOYsZSm .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhOYsZSm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhOYsZSm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhOYsZSm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhOYsZSm .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-uqHhOYsZSm .mbr-section-btn {
  margin: 0;
}
.cid-uqHhOYsZSm .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHhPFLqVN.popup-builder {
  background-color: #ffffff;
}
.cid-uqHhPFLqVN.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHhPFLqVN.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHhPFLqVN .modal-content,
.cid-uqHhPFLqVN .modal-dialog {
  height: auto;
}
.cid-uqHhPFLqVN .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHhPFLqVN .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHhPFLqVN .form-wrapper .mbr-form .form-group,
  .cid-uqHhPFLqVN .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHhPFLqVN .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .mbr-text {
  text-align: left;
}
.cid-uqHhPFLqVN .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHhPFLqVN .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHhPFLqVN .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHhPFLqVN .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHhPFLqVN .modal-open {
  overflow: hidden;
}
.cid-uqHhPFLqVN .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHhPFLqVN .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHhPFLqVN .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHhPFLqVN .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHhPFLqVN .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHhPFLqVN .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHhPFLqVN .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHhPFLqVN .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhPFLqVN .modal-header {
    padding: 1rem;
  }
}
.cid-uqHhPFLqVN .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHhPFLqVN .modal-header .close svg {
  fill: #353535;
}
.cid-uqHhPFLqVN .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHhPFLqVN .modal-header .close:focus {
  outline: none;
}
.cid-uqHhPFLqVN .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-uqHhPFLqVN .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHhPFLqVN .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhPFLqVN .modal-body {
    padding: 1rem;
  }
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHhPFLqVN .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHhPFLqVN .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHhPFLqVN .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHhPFLqVN .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHhPFLqVN .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHhPFLqVN .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHhPFLqVN .modal-lg,
  .cid-uqHhPFLqVN .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHhPFLqVN .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHhPFLqVN .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .form-group {
  margin-bottom: 1rem;
}
.cid-uqHhPFLqVN .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHhPFLqVN .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHhPFLqVN .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-uqHhPFLqVN .mbr-section-btn {
  margin: 0;
}
.cid-uqHhPFLqVN .mbr-section-btn .btn {
  margin: 0;
}
.cid-urPwpKugBm.popup-builder {
  background-color: #ffffff;
}
.cid-urPwpKugBm.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urPwpKugBm.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urPwpKugBm .modal-content,
.cid-urPwpKugBm .modal-dialog {
  height: auto;
}
.cid-urPwpKugBm .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urPwpKugBm .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urPwpKugBm .form-wrapper .mbr-form .form-group,
  .cid-urPwpKugBm .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urPwpKugBm .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urPwpKugBm .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-urPwpKugBm .mbr-text {
  text-align: left;
}
.cid-urPwpKugBm .pt-0 {
  padding-top: 0 !important;
}
.cid-urPwpKugBm .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urPwpKugBm .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urPwpKugBm .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urPwpKugBm .modal-open {
  overflow: hidden;
}
.cid-urPwpKugBm .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urPwpKugBm .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urPwpKugBm .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urPwpKugBm .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-urPwpKugBm .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urPwpKugBm .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urPwpKugBm .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urPwpKugBm .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-urPwpKugBm .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urPwpKugBm .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urPwpKugBm .modal-backdrop.fade {
  opacity: 0;
}
.cid-urPwpKugBm .modal-backdrop.show {
  opacity: .5;
}
.cid-urPwpKugBm .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-urPwpKugBm .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urPwpKugBm .modal-header {
    padding: 1rem;
  }
}
.cid-urPwpKugBm .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urPwpKugBm .modal-header .close svg {
  fill: #353535;
}
.cid-urPwpKugBm .modal-header .close:hover {
  opacity: 1;
}
.cid-urPwpKugBm .modal-header .close:focus {
  outline: none;
}
.cid-urPwpKugBm .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-urPwpKugBm .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urPwpKugBm .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urPwpKugBm .modal-body {
    padding: 1rem;
  }
}
.cid-urPwpKugBm .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-urPwpKugBm .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urPwpKugBm .modal-footer {
    padding: 1rem;
  }
}
.cid-urPwpKugBm .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urPwpKugBm .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urPwpKugBm .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urPwpKugBm .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urPwpKugBm .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urPwpKugBm .modal-lg,
  .cid-urPwpKugBm .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urPwpKugBm .modal-xl {
    max-width: 1140px;
  }
}
.cid-urPwpKugBm .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urPwpKugBm .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-urPwpKugBm .form-group {
  margin-bottom: 1rem;
}
.cid-urPwpKugBm .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urPwpKugBm .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urPwpKugBm .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-urPwpKugBm .mbr-section-btn {
  margin: 0;
}
.cid-urPwpKugBm .mbr-section-btn .btn {
  margin: 0;
}
.cid-usBI5flooI.popup-builder {
  background-color: #ffffff;
}
.cid-usBI5flooI.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usBI5flooI.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usBI5flooI .modal-content,
.cid-usBI5flooI .modal-dialog {
  height: auto;
}
.cid-usBI5flooI .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usBI5flooI .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usBI5flooI .form-wrapper .mbr-form .form-group,
  .cid-usBI5flooI .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usBI5flooI .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usBI5flooI .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-usBI5flooI .mbr-text {
  text-align: left;
}
.cid-usBI5flooI .pt-0 {
  padding-top: 0 !important;
}
.cid-usBI5flooI .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usBI5flooI .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usBI5flooI .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usBI5flooI .modal-open {
  overflow: hidden;
}
.cid-usBI5flooI .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usBI5flooI .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usBI5flooI .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usBI5flooI .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-usBI5flooI .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usBI5flooI .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usBI5flooI .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usBI5flooI .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-usBI5flooI .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usBI5flooI .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usBI5flooI .modal-backdrop.fade {
  opacity: 0;
}
.cid-usBI5flooI .modal-backdrop.show {
  opacity: .5;
}
.cid-usBI5flooI .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-usBI5flooI .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usBI5flooI .modal-header {
    padding: 1rem;
  }
}
.cid-usBI5flooI .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usBI5flooI .modal-header .close svg {
  fill: #353535;
}
.cid-usBI5flooI .modal-header .close:hover {
  opacity: 1;
}
.cid-usBI5flooI .modal-header .close:focus {
  outline: none;
}
.cid-usBI5flooI .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #5f6ad4;
}
.cid-usBI5flooI .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usBI5flooI .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usBI5flooI .modal-body {
    padding: 1rem;
  }
}
.cid-usBI5flooI .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-usBI5flooI .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usBI5flooI .modal-footer {
    padding: 1rem;
  }
}
.cid-usBI5flooI .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usBI5flooI .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usBI5flooI .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usBI5flooI .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usBI5flooI .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usBI5flooI .modal-lg,
  .cid-usBI5flooI .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usBI5flooI .modal-xl {
    max-width: 1140px;
  }
}
.cid-usBI5flooI .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usBI5flooI .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-usBI5flooI .form-group {
  margin-bottom: 1rem;
}
.cid-usBI5flooI .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usBI5flooI .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usBI5flooI .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-usBI5flooI .mbr-section-btn {
  margin: 0;
}
.cid-usBI5flooI .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqBKpjSriQ {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqBKpjSriQ .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uqBKpjSriQ .item-img,
.cid-uqBKpjSriQ .img-wrap,
.cid-uqBKpjSriQ img {
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
}
.cid-uqBKpjSriQ img,
.cid-uqBKpjSriQ .item-img {
  width: 230px;
  overflow: hidden;
  transition: transform 3s;
  cursor: pointer;
  object-fit: cover;
  min-height: 230px;
  height: 230px;
}
@media (max-width: 1600px) {
  .cid-uqBKpjSriQ img,
  .cid-uqBKpjSriQ .item-img {
    width: 180px;
    min-height: 180px;
    height: 180px;
  }
}
.cid-uqBKpjSriQ .item-img {
  border: 1px solid transparent;
  transition: all 0.3s;
}
.cid-uqBKpjSriQ .item:focus,
.cid-uqBKpjSriQ span:focus {
  outline: none;
}
.cid-uqBKpjSriQ .img-wrap {
  transition: all 0.3s;
  overflow: hidden;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.cid-uqBKpjSriQ .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uqBKpjSriQ .item {
    margin-bottom: 1rem;
  }
}
.cid-uqBKpjSriQ h5 {
  margin: 0;
}
.cid-uqBKpjSriQ .item-content {
  margin-top: 1rem;
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uqBKpjSriQ .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  transition: all 0.3s;
}
.cid-uqBKpjSriQ .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uqBKpjSriQ .item-wrapper:hover .img-wrap {
  margin: 3px;
}
@media (max-width: 992px) {
  .cid-uqBKpjSriQ .item-wrapper {
    height: auto;
  }
}
.cid-uqBKpjSriQ .mbr-section-title {
  color: #ffe161;
  text-align: center;
}
.cid-uqBKpjSriQ .item-title {
  text-align: center;
  color: #ffffff;
}
.cid-uqBKpjSriQ .item-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uqBKpjSriQ .mbr-text,
.cid-uqBKpjSriQ .item .mbr-section-btn {
  text-align: center;
}
.cid-uqBKpjSriQ .mbr-section-subtitle,
.cid-uqBKpjSriQ .mbr-section-head .mbr-section-btn {
  text-align: left;
}
.cid-usvfjPT2yy.popup-builder {
  background-color: #ffffff;
}
.cid-usvfjPT2yy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-usvfjPT2yy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-usvfjPT2yy .modal-content,
.cid-usvfjPT2yy .modal-dialog {
  height: auto;
}
.cid-usvfjPT2yy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-usvfjPT2yy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-usvfjPT2yy .form-wrapper .mbr-form .form-group,
  .cid-usvfjPT2yy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-usvfjPT2yy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-usvfjPT2yy .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-usvfjPT2yy .mbr-text {
  text-align: left;
}
.cid-usvfjPT2yy .pt-0 {
  padding-top: 0 !important;
}
.cid-usvfjPT2yy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-usvfjPT2yy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-usvfjPT2yy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-usvfjPT2yy .modal-open {
  overflow: hidden;
}
.cid-usvfjPT2yy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-usvfjPT2yy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-usvfjPT2yy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-usvfjPT2yy .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-usvfjPT2yy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-usvfjPT2yy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-usvfjPT2yy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-usvfjPT2yy .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-usvfjPT2yy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-usvfjPT2yy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-usvfjPT2yy .modal-backdrop.fade {
  opacity: 0;
}
.cid-usvfjPT2yy .modal-backdrop.show {
  opacity: .5;
}
.cid-usvfjPT2yy .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-usvfjPT2yy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-usvfjPT2yy .modal-header {
    padding: 1rem;
  }
}
.cid-usvfjPT2yy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-usvfjPT2yy .modal-header .close svg {
  fill: #353535;
}
.cid-usvfjPT2yy .modal-header .close:hover {
  opacity: 1;
}
.cid-usvfjPT2yy .modal-header .close:focus {
  outline: none;
}
.cid-usvfjPT2yy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-usvfjPT2yy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-usvfjPT2yy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usvfjPT2yy .modal-body {
    padding: 1rem;
  }
}
.cid-usvfjPT2yy .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-usvfjPT2yy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usvfjPT2yy .modal-footer {
    padding: 1rem;
  }
}
.cid-usvfjPT2yy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-usvfjPT2yy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-usvfjPT2yy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-usvfjPT2yy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-usvfjPT2yy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-usvfjPT2yy .modal-lg,
  .cid-usvfjPT2yy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-usvfjPT2yy .modal-xl {
    max-width: 1140px;
  }
}
.cid-usvfjPT2yy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-usvfjPT2yy .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-usvfjPT2yy .form-group {
  margin-bottom: 1rem;
}
.cid-usvfjPT2yy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-usvfjPT2yy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-usvfjPT2yy .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-usvfjPT2yy .mbr-section-btn {
  margin: 0;
}
.cid-usvfjPT2yy .mbr-section-btn .btn {
  margin: 0;
}
.cid-us1Lfz7CT3.popup-builder {
  background-color: #ffffff;
}
.cid-us1Lfz7CT3.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us1Lfz7CT3.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us1Lfz7CT3 .modal-content,
.cid-us1Lfz7CT3 .modal-dialog {
  height: auto;
}
.cid-us1Lfz7CT3 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us1Lfz7CT3 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us1Lfz7CT3 .form-wrapper .mbr-form .form-group,
  .cid-us1Lfz7CT3 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us1Lfz7CT3 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .mbr-text {
  text-align: left;
}
.cid-us1Lfz7CT3 .pt-0 {
  padding-top: 0 !important;
}
.cid-us1Lfz7CT3 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us1Lfz7CT3 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us1Lfz7CT3 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us1Lfz7CT3 .modal-open {
  overflow: hidden;
}
.cid-us1Lfz7CT3 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us1Lfz7CT3 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us1Lfz7CT3 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us1Lfz7CT3 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us1Lfz7CT3 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us1Lfz7CT3 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us1Lfz7CT3 .modal-backdrop.fade {
  opacity: 0;
}
.cid-us1Lfz7CT3 .modal-backdrop.show {
  opacity: .5;
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lfz7CT3 .modal-header {
    padding: 1rem;
  }
}
.cid-us1Lfz7CT3 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us1Lfz7CT3 .modal-header .close svg {
  fill: #353535;
}
.cid-us1Lfz7CT3 .modal-header .close:hover {
  opacity: 1;
}
.cid-us1Lfz7CT3 .modal-header .close:focus {
  outline: none;
}
.cid-us1Lfz7CT3 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-us1Lfz7CT3 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us1Lfz7CT3 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lfz7CT3 .modal-body {
    padding: 1rem;
  }
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lfz7CT3 .modal-footer {
    padding: 1rem;
  }
}
.cid-us1Lfz7CT3 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us1Lfz7CT3 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us1Lfz7CT3 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us1Lfz7CT3 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us1Lfz7CT3 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us1Lfz7CT3 .modal-lg,
  .cid-us1Lfz7CT3 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us1Lfz7CT3 .modal-xl {
    max-width: 1140px;
  }
}
.cid-us1Lfz7CT3 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .form-group {
  margin-bottom: 1rem;
}
.cid-us1Lfz7CT3 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us1Lfz7CT3 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us1Lfz7CT3 .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-us1Lfz7CT3 .mbr-section-btn {
  margin: 0;
}
.cid-us1Lfz7CT3 .mbr-section-btn .btn {
  margin: 0;
}
.cid-us1Lgo7eeQ.popup-builder {
  background-color: #ffffff;
}
.cid-us1Lgo7eeQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us1Lgo7eeQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us1Lgo7eeQ .modal-content,
.cid-us1Lgo7eeQ .modal-dialog {
  height: auto;
}
.cid-us1Lgo7eeQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us1Lgo7eeQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us1Lgo7eeQ .form-wrapper .mbr-form .form-group,
  .cid-us1Lgo7eeQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us1Lgo7eeQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .mbr-text {
  text-align: left;
}
.cid-us1Lgo7eeQ .pt-0 {
  padding-top: 0 !important;
}
.cid-us1Lgo7eeQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us1Lgo7eeQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us1Lgo7eeQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us1Lgo7eeQ .modal-open {
  overflow: hidden;
}
.cid-us1Lgo7eeQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us1Lgo7eeQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us1Lgo7eeQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us1Lgo7eeQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us1Lgo7eeQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us1Lgo7eeQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us1Lgo7eeQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-us1Lgo7eeQ .modal-backdrop.show {
  opacity: .5;
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lgo7eeQ .modal-header {
    padding: 1rem;
  }
}
.cid-us1Lgo7eeQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us1Lgo7eeQ .modal-header .close svg {
  fill: #353535;
}
.cid-us1Lgo7eeQ .modal-header .close:hover {
  opacity: 1;
}
.cid-us1Lgo7eeQ .modal-header .close:focus {
  outline: none;
}
.cid-us1Lgo7eeQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-us1Lgo7eeQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us1Lgo7eeQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lgo7eeQ .modal-body {
    padding: 1rem;
  }
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1Lgo7eeQ .modal-footer {
    padding: 1rem;
  }
}
.cid-us1Lgo7eeQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us1Lgo7eeQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us1Lgo7eeQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us1Lgo7eeQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us1Lgo7eeQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us1Lgo7eeQ .modal-lg,
  .cid-us1Lgo7eeQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us1Lgo7eeQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-us1Lgo7eeQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .form-group {
  margin-bottom: 1rem;
}
.cid-us1Lgo7eeQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us1Lgo7eeQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us1Lgo7eeQ .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-us1Lgo7eeQ .mbr-section-btn {
  margin: 0;
}
.cid-us1Lgo7eeQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-us1w5zPHtc.popup-builder {
  background-color: #ffffff;
}
.cid-us1w5zPHtc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us1w5zPHtc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us1w5zPHtc .modal-content,
.cid-us1w5zPHtc .modal-dialog {
  height: auto;
}
.cid-us1w5zPHtc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us1w5zPHtc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us1w5zPHtc .form-wrapper .mbr-form .form-group,
  .cid-us1w5zPHtc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us1w5zPHtc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us1w5zPHtc .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-us1w5zPHtc .mbr-text {
  text-align: left;
}
.cid-us1w5zPHtc .pt-0 {
  padding-top: 0 !important;
}
.cid-us1w5zPHtc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us1w5zPHtc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us1w5zPHtc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us1w5zPHtc .modal-open {
  overflow: hidden;
}
.cid-us1w5zPHtc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us1w5zPHtc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us1w5zPHtc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us1w5zPHtc .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-us1w5zPHtc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us1w5zPHtc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us1w5zPHtc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us1w5zPHtc .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-us1w5zPHtc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us1w5zPHtc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us1w5zPHtc .modal-backdrop.fade {
  opacity: 0;
}
.cid-us1w5zPHtc .modal-backdrop.show {
  opacity: .5;
}
.cid-us1w5zPHtc .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-us1w5zPHtc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w5zPHtc .modal-header {
    padding: 1rem;
  }
}
.cid-us1w5zPHtc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us1w5zPHtc .modal-header .close svg {
  fill: #353535;
}
.cid-us1w5zPHtc .modal-header .close:hover {
  opacity: 1;
}
.cid-us1w5zPHtc .modal-header .close:focus {
  outline: none;
}
.cid-us1w5zPHtc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-us1w5zPHtc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us1w5zPHtc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w5zPHtc .modal-body {
    padding: 1rem;
  }
}
.cid-us1w5zPHtc .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-us1w5zPHtc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w5zPHtc .modal-footer {
    padding: 1rem;
  }
}
.cid-us1w5zPHtc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us1w5zPHtc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us1w5zPHtc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us1w5zPHtc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us1w5zPHtc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us1w5zPHtc .modal-lg,
  .cid-us1w5zPHtc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us1w5zPHtc .modal-xl {
    max-width: 1140px;
  }
}
.cid-us1w5zPHtc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us1w5zPHtc .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-us1w5zPHtc .form-group {
  margin-bottom: 1rem;
}
.cid-us1w5zPHtc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us1w5zPHtc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us1w5zPHtc .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-us1w5zPHtc .mbr-section-btn {
  margin: 0;
}
.cid-us1w5zPHtc .mbr-section-btn .btn {
  margin: 0;
}
.cid-us1w6lqdKB.popup-builder {
  background-color: #ffffff;
}
.cid-us1w6lqdKB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-us1w6lqdKB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-us1w6lqdKB .modal-content,
.cid-us1w6lqdKB .modal-dialog {
  height: auto;
}
.cid-us1w6lqdKB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-us1w6lqdKB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-us1w6lqdKB .form-wrapper .mbr-form .form-group,
  .cid-us1w6lqdKB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-us1w6lqdKB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-us1w6lqdKB .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-us1w6lqdKB .mbr-text {
  text-align: left;
}
.cid-us1w6lqdKB .pt-0 {
  padding-top: 0 !important;
}
.cid-us1w6lqdKB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-us1w6lqdKB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-us1w6lqdKB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-us1w6lqdKB .modal-open {
  overflow: hidden;
}
.cid-us1w6lqdKB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-us1w6lqdKB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-us1w6lqdKB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-us1w6lqdKB .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-us1w6lqdKB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-us1w6lqdKB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-us1w6lqdKB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-us1w6lqdKB .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-us1w6lqdKB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-us1w6lqdKB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-us1w6lqdKB .modal-backdrop.fade {
  opacity: 0;
}
.cid-us1w6lqdKB .modal-backdrop.show {
  opacity: .5;
}
.cid-us1w6lqdKB .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-us1w6lqdKB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w6lqdKB .modal-header {
    padding: 1rem;
  }
}
.cid-us1w6lqdKB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-us1w6lqdKB .modal-header .close svg {
  fill: #353535;
}
.cid-us1w6lqdKB .modal-header .close:hover {
  opacity: 1;
}
.cid-us1w6lqdKB .modal-header .close:focus {
  outline: none;
}
.cid-us1w6lqdKB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-us1w6lqdKB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-us1w6lqdKB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w6lqdKB .modal-body {
    padding: 1rem;
  }
}
.cid-us1w6lqdKB .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-us1w6lqdKB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-us1w6lqdKB .modal-footer {
    padding: 1rem;
  }
}
.cid-us1w6lqdKB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-us1w6lqdKB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-us1w6lqdKB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-us1w6lqdKB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-us1w6lqdKB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-us1w6lqdKB .modal-lg,
  .cid-us1w6lqdKB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-us1w6lqdKB .modal-xl {
    max-width: 1140px;
  }
}
.cid-us1w6lqdKB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-us1w6lqdKB .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-us1w6lqdKB .form-group {
  margin-bottom: 1rem;
}
.cid-us1w6lqdKB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-us1w6lqdKB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-us1w6lqdKB .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-us1w6lqdKB .mbr-section-btn {
  margin: 0;
}
.cid-us1w6lqdKB .mbr-section-btn .btn {
  margin: 0;
}
.cid-urVyJdOq7a.popup-builder {
  background-color: #ffffff;
}
.cid-urVyJdOq7a.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urVyJdOq7a.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urVyJdOq7a .modal-content,
.cid-urVyJdOq7a .modal-dialog {
  height: auto;
}
.cid-urVyJdOq7a .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urVyJdOq7a .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urVyJdOq7a .form-wrapper .mbr-form .form-group,
  .cid-urVyJdOq7a .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urVyJdOq7a .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urVyJdOq7a .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-urVyJdOq7a .mbr-text {
  text-align: left;
}
.cid-urVyJdOq7a .pt-0 {
  padding-top: 0 !important;
}
.cid-urVyJdOq7a .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urVyJdOq7a .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urVyJdOq7a .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urVyJdOq7a .modal-open {
  overflow: hidden;
}
.cid-urVyJdOq7a .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urVyJdOq7a .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urVyJdOq7a .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urVyJdOq7a .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-urVyJdOq7a .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urVyJdOq7a .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urVyJdOq7a .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urVyJdOq7a .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-urVyJdOq7a .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urVyJdOq7a .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urVyJdOq7a .modal-backdrop.fade {
  opacity: 0;
}
.cid-urVyJdOq7a .modal-backdrop.show {
  opacity: .5;
}
.cid-urVyJdOq7a .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-urVyJdOq7a .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyJdOq7a .modal-header {
    padding: 1rem;
  }
}
.cid-urVyJdOq7a .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urVyJdOq7a .modal-header .close svg {
  fill: #353535;
}
.cid-urVyJdOq7a .modal-header .close:hover {
  opacity: 1;
}
.cid-urVyJdOq7a .modal-header .close:focus {
  outline: none;
}
.cid-urVyJdOq7a .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-urVyJdOq7a .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urVyJdOq7a .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyJdOq7a .modal-body {
    padding: 1rem;
  }
}
.cid-urVyJdOq7a .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-urVyJdOq7a .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyJdOq7a .modal-footer {
    padding: 1rem;
  }
}
.cid-urVyJdOq7a .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urVyJdOq7a .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urVyJdOq7a .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urVyJdOq7a .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urVyJdOq7a .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urVyJdOq7a .modal-lg,
  .cid-urVyJdOq7a .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urVyJdOq7a .modal-xl {
    max-width: 1140px;
  }
}
.cid-urVyJdOq7a .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urVyJdOq7a .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-urVyJdOq7a .form-group {
  margin-bottom: 1rem;
}
.cid-urVyJdOq7a .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urVyJdOq7a .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urVyJdOq7a .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-urVyJdOq7a .mbr-section-btn {
  margin: 0;
}
.cid-urVyJdOq7a .mbr-section-btn .btn {
  margin: 0;
}
.cid-urVyKRC40t.popup-builder {
  background-color: #ffffff;
}
.cid-urVyKRC40t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urVyKRC40t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urVyKRC40t .modal-content,
.cid-urVyKRC40t .modal-dialog {
  height: auto;
}
.cid-urVyKRC40t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urVyKRC40t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urVyKRC40t .form-wrapper .mbr-form .form-group,
  .cid-urVyKRC40t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urVyKRC40t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urVyKRC40t .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-urVyKRC40t .mbr-text {
  text-align: left;
}
.cid-urVyKRC40t .pt-0 {
  padding-top: 0 !important;
}
.cid-urVyKRC40t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urVyKRC40t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urVyKRC40t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urVyKRC40t .modal-open {
  overflow: hidden;
}
.cid-urVyKRC40t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urVyKRC40t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urVyKRC40t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urVyKRC40t .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-urVyKRC40t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urVyKRC40t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urVyKRC40t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urVyKRC40t .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-urVyKRC40t .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urVyKRC40t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urVyKRC40t .modal-backdrop.fade {
  opacity: 0;
}
.cid-urVyKRC40t .modal-backdrop.show {
  opacity: .5;
}
.cid-urVyKRC40t .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-urVyKRC40t .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyKRC40t .modal-header {
    padding: 1rem;
  }
}
.cid-urVyKRC40t .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urVyKRC40t .modal-header .close svg {
  fill: #353535;
}
.cid-urVyKRC40t .modal-header .close:hover {
  opacity: 1;
}
.cid-urVyKRC40t .modal-header .close:focus {
  outline: none;
}
.cid-urVyKRC40t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-urVyKRC40t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urVyKRC40t .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyKRC40t .modal-body {
    padding: 1rem;
  }
}
.cid-urVyKRC40t .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-urVyKRC40t .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urVyKRC40t .modal-footer {
    padding: 1rem;
  }
}
.cid-urVyKRC40t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urVyKRC40t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urVyKRC40t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urVyKRC40t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urVyKRC40t .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urVyKRC40t .modal-lg,
  .cid-urVyKRC40t .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urVyKRC40t .modal-xl {
    max-width: 1140px;
  }
}
.cid-urVyKRC40t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urVyKRC40t .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-urVyKRC40t .form-group {
  margin-bottom: 1rem;
}
.cid-urVyKRC40t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urVyKRC40t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urVyKRC40t .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-urVyKRC40t .mbr-section-btn {
  margin: 0;
}
.cid-urVyKRC40t .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHU4zf57t.popup-builder {
  background-color: #ffffff;
}
.cid-uqHU4zf57t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHU4zf57t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHU4zf57t .modal-content,
.cid-uqHU4zf57t .modal-dialog {
  height: auto;
}
.cid-uqHU4zf57t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHU4zf57t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHU4zf57t .form-wrapper .mbr-form .form-group,
  .cid-uqHU4zf57t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHU4zf57t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHU4zf57t .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-uqHU4zf57t .mbr-text {
  text-align: left;
}
.cid-uqHU4zf57t .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHU4zf57t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHU4zf57t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHU4zf57t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHU4zf57t .modal-open {
  overflow: hidden;
}
.cid-uqHU4zf57t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHU4zf57t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHU4zf57t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHU4zf57t .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-uqHU4zf57t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHU4zf57t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHU4zf57t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHU4zf57t .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-uqHU4zf57t .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHU4zf57t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHU4zf57t .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHU4zf57t .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHU4zf57t .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-uqHU4zf57t .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU4zf57t .modal-header {
    padding: 1rem;
  }
}
.cid-uqHU4zf57t .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHU4zf57t .modal-header .close svg {
  fill: #353535;
}
.cid-uqHU4zf57t .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHU4zf57t .modal-header .close:focus {
  outline: none;
}
.cid-uqHU4zf57t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqHU4zf57t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHU4zf57t .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU4zf57t .modal-body {
    padding: 1rem;
  }
}
.cid-uqHU4zf57t .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-uqHU4zf57t .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU4zf57t .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHU4zf57t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHU4zf57t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHU4zf57t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHU4zf57t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHU4zf57t .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHU4zf57t .modal-lg,
  .cid-uqHU4zf57t .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHU4zf57t .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHU4zf57t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHU4zf57t .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-uqHU4zf57t .form-group {
  margin-bottom: 1rem;
}
.cid-uqHU4zf57t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHU4zf57t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHU4zf57t .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-uqHU4zf57t .mbr-section-btn {
  margin: 0;
}
.cid-uqHU4zf57t .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqHU37wV6S.popup-builder {
  background-color: #ffffff;
}
.cid-uqHU37wV6S.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqHU37wV6S.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqHU37wV6S .modal-content,
.cid-uqHU37wV6S .modal-dialog {
  height: auto;
}
.cid-uqHU37wV6S .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqHU37wV6S .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqHU37wV6S .form-wrapper .mbr-form .form-group,
  .cid-uqHU37wV6S .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqHU37wV6S .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqHU37wV6S .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-uqHU37wV6S .mbr-text {
  text-align: left;
}
.cid-uqHU37wV6S .pt-0 {
  padding-top: 0 !important;
}
.cid-uqHU37wV6S .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqHU37wV6S .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqHU37wV6S .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqHU37wV6S .modal-open {
  overflow: hidden;
}
.cid-uqHU37wV6S .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqHU37wV6S .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqHU37wV6S .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqHU37wV6S .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-uqHU37wV6S .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqHU37wV6S .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqHU37wV6S .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqHU37wV6S .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-uqHU37wV6S .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqHU37wV6S .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqHU37wV6S .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqHU37wV6S .modal-backdrop.show {
  opacity: .5;
}
.cid-uqHU37wV6S .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-uqHU37wV6S .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU37wV6S .modal-header {
    padding: 1rem;
  }
}
.cid-uqHU37wV6S .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqHU37wV6S .modal-header .close svg {
  fill: #353535;
}
.cid-uqHU37wV6S .modal-header .close:hover {
  opacity: 1;
}
.cid-uqHU37wV6S .modal-header .close:focus {
  outline: none;
}
.cid-uqHU37wV6S .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqHU37wV6S .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqHU37wV6S .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU37wV6S .modal-body {
    padding: 1rem;
  }
}
.cid-uqHU37wV6S .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-uqHU37wV6S .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqHU37wV6S .modal-footer {
    padding: 1rem;
  }
}
.cid-uqHU37wV6S .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqHU37wV6S .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqHU37wV6S .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqHU37wV6S .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqHU37wV6S .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqHU37wV6S .modal-lg,
  .cid-uqHU37wV6S .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqHU37wV6S .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqHU37wV6S .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqHU37wV6S .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-uqHU37wV6S .form-group {
  margin-bottom: 1rem;
}
.cid-uqHU37wV6S .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqHU37wV6S .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqHU37wV6S .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-uqHU37wV6S .mbr-section-btn {
  margin: 0;
}
.cid-uqHU37wV6S .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGaKk8pKX.popup-builder {
  background-color: #ffffff;
}
.cid-uqGaKk8pKX.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGaKk8pKX.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGaKk8pKX .modal-content,
.cid-uqGaKk8pKX .modal-dialog {
  height: auto;
}
.cid-uqGaKk8pKX .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGaKk8pKX .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGaKk8pKX .form-wrapper .mbr-form .form-group,
  .cid-uqGaKk8pKX .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGaKk8pKX .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .mbr-text {
  text-align: left;
}
.cid-uqGaKk8pKX .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGaKk8pKX .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGaKk8pKX .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGaKk8pKX .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGaKk8pKX .modal-open {
  overflow: hidden;
}
.cid-uqGaKk8pKX .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGaKk8pKX .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGaKk8pKX .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGaKk8pKX .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGaKk8pKX .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGaKk8pKX .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGaKk8pKX .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGaKk8pKX .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGaKk8pKX .modal-header {
    padding: 1rem;
  }
}
.cid-uqGaKk8pKX .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGaKk8pKX .modal-header .close svg {
  fill: #353535;
}
.cid-uqGaKk8pKX .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGaKk8pKX .modal-header .close:focus {
  outline: none;
}
.cid-uqGaKk8pKX .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGaKk8pKX .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGaKk8pKX .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGaKk8pKX .modal-body {
    padding: 1rem;
  }
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGaKk8pKX .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGaKk8pKX .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGaKk8pKX .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGaKk8pKX .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGaKk8pKX .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGaKk8pKX .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGaKk8pKX .modal-lg,
  .cid-uqGaKk8pKX .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGaKk8pKX .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGaKk8pKX .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .form-group {
  margin-bottom: 1rem;
}
.cid-uqGaKk8pKX .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGaKk8pKX .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGaKk8pKX .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-uqGaKk8pKX .mbr-section-btn {
  margin: 0;
}
.cid-uqGaKk8pKX .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb1Dswkc.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb1Dswkc.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb1Dswkc.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb1Dswkc .modal-content,
.cid-uqGb1Dswkc .modal-dialog {
  height: auto;
}
.cid-uqGb1Dswkc .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb1Dswkc .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb1Dswkc .form-wrapper .mbr-form .form-group,
  .cid-uqGb1Dswkc .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb1Dswkc .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .mbr-text {
  text-align: left;
}
.cid-uqGb1Dswkc .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb1Dswkc .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb1Dswkc .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb1Dswkc .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb1Dswkc .modal-open {
  overflow: hidden;
}
.cid-uqGb1Dswkc .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb1Dswkc .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb1Dswkc .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb1Dswkc .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb1Dswkc .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb1Dswkc .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb1Dswkc .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb1Dswkc .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb1Dswkc .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb1Dswkc .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb1Dswkc .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb1Dswkc .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb1Dswkc .modal-header .close:focus {
  outline: none;
}
.cid-uqGb1Dswkc .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb1Dswkc .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb1Dswkc .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb1Dswkc .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb1Dswkc .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb1Dswkc .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb1Dswkc .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb1Dswkc .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb1Dswkc .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb1Dswkc .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb1Dswkc .modal-lg,
  .cid-uqGb1Dswkc .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb1Dswkc .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb1Dswkc .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb1Dswkc .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb1Dswkc .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb1Dswkc .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-uqGb1Dswkc .mbr-section-btn {
  margin: 0;
}
.cid-uqGb1Dswkc .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb2j4L9t.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb2j4L9t.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb2j4L9t.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb2j4L9t .modal-content,
.cid-uqGb2j4L9t .modal-dialog {
  height: auto;
}
.cid-uqGb2j4L9t .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb2j4L9t .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb2j4L9t .form-wrapper .mbr-form .form-group,
  .cid-uqGb2j4L9t .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb2j4L9t .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .mbr-text {
  text-align: left;
}
.cid-uqGb2j4L9t .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb2j4L9t .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb2j4L9t .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb2j4L9t .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb2j4L9t .modal-open {
  overflow: hidden;
}
.cid-uqGb2j4L9t .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb2j4L9t .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb2j4L9t .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb2j4L9t .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb2j4L9t .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb2j4L9t .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb2j4L9t .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb2j4L9t .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2j4L9t .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb2j4L9t .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb2j4L9t .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb2j4L9t .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb2j4L9t .modal-header .close:focus {
  outline: none;
}
.cid-uqGb2j4L9t .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb2j4L9t .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb2j4L9t .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2j4L9t .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2j4L9t .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb2j4L9t .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb2j4L9t .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb2j4L9t .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb2j4L9t .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb2j4L9t .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb2j4L9t .modal-lg,
  .cid-uqGb2j4L9t .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb2j4L9t .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb2j4L9t .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb2j4L9t .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb2j4L9t .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb2j4L9t .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-uqGb2j4L9t .mbr-section-btn {
  margin: 0;
}
.cid-uqGb2j4L9t .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb2XYZ6U.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb2XYZ6U.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb2XYZ6U.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb2XYZ6U .modal-content,
.cid-uqGb2XYZ6U .modal-dialog {
  height: auto;
}
.cid-uqGb2XYZ6U .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb2XYZ6U .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb2XYZ6U .form-wrapper .mbr-form .form-group,
  .cid-uqGb2XYZ6U .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb2XYZ6U .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .mbr-text {
  text-align: left;
}
.cid-uqGb2XYZ6U .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb2XYZ6U .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb2XYZ6U .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb2XYZ6U .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb2XYZ6U .modal-open {
  overflow: hidden;
}
.cid-uqGb2XYZ6U .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb2XYZ6U .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb2XYZ6U .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb2XYZ6U .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb2XYZ6U .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb2XYZ6U .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb2XYZ6U .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb2XYZ6U .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2XYZ6U .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb2XYZ6U .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb2XYZ6U .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb2XYZ6U .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb2XYZ6U .modal-header .close:focus {
  outline: none;
}
.cid-uqGb2XYZ6U .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb2XYZ6U .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb2XYZ6U .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2XYZ6U .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb2XYZ6U .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb2XYZ6U .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb2XYZ6U .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb2XYZ6U .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb2XYZ6U .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb2XYZ6U .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb2XYZ6U .modal-lg,
  .cid-uqGb2XYZ6U .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb2XYZ6U .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb2XYZ6U .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb2XYZ6U .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb2XYZ6U .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb2XYZ6U .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-uqGb2XYZ6U .mbr-section-btn {
  margin: 0;
}
.cid-uqGb2XYZ6U .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb3zWMzl.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb3zWMzl.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb3zWMzl.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb3zWMzl .modal-content,
.cid-uqGb3zWMzl .modal-dialog {
  height: auto;
}
.cid-uqGb3zWMzl .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb3zWMzl .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb3zWMzl .form-wrapper .mbr-form .form-group,
  .cid-uqGb3zWMzl .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb3zWMzl .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .mbr-text {
  text-align: left;
}
.cid-uqGb3zWMzl .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb3zWMzl .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb3zWMzl .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb3zWMzl .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb3zWMzl .modal-open {
  overflow: hidden;
}
.cid-uqGb3zWMzl .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb3zWMzl .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb3zWMzl .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb3zWMzl .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb3zWMzl .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb3zWMzl .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb3zWMzl .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb3zWMzl .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb3zWMzl .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb3zWMzl .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb3zWMzl .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb3zWMzl .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb3zWMzl .modal-header .close:focus {
  outline: none;
}
.cid-uqGb3zWMzl .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb3zWMzl .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb3zWMzl .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb3zWMzl .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb3zWMzl .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb3zWMzl .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb3zWMzl .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb3zWMzl .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb3zWMzl .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb3zWMzl .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb3zWMzl .modal-lg,
  .cid-uqGb3zWMzl .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb3zWMzl .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb3zWMzl .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb3zWMzl .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb3zWMzl .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb3zWMzl .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-uqGb3zWMzl .mbr-section-btn {
  margin: 0;
}
.cid-uqGb3zWMzl .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb4bQ2wL.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb4bQ2wL.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb4bQ2wL.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb4bQ2wL .modal-content,
.cid-uqGb4bQ2wL .modal-dialog {
  height: auto;
}
.cid-uqGb4bQ2wL .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb4bQ2wL .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb4bQ2wL .form-wrapper .mbr-form .form-group,
  .cid-uqGb4bQ2wL .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb4bQ2wL .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .mbr-text {
  text-align: left;
}
.cid-uqGb4bQ2wL .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb4bQ2wL .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb4bQ2wL .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb4bQ2wL .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb4bQ2wL .modal-open {
  overflow: hidden;
}
.cid-uqGb4bQ2wL .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb4bQ2wL .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb4bQ2wL .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb4bQ2wL .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb4bQ2wL .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb4bQ2wL .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb4bQ2wL .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb4bQ2wL .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4bQ2wL .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb4bQ2wL .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb4bQ2wL .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb4bQ2wL .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb4bQ2wL .modal-header .close:focus {
  outline: none;
}
.cid-uqGb4bQ2wL .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb4bQ2wL .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb4bQ2wL .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4bQ2wL .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4bQ2wL .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb4bQ2wL .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb4bQ2wL .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb4bQ2wL .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb4bQ2wL .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb4bQ2wL .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb4bQ2wL .modal-lg,
  .cid-uqGb4bQ2wL .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb4bQ2wL .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb4bQ2wL .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb4bQ2wL .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb4bQ2wL .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb4bQ2wL .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-uqGb4bQ2wL .mbr-section-btn {
  margin: 0;
}
.cid-uqGb4bQ2wL .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqGb4PDm4r.popup-builder {
  background-color: #ffffff;
}
.cid-uqGb4PDm4r.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqGb4PDm4r.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqGb4PDm4r .modal-content,
.cid-uqGb4PDm4r .modal-dialog {
  height: auto;
}
.cid-uqGb4PDm4r .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqGb4PDm4r .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqGb4PDm4r .form-wrapper .mbr-form .form-group,
  .cid-uqGb4PDm4r .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqGb4PDm4r .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .mbr-text {
  text-align: left;
}
.cid-uqGb4PDm4r .pt-0 {
  padding-top: 0 !important;
}
.cid-uqGb4PDm4r .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqGb4PDm4r .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqGb4PDm4r .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqGb4PDm4r .modal-open {
  overflow: hidden;
}
.cid-uqGb4PDm4r .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqGb4PDm4r .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqGb4PDm4r .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqGb4PDm4r .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqGb4PDm4r .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqGb4PDm4r .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqGb4PDm4r .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqGb4PDm4r .modal-backdrop.show {
  opacity: .5;
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4PDm4r .modal-header {
    padding: 1rem;
  }
}
.cid-uqGb4PDm4r .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqGb4PDm4r .modal-header .close svg {
  fill: #353535;
}
.cid-uqGb4PDm4r .modal-header .close:hover {
  opacity: 1;
}
.cid-uqGb4PDm4r .modal-header .close:focus {
  outline: none;
}
.cid-uqGb4PDm4r .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqGb4PDm4r .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqGb4PDm4r .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4PDm4r .modal-body {
    padding: 1rem;
  }
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqGb4PDm4r .modal-footer {
    padding: 1rem;
  }
}
.cid-uqGb4PDm4r .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqGb4PDm4r .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqGb4PDm4r .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqGb4PDm4r .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqGb4PDm4r .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqGb4PDm4r .modal-lg,
  .cid-uqGb4PDm4r .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqGb4PDm4r .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqGb4PDm4r .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .form-group {
  margin-bottom: 1rem;
}
.cid-uqGb4PDm4r .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqGb4PDm4r .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqGb4PDm4r .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-uqGb4PDm4r .mbr-section-btn {
  margin: 0;
}
.cid-uqGb4PDm4r .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqTfquSsY9.popup-builder {
  background-color: #ffffff;
}
.cid-uqTfquSsY9.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqTfquSsY9.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqTfquSsY9 .modal-content,
.cid-uqTfquSsY9 .modal-dialog {
  height: auto;
}
.cid-uqTfquSsY9 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqTfquSsY9 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqTfquSsY9 .form-wrapper .mbr-form .form-group,
  .cid-uqTfquSsY9 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqTfquSsY9 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .mbr-text {
  text-align: left;
}
.cid-uqTfquSsY9 .pt-0 {
  padding-top: 0 !important;
}
.cid-uqTfquSsY9 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqTfquSsY9 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqTfquSsY9 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqTfquSsY9 .modal-open {
  overflow: hidden;
}
.cid-uqTfquSsY9 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqTfquSsY9 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqTfquSsY9 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqTfquSsY9 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqTfquSsY9 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqTfquSsY9 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqTfquSsY9 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqTfquSsY9 .modal-backdrop.show {
  opacity: .5;
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqTfquSsY9 .modal-header {
    padding: 1rem;
  }
}
.cid-uqTfquSsY9 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqTfquSsY9 .modal-header .close svg {
  fill: #353535;
}
.cid-uqTfquSsY9 .modal-header .close:hover {
  opacity: 1;
}
.cid-uqTfquSsY9 .modal-header .close:focus {
  outline: none;
}
.cid-uqTfquSsY9 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqTfquSsY9 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqTfquSsY9 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqTfquSsY9 .modal-body {
    padding: 1rem;
  }
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqTfquSsY9 .modal-footer {
    padding: 1rem;
  }
}
.cid-uqTfquSsY9 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqTfquSsY9 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqTfquSsY9 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqTfquSsY9 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqTfquSsY9 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqTfquSsY9 .modal-lg,
  .cid-uqTfquSsY9 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqTfquSsY9 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqTfquSsY9 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .form-group {
  margin-bottom: 1rem;
}
.cid-uqTfquSsY9 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqTfquSsY9 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqTfquSsY9 .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-uqTfquSsY9 .mbr-section-btn {
  margin: 0;
}
.cid-uqTfquSsY9 .mbr-section-btn .btn {
  margin: 0;
}
.cid-uqI6fae2Hg.popup-builder {
  background-color: #ffffff;
}
.cid-uqI6fae2Hg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uqI6fae2Hg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uqI6fae2Hg .modal-content,
.cid-uqI6fae2Hg .modal-dialog {
  height: auto;
}
.cid-uqI6fae2Hg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uqI6fae2Hg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uqI6fae2Hg .form-wrapper .mbr-form .form-group,
  .cid-uqI6fae2Hg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uqI6fae2Hg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .mbr-text {
  text-align: left;
}
.cid-uqI6fae2Hg .pt-0 {
  padding-top: 0 !important;
}
.cid-uqI6fae2Hg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uqI6fae2Hg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uqI6fae2Hg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uqI6fae2Hg .modal-open {
  overflow: hidden;
}
.cid-uqI6fae2Hg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uqI6fae2Hg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uqI6fae2Hg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uqI6fae2Hg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uqI6fae2Hg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uqI6fae2Hg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uqI6fae2Hg .modal-backdrop.fade {
  opacity: 0;
}
.cid-uqI6fae2Hg .modal-backdrop.show {
  opacity: .5;
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uqI6fae2Hg .modal-header {
    padding: 1rem;
  }
}
.cid-uqI6fae2Hg .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uqI6fae2Hg .modal-header .close svg {
  fill: #353535;
}
.cid-uqI6fae2Hg .modal-header .close:hover {
  opacity: 1;
}
.cid-uqI6fae2Hg .modal-header .close:focus {
  outline: none;
}
.cid-uqI6fae2Hg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uqI6fae2Hg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uqI6fae2Hg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqI6fae2Hg .modal-body {
    padding: 1rem;
  }
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uqI6fae2Hg .modal-footer {
    padding: 1rem;
  }
}
.cid-uqI6fae2Hg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uqI6fae2Hg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uqI6fae2Hg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uqI6fae2Hg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uqI6fae2Hg .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uqI6fae2Hg .modal-lg,
  .cid-uqI6fae2Hg .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uqI6fae2Hg .modal-xl {
    max-width: 1140px;
  }
}
.cid-uqI6fae2Hg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .form-group {
  margin-bottom: 1rem;
}
.cid-uqI6fae2Hg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uqI6fae2Hg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uqI6fae2Hg .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-uqI6fae2Hg .mbr-section-btn {
  margin: 0;
}
.cid-uqI6fae2Hg .mbr-section-btn .btn {
  margin: 0;
}
.cid-urgin0rANy.popup-builder {
  background-color: #ffffff;
}
.cid-urgin0rANy.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urgin0rANy.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urgin0rANy .modal-content,
.cid-urgin0rANy .modal-dialog {
  height: auto;
}
.cid-urgin0rANy .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urgin0rANy .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urgin0rANy .form-wrapper .mbr-form .form-group,
  .cid-urgin0rANy .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urgin0rANy .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urgin0rANy .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-urgin0rANy .mbr-text {
  text-align: left;
}
.cid-urgin0rANy .pt-0 {
  padding-top: 0 !important;
}
.cid-urgin0rANy .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urgin0rANy .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urgin0rANy .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urgin0rANy .modal-open {
  overflow: hidden;
}
.cid-urgin0rANy .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urgin0rANy .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urgin0rANy .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urgin0rANy .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-urgin0rANy .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urgin0rANy .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urgin0rANy .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urgin0rANy .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-urgin0rANy .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urgin0rANy .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urgin0rANy .modal-backdrop.fade {
  opacity: 0;
}
.cid-urgin0rANy .modal-backdrop.show {
  opacity: .5;
}
.cid-urgin0rANy .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-urgin0rANy .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgin0rANy .modal-header {
    padding: 1rem;
  }
}
.cid-urgin0rANy .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urgin0rANy .modal-header .close svg {
  fill: #353535;
}
.cid-urgin0rANy .modal-header .close:hover {
  opacity: 1;
}
.cid-urgin0rANy .modal-header .close:focus {
  outline: none;
}
.cid-urgin0rANy .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-urgin0rANy .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urgin0rANy .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urgin0rANy .modal-body {
    padding: 1rem;
  }
}
.cid-urgin0rANy .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-urgin0rANy .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urgin0rANy .modal-footer {
    padding: 1rem;
  }
}
.cid-urgin0rANy .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urgin0rANy .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urgin0rANy .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urgin0rANy .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urgin0rANy .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urgin0rANy .modal-lg,
  .cid-urgin0rANy .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urgin0rANy .modal-xl {
    max-width: 1140px;
  }
}
.cid-urgin0rANy .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urgin0rANy .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-urgin0rANy .form-group {
  margin-bottom: 1rem;
}
.cid-urgin0rANy .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urgin0rANy .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urgin0rANy .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-urgin0rANy .mbr-section-btn {
  margin: 0;
}
.cid-urgin0rANy .mbr-section-btn .btn {
  margin: 0;
}
.cid-urgizYUNIs.popup-builder {
  background-color: #ffffff;
}
.cid-urgizYUNIs.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-urgizYUNIs.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-urgizYUNIs .modal-content,
.cid-urgizYUNIs .modal-dialog {
  height: auto;
}
.cid-urgizYUNIs .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-urgizYUNIs .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-urgizYUNIs .form-wrapper .mbr-form .form-group,
  .cid-urgizYUNIs .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-urgizYUNIs .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-urgizYUNIs .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-urgizYUNIs .mbr-text {
  text-align: left;
}
.cid-urgizYUNIs .pt-0 {
  padding-top: 0 !important;
}
.cid-urgizYUNIs .pb-0 {
  padding-bottom: 0 !important;
}
.cid-urgizYUNIs .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-urgizYUNIs .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-urgizYUNIs .modal-open {
  overflow: hidden;
}
.cid-urgizYUNIs .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-urgizYUNIs .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-urgizYUNIs .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-urgizYUNIs .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-urgizYUNIs .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-urgizYUNIs .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-urgizYUNIs .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-urgizYUNIs .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-urgizYUNIs .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-urgizYUNIs .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-urgizYUNIs .modal-backdrop.fade {
  opacity: 0;
}
.cid-urgizYUNIs .modal-backdrop.show {
  opacity: .5;
}
.cid-urgizYUNIs .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-urgizYUNIs .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-urgizYUNIs .modal-header {
    padding: 1rem;
  }
}
.cid-urgizYUNIs .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-urgizYUNIs .modal-header .close svg {
  fill: #353535;
}
.cid-urgizYUNIs .modal-header .close:hover {
  opacity: 1;
}
.cid-urgizYUNIs .modal-header .close:focus {
  outline: none;
}
.cid-urgizYUNIs .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-urgizYUNIs .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-urgizYUNIs .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urgizYUNIs .modal-body {
    padding: 1rem;
  }
}
.cid-urgizYUNIs .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-urgizYUNIs .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urgizYUNIs .modal-footer {
    padding: 1rem;
  }
}
.cid-urgizYUNIs .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-urgizYUNIs .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-urgizYUNIs .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-urgizYUNIs .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-urgizYUNIs .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-urgizYUNIs .modal-lg,
  .cid-urgizYUNIs .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-urgizYUNIs .modal-xl {
    max-width: 1140px;
  }
}
.cid-urgizYUNIs .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-urgizYUNIs .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-urgizYUNIs .form-group {
  margin-bottom: 1rem;
}
.cid-urgizYUNIs .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-urgizYUNIs .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-urgizYUNIs .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-urgizYUNIs .mbr-section-btn {
  margin: 0;
}
.cid-urgizYUNIs .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujfbWmekdm {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujfbWmekdm .carousel-item {
  margin-top: 1rem;
  justify-content: center;
}
.cid-ujfbWmekdm .carousel-item > div {
  width: 100%;
}
.cid-ujfbWmekdm .carousel-item.active,
.cid-ujfbWmekdm .carousel-item-next,
.cid-ujfbWmekdm .carousel-item-prev {
  display: flex;
}
.cid-ujfbWmekdm .carousel-controls a {
  transition: opacity .5s;
  font-size: 1.2rem;
}
.cid-ujfbWmekdm .carousel-controls a span {
  padding: 15px;
  border-radius: 50%;
  opacity: .9;
}
.cid-ujfbWmekdm .carousel-controls a:hover span {
  opacity: 1;
}
@media (min-width: 768px) {
  .cid-ujfbWmekdm .carousel-controls a {
    width: 5%;
  }
}
.cid-ujfbWmekdm .mbr-section-subtitle {
  margin-top: 2rem;
  margin-bottom: 0;
  color: #70747f;
}
.cid-ujfbWmekdm img {
  width: 100%;
  border-radius: 30px;
}
.cid-ujfbWmekdm .title-block {
  margin-top: 3rem;
}
.cid-ujfbWmekdm .signature {
  font-weight: 900;
  color: #12265a;
}
.cid-ujfbWmekdm .carousel-indicators li {
  background-color: #353535;
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
}
.cid-ujfbWmekdm .carousel-indicators {
  position: absolute;
  margin-top: 2rem;
  bottom: 0rem;
}
.cid-ujfbWmekdm ol {
  margin-bottom: 0;
}
.cid-ujfbWmekdm .carousel {
  display: flex;
  overflow: hidden;
  padding-bottom: 3rem;
}
.cid-ujfbWmekdm .container-fluid {
  max-width: 1200px;
  padding: 0 0.5rem;
}
.cid-ujfbWmekdm .desk {
  color: #45b3df;
  font-weight: 900;
}
.cid-ujfbWmekdm a {
  color: #ffffff;
  line-height: 1.5;
}
.cid-ujfbWmekdm .social-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.cid-ujfbWmekdm .soc-item {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.25rem 0.3rem;
  z-index: 1;
  background: #edb5bf;
  border-radius: 50%;
  position: relative;
  margin-right: 0.6rem;
}
.cid-ujfbWmekdm .soc-item span {
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s;
}
.cid-ujfbWmekdm .items {
  margin-right: 1rem;
  margin-bottom: 0;
  color: #12265a;
}
.cid-ujfbWmekdm .soc-item::after {
  z-index: -1;
}
.cid-ujfbWmekdm .soc-item1 {
  background-color: #30aceb;
  color: #30aceb;
}
.cid-ujfbWmekdm .soc-item2 {
  background-color: #e8a0ad;
  color: #e8a0ad;
}
.cid-ujfbWmekdm .soc-item3 {
  background-color: #ffe67b;
  color: #ffe67b;
}
.cid-ujfbWmekdm .wrapper-img {
  position: relative;
}
@media (max-width: 767px) {
  .cid-ujfbWmekdm {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .cid-ujfbWmekdm .col-md-3 {
    padding: 0;
  }
  .cid-ujfbWmekdm .container-fluid {
    padding: 0 1rem;
  }
}
.cid-ujfbWmekdm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujfbWmekdm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujfbWmekdm .container-fluid,
.cid-ujfbWmekdm .mbr-section-title {
  color: #ffe161;
}
.cid-uo2L6bHyIP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo2L6bHyIP H1 {
  color: #57468b;
  text-align: center;
}
.cid-uo2L6bHyIP .mbr-text,
.cid-uo2L6bHyIP .mbr-section-btn {
  color: #716c80;
}
.cid-uo2L6bHyIP H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uo2KQixYcC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo2KQixYcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo2KQixYcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo2KQixYcC .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uo2KQixYcC .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uo2KQixYcC .container {
    padding: 0 25px;
  }
}
.cid-uo2KQixYcC .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uo2KQixYcC .row {
    padding-top: 45px;
  }
}
.cid-uo2KQixYcC .item:hover .item-wrapper .item-img img,
.cid-uo2KQixYcC .item:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-uo2KQixYcC .item .item-wrapper {
  padding: 40px 0 10px 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uo2KQixYcC .item .item-wrapper {
    padding: 0 0 20px 0;
  }
}
.cid-uo2KQixYcC .item .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 20px;
}
.cid-uo2KQixYcC .item .item-wrapper .item-img img {
  height: auto;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uo2KQixYcC .border-wrap {
  height: 2px;
  background-color: #3d3d3d;
}
@media (max-width: 992px) {
  .cid-uo2KQixYcC .border-wrap {
    margin-top: 45px;
  }
}
.cid-uo31bcMTkj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo31bcMTkj H1 {
  color: #57468b;
  text-align: center;
}
.cid-uo31bcMTkj .mbr-text,
.cid-uo31bcMTkj .mbr-section-btn {
  color: #716c80;
}
.cid-uo31bcMTkj H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uo31bWChzC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo31bWChzC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo31bWChzC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo31bWChzC .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uo31bWChzC .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uo31bWChzC .container {
    padding: 0 25px;
  }
}
.cid-uo31bWChzC .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uo31bWChzC .row {
    padding-top: 45px;
  }
}
.cid-uo31bWChzC .item:hover .item-wrapper .item-img img,
.cid-uo31bWChzC .item:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-uo31bWChzC .item .item-wrapper {
  padding: 40px 0 10px 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uo31bWChzC .item .item-wrapper {
    padding: 0 0 20px 0;
  }
}
.cid-uo31bWChzC .item .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 20px;
}
.cid-uo31bWChzC .item .item-wrapper .item-img img {
  height: auto;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uo31bWChzC .border-wrap {
  height: 2px;
  background-color: #3d3d3d;
}
@media (max-width: 992px) {
  .cid-uo31bWChzC .border-wrap {
    margin-top: 45px;
  }
}
.cid-uo31cHlH50 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo31cHlH50 H1 {
  color: #57468b;
  text-align: center;
}
.cid-uo31cHlH50 .mbr-text,
.cid-uo31cHlH50 .mbr-section-btn {
  color: #716c80;
}
.cid-uo31cHlH50 H3 {
  color: #ffe161;
  text-align: center;
}
.cid-uo31dfyySs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uo31dfyySs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uo31dfyySs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uo31dfyySs .container-fluid {
  padding: 0 45px;
}
@media (max-width: 992px) {
  .cid-uo31dfyySs .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uo31dfyySs .container {
    padding: 0 25px;
  }
}
.cid-uo31dfyySs .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uo31dfyySs .row {
    padding-top: 45px;
  }
}
.cid-uo31dfyySs .item:hover .item-wrapper .item-img img,
.cid-uo31dfyySs .item:focus .item-wrapper .item-img img {
  transform: scale(1.05) translateX(2%);
}
.cid-uo31dfyySs .item .item-wrapper {
  padding: 40px 0 10px 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uo31dfyySs .item .item-wrapper {
    padding: 0 0 20px 0;
  }
}
.cid-uo31dfyySs .item .item-wrapper .item-img {
  overflow: hidden;
  border-radius: 20px;
}
.cid-uo31dfyySs .item .item-wrapper .item-img img {
  height: auto;
  object-fit: cover;
  transform: scale(1.05) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-uo31dfyySs .border-wrap {
  height: 2px;
  background-color: #3d3d3d;
}
@media (max-width: 992px) {
  .cid-uo31dfyySs .border-wrap {
    margin-top: 45px;
  }
}
.cid-uqFn0Q75pW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqFn0Q75pW .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-uqFn0Q75pW .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uqFn0Q75pW .wrapper {
    padding: 1rem 0rem;
  }
}
.cid-uqFn0Q75pW img,
.cid-uqFn0Q75pW .item-img {
  width: 100%;
}
.cid-uqFn0Q75pW .item:focus,
.cid-uqFn0Q75pW span:focus {
  outline: none;
}
.cid-uqFn0Q75pW .item {
  cursor: pointer;
  margin-bottom: 1rem;
}
.cid-uqFn0Q75pW .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uqFn0Q75pW img {
  border-radius: 30px;
}
.cid-uqFn0Q75pW .mbr-section-title {
  text-align: center;
  color: #ffe161;
}
.cid-uqFn0Q75pW .mbr-section-subtitle {
  text-align: center;
  color: #e43f3f;
}
.cid-uqFn0Q75pW .item-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-uqFn0Q75pW .mbr-text,
.cid-uqFn0Q75pW .mbr-section-btn {
  color: #ffffff;
  width: 350px;
  margin: auto;
}
.cid-uqFuAWJFvT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqFuAWJFvT .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-uqFuAWJFvT .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uqFuAWJFvT .wrapper {
    padding: 1rem 0rem;
  }
}
.cid-uqFuAWJFvT img,
.cid-uqFuAWJFvT .item-img {
  width: 100%;
}
.cid-uqFuAWJFvT .item:focus,
.cid-uqFuAWJFvT span:focus {
  outline: none;
}
.cid-uqFuAWJFvT .item {
  cursor: pointer;
  margin-bottom: 1rem;
}
.cid-uqFuAWJFvT .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uqFuAWJFvT img {
  border-radius: 30px;
}
.cid-uqFuAWJFvT .mbr-section-title {
  text-align: center;
  color: #ffe161;
}
.cid-uqFuAWJFvT .mbr-section-subtitle {
  text-align: center;
  color: #e43f3f;
}
.cid-uqFuAWJFvT .item-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-uqFuAWJFvT .mbr-text,
.cid-uqFuAWJFvT .mbr-section-btn {
  color: #ffffff;
  width: 350px;
  margin: auto;
}
.cid-uqFuAWJFvT .remark {
  text-align: center;
  color: grey;
  font-size: 0.8rem;
}
.cid-uqHtbzEg0w {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqHtbzEg0w .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-uqHtbzEg0w .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uqHtbzEg0w .wrapper {
    padding: 1rem 0rem;
  }
}
.cid-uqHtbzEg0w img,
.cid-uqHtbzEg0w .item-img {
  width: 100%;
}
.cid-uqHtbzEg0w .item:focus,
.cid-uqHtbzEg0w span:focus {
  outline: none;
}
.cid-uqHtbzEg0w .item {
  cursor: pointer;
  margin-bottom: 1rem;
}
.cid-uqHtbzEg0w .item-wrapper {
  position: relative;
  border-radius: 20px;
  background: inherit;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uqHtbzEg0w img {
  border-radius: 30px;
}
.cid-uqHtbzEg0w .mbr-section-title {
  text-align: center;
  color: #ffe161;
}
.cid-uqHtbzEg0w .mbr-section-subtitle {
  text-align: center;
  color: #e43f3f;
}
.cid-uqHtbzEg0w .item-title {
  color: #bbbbbb;
  text-align: center;
}
.cid-uqHtbzEg0w .mbr-text,
.cid-uqHtbzEg0w .mbr-section-btn {
  color: #ffffff;
  width: 350px;
  margin: auto;
}
.cid-ui0FJnRfWE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
@media (min-width: 992px) {
  .cid-ui0FJnRfWE .text-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1000px) {
  .cid-ui0FJnRfWE .text-wrapper {
    padding: 2rem 0;
  }
}
.cid-ui0FJnRfWE .image-wrapper img {
  width: 100%;
  object-fit: cover;
  align-items: center;
}
.cid-ui0FJnRfWE .title {
  font-weight: 700;
  color: #ffffff;
}
.cid-ui0FJnRfWE .subtitle {
  padding-top: 11px;
  font-weight: 500;
}
.cid-ui0FJnRfWE .top {
  padding-top: 55px;
}
.cid-ui0FJnRfWE .number-left {
  padding-top: 4px;
  text-align: left;
  font-weight: 700;
  color: #ffe161;
}
@media (max-width: 1000px) {
  .cid-ui0FJnRfWE .number-left {
    padding-top: 0.3em;
  }
}
.cid-ui0FJnRfWE .number-right {
  padding-top: 4px;
  text-align: right;
  font-weight: 700;
  color: #ffe161;
}
@media (max-width: 1000px) {
  .cid-ui0FJnRfWE .number-right {
    padding-top: 0.3em;
  }
}
.cid-ui0FJnRfWE .row.justify-content-between {
  margin-bottom: 3px;
  margin: 0;
}
.cid-ui0FJnRfWE .title-left {
  text-align: left;
  color: #ffe161;
}
.cid-ui0FJnRfWE .subtitle-left {
  text-align: left;
  color: #ffffff;
}
.cid-ui0FJnRfWE .subtitle-right {
  text-align: left;
  color: #ffffff;
}
.cid-ui0FJnRfWE .title-right {
  color: #ffe161;
}
@media (max-width: 770px) {
  .cid-ui0FJnRfWE .bottom {
    margin-bottom: 55px;
  }
}
.cid-ui0FJnRfWE .small-screen {
  display: none;
}
.cid-ui0FJnRfWE .large-screen {
  display: block;
}
@media (max-width: 900px) {
  .cid-ui0FJnRfWE .small-screen {
    display: block;
  }
  .cid-ui0FJnRfWE .large-screen {
    display: none;
  }
}
.cid-ui0FJnRfWE .padding-2 {
  padding-left: 4px;
  padding-right: 4px;
}
.cid-uj577EAKhS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uj577EAKhS .mbr-overlay {
  background: #000000;
  opacity: 0.6;
}
.cid-uj577EAKhS .item-wrapper {
  position: relative;
}
.cid-uj577EAKhS .slide-content {
  position: relative;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-uj577EAKhS .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 596px;
  margin: 1rem !important;
}
.cid-uj577EAKhS .embla__button--next,
.cid-uj577EAKhS .embla__button--prev {
  display: flex;
}
.cid-uj577EAKhS .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 14px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: transparent;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uj577EAKhS .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uj577EAKhS .embla__button.embla__button--prev {
  left: 0;
  margin-left: -4rem;
}
.cid-uj577EAKhS .embla__button.embla__button--next {
  right: 0;
  margin-right: -4rem;
}
.cid-uj577EAKhS .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uj577EAKhS .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uj577EAKhS .embla {
  position: relative;
  width: 90%;
  margin: auto;
}
.cid-uj577EAKhS .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-uj577EAKhS .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uj577EAKhS .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uj577EAKhS .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uj577EAKhS .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 0;
  display: flex;
  justify-content: center;
  height: auto;
  width: auto;
}
.cid-uj577EAKhS img {
  width: 300px;
  height: auto;
}
.cid-uj577EAKhS .embla__viewport.container {
  overflow: hidden;
}
@media (max-width: 576px) {
  .cid-uj577EAKhS .embla {
    width: 80%;
  }
  .cid-uj577EAKhS .embla__slide {
    min-width: 250%;
  }
}
.cid-ujedxKjRl0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujedxKjRl0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujedxKjRl0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujedxKjRl0 .container,
.cid-ujedxKjRl0 .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .container,
  .cid-ujedxKjRl0 .container-fluid {
    padding: 0 20px;
  }
}
.cid-ujedxKjRl0 .row {
  position: relative;
  padding: 50px 20px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #fafafa;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .row {
    padding: 50px 10px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-ujedxKjRl0 .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujedxKjRl0 .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-ujedxKjRl0 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujedxKjRl0 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ujedxKjRl0 .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-ujedxKjRl0 .address-wrapper {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .address-wrapper {
    display: block;
  }
}
.cid-ujedxKjRl0 .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ujedxKjRl0 .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-ujedxKjRl0 .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-ujedxKjRl0 .links-wrapper {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .links-wrapper {
    display: block;
  }
}
.cid-ujedxKjRl0 .links-wrapper .links-wrap {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-ujedxKjRl0 .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-ujedxKjRl0 .links-wrapper .links-wrap a:hover .mbr-email,
.cid-ujedxKjRl0 .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-ujedxKjRl0 .links-wrapper .links-wrap a .mbr-email,
.cid-ujedxKjRl0 .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-ujedxKjRl0 .mbr-section-title {
  color: #3d4045;
}
.cid-ujedxKjRl0 .mbr-section-subtitle,
.cid-ujedxKjRl0 .mbr-iconfont {
  color: #3d4045;
}
.cid-ujedxKjRl0 .mbr-email {
  color: #3d4045;
}
.cid-ujedxKjRl0 .mbr-phone {
  color: #3d4045;
}
.cid-ujedxKjRl0 .contact-container {
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-ujedxKjRl0 .contact-container {
    width: 100%;
    margin-bottom: 0px;
  }
}
.cid-ujedxKjRl0 .contact-container .phone-container {
  padding: 16px 25px;
  background-color: #3d4045;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-ujedxKjRl0 .contact-container .phone-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-ujedxKjRl0 .contact-container .email-container {
  padding: 16px 25px;
  background-color: #3d4045;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 16px;
}
@media (max-width: 767px) {
  .cid-ujedxKjRl0 .contact-container .email-container {
    width: 100%;
    margin-right: 0;
  }
}
.cid-ujedxKjRl0 .contact-text {
  color: #ffffff;
}
.cid-ujeBq2WTFA {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujeBq2WTFA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujeBq2WTFA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujeBq2WTFA .col-title {
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .col-title {
    margin-bottom: 40px;
  }
}
.cid-ujeBq2WTFA .mbr-section-title {
  color: #ffe161;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .mbr-section-title {
    text-align: center !important;
  }
}
.cid-ujeBq2WTFA .mbr-section-subtitle {
  color: #5F6AD4;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .mbr-section-subtitle {
    margin-top: 16px;
    text-align: center !important;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ujeBq2WTFA .accordion-row {
    margin: 0 -10px !important;
  }
}
.cid-ujeBq2WTFA .accordion-title-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .accordion-title-container {
    display: none;
  }
}
.cid-ujeBq2WTFA .accordion-title {
  padding: 0 20px;
  width: 50%;
  color: #5F6AD4;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ujeBq2WTFA .accordion-title {
    padding: 0 10px;
  }
}
.cid-ujeBq2WTFA .panel-group {
  display: flex;
  flex-wrap: wrap;
  border: none;
  padding: 0 !important;
}
.cid-ujeBq2WTFA .card {
  width: 50%;
  padding: 0 20px !important;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .cid-ujeBq2WTFA .card {
    padding: 0 10px !important;
  }
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .card {
    width: 100%;
  }
}
.cid-ujeBq2WTFA .card-border {
  height: 2px;
  width: 100%;
  background-color: #dfdfd8;
  margin-top: auto;
}
.cid-ujeBq2WTFA .card-border-top {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ujeBq2WTFA .card-border-top2 {
    display: none;
  }
}
.cid-ujeBq2WTFA .mbr-iconfont {
  font-size: 24px !important;
  font-family: 'Moririse2' !important;
  color: #ffffff;
  margin-left: 1rem;
  padding: 8px;
  background-color: #5f6ad4;
  transition: all ease-in-out 0.3s;
  border-radius: 50%;
}
.cid-ujeBq2WTFA .card-header {
  border-bottom: none !important;
  padding: 15px 0 !important;
}
.cid-ujeBq2WTFA .card-header:hover .mbr-iconfont {
  background-color: #cecec1 !important;
}
.cid-ujeBq2WTFA .card-header .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-ujeBq2WTFA .panel-body {
  padding-bottom: 20px;
}
.cid-ujeBq2WTFA .panel-text {
  margin-bottom: 20px !important;
  color: #ffffff;
  text-align: left;
}
.cid-ujeBq2WTFA .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ujeBq2WTFA .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ujeBq2WTFA .panel-title-edit {
  color: #bed3f9;
}
.cid-tJYCFQJlkw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
#custom-html-b9 .floating-button {
  position: fixed;
  width: 120px;
  height: 120px;
  bottom: 30px;
  /*離底部多遠*/
  right: 25px;
  /*離右邊多遠*/
  z-index: 100;
}
#custom-html-b9 .floating-button-image {
  width: 120px;
  height: 120px;
}
@media (max-width: 576px) {
  #custom-html-b9 {
    /*小螢幕*/
  }
  #custom-html-b9 .floating-button {
    width: 60px;
    height: 60px;
    bottom: 15px;
    /*離底部多遠*/
    right: 15px;
    /*離右邊多遠*/
  }
  #custom-html-b9 .floating-button-image {
    width: 60px;
    height: 60px;
  }
}
.cid-ujVhn77Xpw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-ujVhn77Xpw nav.navbar {
  position: fixed;
}
.cid-ujVhn77Xpw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujVhn77Xpw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujVhn77Xpw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujVhn77Xpw .dropdown-item:hover,
.cid-ujVhn77Xpw .dropdown-item:focus {
  background: #000000;
  color: white;
  font-weight: bold;
}
.cid-ujVhn77Xpw .dropdown-item:hover span {
  color: white;
}
.cid-ujVhn77Xpw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujVhn77Xpw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujVhn77Xpw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujVhn77Xpw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujVhn77Xpw .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-ujVhn77Xpw .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujVhn77Xpw .container {
    flex-wrap: nowrap;
  }
}
.cid-ujVhn77Xpw .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujVhn77Xpw .dropdown-menu,
.cid-ujVhn77Xpw .navbar.opened {
  background: #000000 !important;
}
.cid-ujVhn77Xpw .nav-item:focus,
.cid-ujVhn77Xpw .nav-link:focus {
  outline: none;
}
.cid-ujVhn77Xpw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujVhn77Xpw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujVhn77Xpw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujVhn77Xpw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujVhn77Xpw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujVhn77Xpw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujVhn77Xpw .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
}
.cid-ujVhn77Xpw .navbar.opened {
  transition: all 0.3s;
}
.cid-ujVhn77Xpw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujVhn77Xpw .navbar .navbar-logo img {
  width: auto;
}
.cid-ujVhn77Xpw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujVhn77Xpw .navbar.collapsed {
  justify-content: center;
}
.cid-ujVhn77Xpw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujVhn77Xpw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujVhn77Xpw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ujVhn77Xpw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujVhn77Xpw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujVhn77Xpw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ujVhn77Xpw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujVhn77Xpw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujVhn77Xpw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujVhn77Xpw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujVhn77Xpw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujVhn77Xpw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujVhn77Xpw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujVhn77Xpw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ujVhn77Xpw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujVhn77Xpw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujVhn77Xpw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujVhn77Xpw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujVhn77Xpw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujVhn77Xpw .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujVhn77Xpw .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujVhn77Xpw .navbar.navbar-short {
  min-height: 60px;
}
.cid-ujVhn77Xpw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujVhn77Xpw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujVhn77Xpw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujVhn77Xpw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujVhn77Xpw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujVhn77Xpw .dropdown-item.active,
.cid-ujVhn77Xpw .dropdown-item:active {
  background-color: transparent;
}
.cid-ujVhn77Xpw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujVhn77Xpw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujVhn77Xpw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujVhn77Xpw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-ujVhn77Xpw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujVhn77Xpw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujVhn77Xpw ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujVhn77Xpw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujVhn77Xpw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujVhn77Xpw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe161;
}
.cid-ujVhn77Xpw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujVhn77Xpw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujVhn77Xpw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujVhn77Xpw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujVhn77Xpw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujVhn77Xpw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujVhn77Xpw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujVhn77Xpw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujVhn77Xpw .navbar-dropdown {
  position: fixed;
}
.cid-ujVhn77Xpw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujVhn77Xpw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujVhn77Xpw .navbar {
    height: 70px;
  }
  .cid-ujVhn77Xpw .navbar.opened {
    height: auto;
  }
  .cid-ujVhn77Xpw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujVhn7Nslf {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujVhn7Nslf .container {
  pointer-events: none;
  z-index: 1;
}
.cid-ujVhn7Nslf .subtitle__block,
.cid-ujVhn7Nslf .title__block,
.cid-ujVhn7Nslf .buttons__block {
  pointer-events: all;
}
.cid-ujVhn7Nslf .subtitle__block {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 18px;
}
.cid-ujVhn7Nslf .subtitle__block SPAN {
  color: #aa4dd4;
}
.cid-ujVhn7Nslf .mbr-section-subtitle {
  display: inline-block;
  color: #ffffff;
  text-align: center;
}
.cid-ujVhn7Nslf .mbr-section-title {
  margin-top: 25px;
  color: #ffffff;
}
.cid-ujVhn7Nslf .mbr-text {
  margin-top: 35px;
}
.cid-ujVhn7Nslf .inner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 33px;
}
.cid-ujVhn7Nslf .inner__buttons .mbr-section-btn {
  display: inline-block;
}
.cid-ujVhn7Nslf .inner__buttons .mbr-section-btn .btn-info {
  border: none !important;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(-135deg, #47b5ed 0%, rgba(71, 181, 237, 0.85) 100%) !important;
}
.cid-ujVhn7Nslf .inner__buttons .mbr-section-btn .btn-info:hover {
  border-color: transparent !important;
}
.cid-ujVhn7Nslf .inner__buttons .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 5px;
  vertical-align: -5px;
}
@media (max-width: 550px) {
  .cid-ujVhn7Nslf .inner__buttons .mbr-section-btn {
    width: 100%;
  }
}
.cid-ujVhn7Nslf .mbr-figure {
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-ujVhn7Nslf .mbr-figure:hover {
  color: #47b5ed;
  cursor: pointer;
}
.cid-ujVhn7Nslf .mbr-figure:hover .mbr-media {
  border-color: #47b5ed;
  color: #47b5ed;
}
@media (max-width: 575px) {
  .cid-ujVhn7Nslf .mbr-figure {
    margin: 0;
    margin-top: 10px;
    max-width: 350px;
    width: 100%;
  }
}
.cid-ujVhn7Nslf .mbr-media {
  display: inline-flex;
  color: #dbdbdb;
  align-items: center;
  justify-content: center;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease-in-out;
}
.cid-ujVhn7Nslf .mbr-media span {
  font-size: 22px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}
.cid-ujVhn7Nslf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-ujVhn7Nslf .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.cid-ujVhn7Nslf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ujVhn7Nslf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ujVhn7Nslf .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-ujVhn7Nslf a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-ujVhn7Nslf a.close:hover {
  color: #ffffff;
}
.cid-ujVhn7Nslf .animation__background .triangle {
  position: absolute;
  top: 13%;
  right: 44%;
  animation: rotatedHalf 40s infinite linear;
}
.cid-ujVhn7Nslf .animation__background .triangle2 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  animation: rotated 23s infinite linear;
  width: 55px;
  height: 55px;
}
.cid-ujVhn7Nslf .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #ffe161;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 36%;
  animation: animationOne 25s infinite linear;
}
.cid-ujVhn7Nslf .animation__background .circle2 {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #47b5ed;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: 8%;
  animation: animationTwo 27s infinite linear;
}
.cid-ujVhn7Nslf .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 30%;
  background: #aa4dd4;
  border-radius: 50%;
  animation: animationOne 21s infinite linear;
}
.cid-ujVhn7Nslf .animation__background .circle4 {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #649496;
  border-radius: 50%;
  bottom: 42%;
  left: 6%;
  animation: animationTwo 31s infinite linear;
}
.cid-ujVhn7Nslf .animation__background .circle5 {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #4d6d9a;
  border-radius: 50%;
  top: 12%;
  right: 6%;
  animation: animationTwo 35s infinite linear;
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-ujVhn7Nslf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujVhn7Nslf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujVhn7Nslf .row {
  position: relative;
}
.cid-ujVhn7Nslf .text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ujVhn7Nslf .text {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.cid-ujVhn7Nslf .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-ujVhn7Nslf .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-ujVhn7Nslf .box {
  display: inline-block;
}
.cid-ujVhn7Nslf .animation {
  animation-name: bounceIn;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-play-state: running;
  animation-delay: initial;
}
@keyframes rotate-keyframe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes move-object {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
.cid-ujVhW5G3a7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-ujVhW5G3a7 .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-ujVhW5G3a7 input,
.cid-ujVhW5G3a7 textarea,
.cid-ujVhW5G3a7 .jqselect {
  font-weight: 300 !important;
  border-radius: 0;
}
.cid-ujVhW5G3a7 textarea {
  min-height: 200px !important;
}
.cid-ujVhW5G3a7 H5 {
  text-align: center;
  color: #ffe161;
}
.cid-ujVhW5G3a7 H6 {
  text-align: center;
  color: #d58f76;
}
.cid-ujVhW5G3a7 LABEL {
  color: #dde8eb;
}
.cid-ujVhW5G3a7 P {
  color: #ffffff;
}
.cid-ujVhW5G3a7 .remind {
  color: #fffbc7;
}
.cid-ujVhnfUbHi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
#custom-html-bb .floating-button {
  position: fixed;
  width: 120px;
  height: 120px;
  bottom: 30px;
  /*離底部多遠*/
  right: 25px;
  /*離右邊多遠*/
  z-index: 100;
}
#custom-html-bb .floating-button-image {
  width: 120px;
  height: 120px;
}
@media (max-width: 576px) {
  #custom-html-bb {
    /*小螢幕*/
  }
  #custom-html-bb .floating-button {
    width: 60px;
    height: 60px;
    bottom: 15px;
    /*離底部多遠*/
    right: 15px;
    /*離右邊多遠*/
  }
  #custom-html-bb .floating-button-image {
    width: 60px;
    height: 60px;
  }
}
.cid-uqRC2SQESc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  z-index: 1000;
  width: 100%;
}
.cid-uqRC2SQESc nav.navbar {
  position: fixed;
}
.cid-uqRC2SQESc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqRC2SQESc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqRC2SQESc .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqRC2SQESc .dropdown-item:hover,
.cid-uqRC2SQESc .dropdown-item:focus {
  background: #000000;
  color: white;
  font-weight: bold;
}
.cid-uqRC2SQESc .dropdown-item:hover span {
  color: white;
}
.cid-uqRC2SQESc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqRC2SQESc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqRC2SQESc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqRC2SQESc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqRC2SQESc .nav-link {
  position: relative;
  font-weight: 500;
}
.cid-uqRC2SQESc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uqRC2SQESc .container {
    flex-wrap: nowrap;
  }
}
.cid-uqRC2SQESc .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqRC2SQESc .dropdown-menu,
.cid-uqRC2SQESc .navbar.opened {
  background: #000000 !important;
}
.cid-uqRC2SQESc .nav-item:focus,
.cid-uqRC2SQESc .nav-link:focus {
  outline: none;
}
.cid-uqRC2SQESc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqRC2SQESc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqRC2SQESc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqRC2SQESc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqRC2SQESc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqRC2SQESc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqRC2SQESc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
}
.cid-uqRC2SQESc .navbar.opened {
  transition: all 0.3s;
}
.cid-uqRC2SQESc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqRC2SQESc .navbar .navbar-logo img {
  width: auto;
}
.cid-uqRC2SQESc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uqRC2SQESc .navbar.collapsed {
  justify-content: center;
}
.cid-uqRC2SQESc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqRC2SQESc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqRC2SQESc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uqRC2SQESc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqRC2SQESc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqRC2SQESc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uqRC2SQESc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uqRC2SQESc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqRC2SQESc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqRC2SQESc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqRC2SQESc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqRC2SQESc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqRC2SQESc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqRC2SQESc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uqRC2SQESc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqRC2SQESc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqRC2SQESc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqRC2SQESc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqRC2SQESc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqRC2SQESc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uqRC2SQESc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uqRC2SQESc .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqRC2SQESc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqRC2SQESc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uqRC2SQESc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uqRC2SQESc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uqRC2SQESc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqRC2SQESc .dropdown-item.active,
.cid-uqRC2SQESc .dropdown-item:active {
  background-color: transparent;
}
.cid-uqRC2SQESc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqRC2SQESc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqRC2SQESc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqRC2SQESc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uqRC2SQESc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqRC2SQESc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqRC2SQESc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uqRC2SQESc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uqRC2SQESc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uqRC2SQESc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffe161;
}
.cid-uqRC2SQESc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqRC2SQESc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqRC2SQESc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uqRC2SQESc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uqRC2SQESc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqRC2SQESc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uqRC2SQESc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uqRC2SQESc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqRC2SQESc .navbar-dropdown {
  position: fixed;
}
.cid-uqRC2SQESc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqRC2SQESc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqRC2SQESc .navbar {
    height: 70px;
  }
  .cid-uqRC2SQESc .navbar.opened {
    height: auto;
  }
  .cid-uqRC2SQESc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqRC2TfHF1 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqRC2TfHF1 .container {
  pointer-events: none;
  z-index: 1;
}
.cid-uqRC2TfHF1 .subtitle__block,
.cid-uqRC2TfHF1 .title__block,
.cid-uqRC2TfHF1 .buttons__block {
  pointer-events: all;
}
.cid-uqRC2TfHF1 .subtitle__block {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #dbdbdb;
  line-height: 36px;
  padding: 0 20px;
  border-radius: 18px;
}
.cid-uqRC2TfHF1 .subtitle__block SPAN {
  color: #aa4dd4;
}
.cid-uqRC2TfHF1 .mbr-section-subtitle {
  display: inline-block;
  color: #ffffff;
  text-align: center;
}
.cid-uqRC2TfHF1 .mbr-section-title {
  margin-top: 25px;
  color: #ffffff;
}
.cid-uqRC2TfHF1 .mbr-text {
  margin-top: 35px;
}
.cid-uqRC2TfHF1 .inner__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 33px;
}
.cid-uqRC2TfHF1 .inner__buttons .mbr-section-btn {
  display: inline-block;
}
.cid-uqRC2TfHF1 .inner__buttons .mbr-section-btn .btn-info {
  border: none !important;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.25);
  background: linear-gradient(-135deg, #47b5ed 0%, rgba(71, 181, 237, 0.85) 100%) !important;
}
.cid-uqRC2TfHF1 .inner__buttons .mbr-section-btn .btn-info:hover {
  border-color: transparent !important;
}
.cid-uqRC2TfHF1 .inner__buttons .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 5px;
  vertical-align: -5px;
}
@media (max-width: 550px) {
  .cid-uqRC2TfHF1 .inner__buttons .mbr-section-btn {
    width: 100%;
  }
}
.cid-uqRC2TfHF1 .mbr-figure {
  display: inline-block;
  padding: 5px;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-uqRC2TfHF1 .mbr-figure:hover {
  color: #47b5ed;
  cursor: pointer;
}
.cid-uqRC2TfHF1 .mbr-figure:hover .mbr-media {
  border-color: #47b5ed;
  color: #47b5ed;
}
@media (max-width: 575px) {
  .cid-uqRC2TfHF1 .mbr-figure {
    margin: 0;
    margin-top: 10px;
    max-width: 350px;
    width: 100%;
  }
}
.cid-uqRC2TfHF1 .mbr-media {
  display: inline-flex;
  color: #dbdbdb;
  align-items: center;
  justify-content: center;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  transition: all 0.3s ease-in-out;
}
.cid-uqRC2TfHF1 .mbr-media span {
  font-size: 22px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}
.cid-uqRC2TfHF1 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
}
.cid-uqRC2TfHF1 .popup__text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.cid-uqRC2TfHF1 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uqRC2TfHF1 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uqRC2TfHF1 .modalWindow .modalWindow-video {
  height: calc(80vw / 1.778);
  width: 80vw;
  margin: 0 auto;
}
.cid-uqRC2TfHF1 a.close {
  position: absolute;
  right: 0;
  top: 0;
  color: #ffffff;
  z-index: 5000000;
  font-size: 16px;
  background: #000;
  padding: 10px;
  transition: all 0.2s;
}
.cid-uqRC2TfHF1 a.close:hover {
  color: #ffffff;
}
.cid-uqRC2TfHF1 .animation__background .triangle {
  position: absolute;
  top: 13%;
  right: 44%;
  animation: rotatedHalf 40s infinite linear;
}
.cid-uqRC2TfHF1 .animation__background .triangle2 {
  position: absolute;
  bottom: 10%;
  left: 40%;
  animation: rotated 23s infinite linear;
  width: 55px;
  height: 55px;
}
.cid-uqRC2TfHF1 .animation__background .circle1 {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #ffe161;
  border-radius: 50%;
  position: absolute;
  top: 15%;
  left: 36%;
  animation: animationOne 25s infinite linear;
}
.cid-uqRC2TfHF1 .animation__background .circle2 {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #47b5ed;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: 8%;
  animation: animationTwo 27s infinite linear;
}
.cid-uqRC2TfHF1 .animation__background .circle3 {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 30%;
  background: #aa4dd4;
  border-radius: 50%;
  animation: animationOne 21s infinite linear;
}
.cid-uqRC2TfHF1 .animation__background .circle4 {
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #649496;
  border-radius: 50%;
  bottom: 42%;
  left: 6%;
  animation: animationTwo 31s infinite linear;
}
.cid-uqRC2TfHF1 .animation__background .circle5 {
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #4d6d9a;
  border-radius: 50%;
  top: 12%;
  right: 6%;
  animation: animationTwo 35s infinite linear;
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes animationOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(70px, -1px) rotate(35deg) scale(0.9);
  }
  40% {
    transform: translate(140px, 70px) rotate(70deg) scale(1);
  }
  60% {
    transform: translate(80px, 120px) rotate(110deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 70px) rotate(145deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
.cid-uqRC2TfHF1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqRC2TfHF1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqRC2TfHF1 .row {
  position: relative;
}
.cid-uqRC2TfHF1 .text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uqRC2TfHF1 .text {
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.cid-uqRC2TfHF1 .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-uqRC2TfHF1 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cid-uqRC2TfHF1 .box {
  display: inline-block;
}
.cid-uqRC2TfHF1 .animation {
  animation-name: bounceIn;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-play-state: running;
  animation-delay: initial;
}
@keyframes rotate-keyframe {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes move-object {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}
.cid-uqRC8yik8h {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("../../../assets/images/1113bg-adobestock-859517960.jpg");
  background-attachment: fixed;
}
.cid-uqRC8yik8h .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-uqRC8yik8h input,
.cid-uqRC8yik8h textarea,
.cid-uqRC8yik8h .jqselect {
  font-weight: 300 !important;
  border-radius: 0;
}
.cid-uqRC8yik8h textarea {
  min-height: 200px !important;
}
.cid-uqRC8yik8h H5 {
  text-align: center;
  color: #ffe161;
}
.cid-uqRC8yik8h H6 {
  text-align: center;
  color: #d58f76;
}
.cid-uqRC8yik8h LABEL {
  color: #dde8eb;
}
.cid-uqRC2VbZ7r {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
#custom-html-cw .floating-button {
  position: fixed;
  width: 120px;
  height: 120px;
  bottom: 30px;
  /*離底部多遠*/
  right: 25px;
  /*離右邊多遠*/
  z-index: 100;
}
#custom-html-cw .floating-button-image {
  width: 120px;
  height: 120px;
}
@media (max-width: 576px) {
  #custom-html-cw {
    /*小螢幕*/
  }
  #custom-html-cw .floating-button {
    width: 60px;
    height: 60px;
    bottom: 15px;
    /*離底部多遠*/
    right: 15px;
    /*離右邊多遠*/
  }
  #custom-html-cw .floating-button-image {
    width: 60px;
    height: 60px;
  }
}
